sandy-try's picture
Upload 699 files
1b72d7e verified
raw
history blame contribute delete
336 Bytes
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>
);
}