Files
NotionNext/themes/game/components/Logo.js
tangly1024.com 4d3b30b495 theme-game
2024-03-19 18:48:14 +08:00

15 lines
515 B
JavaScript

import { siteConfig } from '@/lib/config'
import Link from 'next/link'
/* eslint-disable @next/next/no-html-link-for-pages */
export default function Logo() {
return (
<Link passHref href='/' className='logo rounded cursor-pointer flex flex-col items-center'>
<div className='w-full'>
<h1 className='text-2xl dark:text-white font-bold font-serif'>{siteConfig('TITLE')}</h1>
<h2 className='text-xs text-gray-400 whitespace-nowrap'>{siteConfig('BIO')}</h2>
</div>
</Link>
)
}