mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 23:16:49 +00:00
13 lines
327 B
JavaScript
13 lines
327 B
JavaScript
import { siteConfig } from '@/lib/config'
|
|
import Link from 'next/link'
|
|
|
|
export default function LogoBar(props) {
|
|
return (
|
|
<div id='top-wrapper' className='w-full flex items-center '>
|
|
<Link href='/' className='logo text-md md:text-xl dark:text-gray-200'>
|
|
{siteConfig('TITLE')}
|
|
</Link>
|
|
</div>
|
|
)
|
|
}
|