Files
NotionNext/themes/fukasawa/components/Logo.js
2022-03-30 16:01:51 +08:00

13 lines
369 B
JavaScript

import Link from 'next/link'
const Logo = props => {
const { siteInfo } = props
return <section className='flex'>
<Link href='/'>
<a className='hover:bg-black hover:text-white border-black border-2 duration-500 px-4 py-2 cursor-pointer dark:text-gray-300 dark:border-gray-300 font-black'>{siteInfo?.title}</a>
</Link>
</section>
}
export default Logo