mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 15:09:22 +00:00
16 lines
484 B
JavaScript
16 lines
484 B
JavaScript
import BLOG from '@/blog.config'
|
|
import Link from 'next/link'
|
|
import React from 'react'
|
|
|
|
const Logo = props => {
|
|
const { siteInfo } = props
|
|
return (
|
|
<Link href='/' passHref legacyBehavior>
|
|
<div className='flex flex-col justify-center items-center cursor-pointer space-y-3'>
|
|
<div className=' text-lg p-1.5 rounded dark:border-white hover:scale-110 transform duration-200'> {siteInfo?.title || BLOG.TITLE}</div>
|
|
</div>
|
|
</Link>
|
|
);
|
|
}
|
|
export default Logo
|