import BLOG from '@/blog.config' import { Home } from '@/components/HeroIcons' import Link from 'next/link' import React from 'react' const Logo = props => { const { siteInfo } = props return (
{/* eslint-disable-next-line @next/next/no-img-element */} {BLOG.AUTHOR}
{siteInfo?.title || BLOG.TITLE}
) } export default Logo