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