mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-17 15:09:31 +00:00
13 lines
359 B
JavaScript
13 lines
359 B
JavaScript
import BLOG from '@/blog.config'
|
|
import Link from 'next/link'
|
|
|
|
export default function LogoBar () {
|
|
return <div id='top-wrapper' className='w-full max-w-5xl justify-center mx-auto font-sans'>
|
|
<div className='w-full'>
|
|
<Link href='/'>
|
|
<a className='text-2xl dark:text-gray-200'>{BLOG.TITLE}</a>
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
}
|