Files
NotionNext/themes/NEXT/components/Logo.js
2022-01-15 20:14:53 +08:00

14 lines
471 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 bg-black space-y-3 h-32 font-bold'>
<div className='font-serif text-xl text-white'> {BLOG.title}</div>
<div className='text-sm text-gray-300 font-light'> {BLOG.description}</div>
</div>
</Link>
}
export default Logo