add theme nav & add pageIcon support of @lib/getNotionData

This commit is contained in:
emengweb
2023-10-13 03:14:03 +00:00
parent 8e01d0713e
commit a4d9007a2a
48 changed files with 2483 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
import Link from 'next/link'
import React from 'react'
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>
);
}