mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-15 07:26:48 +00:00
14 lines
433 B
JavaScript
14 lines
433 B
JavaScript
import { siteConfig } from '@/lib/config'
|
|
import Link from 'next/link'
|
|
|
|
const Logo = props => {
|
|
return (
|
|
<Link href='/' passHref legacyBehavior>
|
|
<div className='flex flex-col justify-center items-center cursor-pointer space-y-3'>
|
|
<div className='font-medium text-lg p-1.5 rounded dark:border-white menu-link transform duration-200'> {siteConfig('TITLE') }</div>
|
|
</div>
|
|
</Link>
|
|
)
|
|
}
|
|
export default Logo
|