mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-15 15:09:25 +00:00
37 lines
1017 B
JavaScript
37 lines
1017 B
JavaScript
import { siteConfig } from '@/lib/config'
|
|
import Link from 'next/link'
|
|
|
|
const Logo = props => {
|
|
const { className } = props
|
|
return (
|
|
<Link href='/' passHref legacyBehavior>
|
|
<div
|
|
className={
|
|
'flex flex-col justify-center items-center cursor-pointer bg-black dark:bg-gray-800 space-y-3 font-bold ' +
|
|
className
|
|
}>
|
|
<div
|
|
data-aos='fade-down'
|
|
data-aos-duration='500'
|
|
data-aos-once='true'
|
|
data-aos-anchor-placement='top-bottom'
|
|
className='font-serif text-xl text-white logo'>
|
|
{' '}
|
|
{siteConfig('TITLE')}
|
|
</div>
|
|
<div
|
|
data-aos='fade-down'
|
|
data-aos-duration='500'
|
|
data-aos-delay='300'
|
|
data-aos-once='true'
|
|
data-aos-anchor-placement='top-bottom'
|
|
className='text-sm text-gray-300 font-light text-center'>
|
|
{' '}
|
|
{siteConfig('DESCRIPTION')}
|
|
</div>
|
|
</div>
|
|
</Link>
|
|
)
|
|
}
|
|
export default Logo
|