mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-15 07:26:48 +00:00
14 lines
480 B
JavaScript
14 lines
480 B
JavaScript
import Link from 'next/link'
|
|
import React from 'react'
|
|
|
|
const Logo = props => {
|
|
const { siteInfo } = props
|
|
return <Link href='/' passHref>
|
|
<div className='flex flex-col justify-center items-center cursor-pointer bg-black space-y-3 h-32 font-bold'>
|
|
<div className='font-serif text-xl text-white'> {siteInfo?.title}</div>
|
|
<div className='text-sm text-gray-300 font-light'> {siteInfo?.description}</div>
|
|
</div>
|
|
</Link>
|
|
}
|
|
export default Logo
|