mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-17 23:16:50 +00:00
13 lines
323 B
JavaScript
13 lines
323 B
JavaScript
import BLOG from '@/blog.config'
|
|
import Link from 'next/link'
|
|
|
|
function Logo () {
|
|
return <section className='flex'>
|
|
<Link href='/'>
|
|
<a className='hover:bg-black hover:text-white border-black border-2 duration-500 px-4 py-2 cursor-pointer font-black'>{BLOG.TITLE}</a>
|
|
</Link>
|
|
</section>
|
|
}
|
|
|
|
export default Logo
|