编译问题

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

@@ -5,7 +5,7 @@ const Logo = props => {
const { siteInfo } = props
return <Link href='/' passHref>
<div className='flex flex-col justify-center items-center cursor-pointer space-y-3'>
<div className='font-sans text-lg p-1.5 rounded bg-black text-white dark:border-white border-black border'> {siteInfo.title}</div>
<div className='font-sans text-lg p-1.5 rounded bg-black text-white dark:border-white border-black border'> {siteInfo?.title}</div>
</div>
</Link>
}