Files
NotionNext/themes/fukasawa/components/Logo.js
2025-07-24 16:43:20 +08:00

17 lines
450 B
JavaScript

import { siteConfig } from '@/lib/config'
import SmartLink from '@/components/SmartLink'
const Logo = props => {
return (
<section className='flex'>
<SmartLink
href='/'
className='logo 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')}
</SmartLink>
</section>
)
}
export default Logo