mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-16 07:26:47 +00:00
17 lines
386 B
JavaScript
17 lines
386 B
JavaScript
import Link from 'next/link'
|
|
|
|
const Logo = props => {
|
|
const { siteInfo } = props
|
|
return (
|
|
<section className='flex'>
|
|
<Link
|
|
href='/'
|
|
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}
|
|
</Link>
|
|
</section>
|
|
);
|
|
}
|
|
|
|
export default Logo
|