blog / themes /gitbook /components /LeftMenuBar.js
sandy-try's picture
Upload 699 files
1b72d7e verified
raw
history blame contribute delete
392 Bytes
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>
);
}