Medium主题顶部导航栏微调

This commit is contained in:
tangly1024
2022-03-15 13:35:34 +08:00
parent e5c696b379
commit 3ecc367995

View File

@@ -2,11 +2,9 @@ import BLOG from '@/blog.config'
import Link from 'next/link'
export default function LogoBar () {
return <div id='top-wrapper' className='w-full max-w-5xl justify-center mx-auto font-sans'>
<div className='w-full'>
return <div id='top-wrapper' className='w-full flex items-center font-sans'>
<Link href='/'>
<a className='text-2xl dark:text-gray-200'>{BLOG.TITLE}</a>
</Link>
</div>
</div>
}