magzine主题雏形

This commit is contained in:
tangly1024.com
2024-09-12 19:14:57 +08:00
parent d31acf80b3
commit 4ca437b93f
40 changed files with 2362 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import Link from 'next/link'
export default function LeftMenuBar () {
return (
<div className='w-20 border-r hidden lg:block pt-12'>
<section>
<Link href='/' legacyBehavior>
<div className='text-center cursor-pointer hover:text-black'>
<i className='fas fa-home text-gray-500'/>
</div>
</Link>
</section>
</div>
);
}