mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-15 07:26:48 +00:00
15 lines
515 B
JavaScript
15 lines
515 B
JavaScript
import { siteConfig } from '@/lib/config'
|
|
import Link from 'next/link'
|
|
|
|
/* eslint-disable @next/next/no-html-link-for-pages */
|
|
export default function Logo() {
|
|
return (
|
|
<Link passHref href='/' className='logo rounded cursor-pointer flex flex-col items-center'>
|
|
<div className='w-full'>
|
|
<h1 className='text-2xl dark:text-white font-bold font-serif'>{siteConfig('TITLE')}</h1>
|
|
<h2 className='text-xs text-gray-400 whitespace-nowrap'>{siteConfig('BIO')}</h2>
|
|
</div>
|
|
</Link>
|
|
)
|
|
}
|