Files
NotionNext/themes/medium/components/LogoBar.js
2025-07-24 16:43:20 +08:00

13 lines
355 B
JavaScript

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