mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 15:09:22 +00:00
11 lines
316 B
JavaScript
11 lines
316 B
JavaScript
import Link from 'next/link'
|
|
|
|
export default function LogoBar (props) {
|
|
const { siteInfo } = props
|
|
return <div id='top-wrapper' className='w-full flex items-center font-sans'>
|
|
<Link href='/'>
|
|
<a className='text-md md:text-xl dark:text-gray-200'>{siteInfo?.title}</a>
|
|
</Link>
|
|
</div>
|
|
}
|