1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-20 14:35:53 +02:00
.profile/components/Header/index.tsx

32 lines
927 B
TypeScript
Raw Normal View History

import Link from 'next/link'
import Image from 'next/image'
2021-04-18 01:56:23 +02:00
import { Language } from './Language'
import { SwitchTheme } from './SwitchTheme'
2021-04-18 01:56:23 +02:00
export const Header: React.FC = () => {
return (
<header className='bg-white sticky top-0 z-50 flex w-full justify-between px-6 py-2 border-b-2 border-gray-600 dark:border-gray-400 dark:bg-black'>
<Link href='/'>
<a>
<div className='flex items-center justify-center'>
<Image
width={60}
height={60}
src='/images/divlo_icon_small.png'
alt='Divlo'
/>
2021-06-24 18:39:08 +02:00
<strong className='ml-1 font-headline font-semibold hidden xs:block text-yellow dark:text-yellow-dark'>
Divlo
</strong>
</div>
</a>
</Link>
<div className='flex justify-between'>
<Language />
<SwitchTheme />
</div>
</header>
2021-04-18 01:56:23 +02:00
)
}