mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 15:09:22 +00:00
12 lines
413 B
JavaScript
12 lines
413 B
JavaScript
import Link from 'next/link'
|
|
import BLOG from '@/blog.config'
|
|
import React from 'react'
|
|
|
|
const Logo = () => {
|
|
return <Link href='/'>
|
|
<div
|
|
className='mx-auto text-center cursor-pointer text-3xl dark:bg-gray-900 dark:text-gray-300 font-semibold dark:hover:bg-gray-600 bg-gray-700 text-white p-2 hover:scale-105 hover:shadow-2xl duration-200 transform'>{BLOG.title}</div>
|
|
</Link>
|
|
}
|
|
export default Logo
|