File size: 449 Bytes
1b72d7e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
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 dark:text-white menu-link transform duration-200'> {siteConfig('TITLE') }</div>
</div>
</Link>
)
}
export default Logo
|