File size: 336 Bytes
1b72d7e
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
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>
  );
}