mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-15 07:26:48 +00:00
13 lines
349 B
JavaScript
13 lines
349 B
JavaScript
import Link from 'next/link'
|
|
import BLOG from '@/blog.config'
|
|
import React from 'react'
|
|
|
|
const Logo = () => {
|
|
return <Link href='/' passHref>
|
|
<div className='flex flex-col justify-center items-center cursor-pointer space-y-3'>
|
|
<div className='font-sans text-xl'> {BLOG.TITLE}</div>
|
|
</div>
|
|
</Link>
|
|
}
|
|
export default Logo
|