Files
NotionNext/themes/medium/components/LogoBar.js
2023-11-01 18:40:00 +08:00

13 lines
336 B
JavaScript

import Link from 'next/link'
import { siteConfig } from '@/lib/config'
export default function LogoBar (props) {
return (
<div id='top-wrapper' className='w-full flex items-center '>
<Link href='/' className='text-md md:text-xl dark:text-gray-200'>
{siteConfig('TITLE')}
</Link>
</div>
);
}