Files
NotionNext/themes/fukasawa/components/Logo.js
2023-11-01 18:40:00 +08:00

17 lines
403 B
JavaScript

import Link from 'next/link'
import { siteConfig } from '@/lib/config'
const Logo = 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'>
{siteConfig('TITLE')}
</Link>
</section>
);
}
export default Logo