mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-15 23:16:48 +00:00
15 lines
419 B
JavaScript
15 lines
419 B
JavaScript
import BLOG from '@/blog.config'
|
|
import Link from 'next/link'
|
|
|
|
export default function LogoBar () {
|
|
return <div id='top-wrapper' className='w-full flex justify-center font-sans'>
|
|
<div className='flex mx-auto w-full justify-between '>
|
|
<div className='space-x-3 flex items-center'>
|
|
<Link href='/'>
|
|
<a className='text-2xl'>{BLOG.TITLE}</a>
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
}
|