mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 15:09:22 +00:00
23 lines
603 B
JavaScript
23 lines
603 B
JavaScript
import { siteConfig } from '@/lib/config'
|
|
import Link from 'next/link'
|
|
/**
|
|
* Logo
|
|
* 实际值支持文字
|
|
* @param {*} props
|
|
* @returns
|
|
*/
|
|
const Logo = props => {
|
|
const { siteInfo } = 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'>
|
|
{' '}
|
|
{siteInfo?.title || siteConfig('TITLE')}
|
|
</div>
|
|
</div>
|
|
</Link>
|
|
)
|
|
}
|
|
export default Logo
|