新增Logo;新增bio配置项

This commit is contained in:
tangly1024
2022-01-04 14:54:37 +08:00
parent 3cd8a3ca80
commit 7bfe188a7e
9 changed files with 39 additions and 29 deletions

View File

@@ -4,10 +4,10 @@ import React from 'react'
const Logo = () => {
return <Link href='/' passHref>
<div title={BLOG.title} className='mx-auto border dark:border-gray-600 text-center cursor-pointer text-xl dark:text-gray-300 font-semibold dark:hover:bg-gray-600 text-white p-2 hover:scale-105 hover:shadow-2xl duration-200 transform'>
<span className='text-red-600'>Tangly</span>
<span className='text-blue-400'>1024</span>
</div>
<div className='flex flex-col justify-center items-center cursor-pointer bg-gray-800 space-y-3 h-32 font-bold mb-4'>
<div className='font-serif text-xl text-white'> {BLOG.title}</div>
<div className='text-sm text-gray-300 font-light'> {BLOG.description}</div>
</div>
</Link>
}
export default Logo