mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-16 15:09:28 +00:00
10 lines
315 B
JavaScript
10 lines
315 B
JavaScript
import LogoBar from '@/themes/Medium/components/LogoBar'
|
|
|
|
export default function TopNavBar ({ className }) {
|
|
return <div id='top-nav' className={'sticky top-0 lg:relative w-full z-50 ' + className}>
|
|
<div className='flex w-full h-12 shadow bg-white px-5 items-center'>
|
|
<LogoBar />
|
|
</div>
|
|
</div>
|
|
}
|