编译问题

This commit is contained in:
tangly1024
2022-03-30 16:01:51 +08:00
parent 263493f61a
commit 87e3f09875
3 changed files with 3 additions and 3 deletions

View File

@@ -4,7 +4,7 @@ export default function LogoBar (props) {
const { siteInfo } = props
return <div id='top-wrapper' className='w-full flex items-center font-sans'>
<Link href='/'>
<a className='text-md md:text-xl dark:text-gray-200'>{siteInfo.title}</a>
<a className='text-md md:text-xl dark:text-gray-200'>{siteInfo?.title}</a>
</Link>
</div>
}