chore: heygermany customer project
This commit is contained in:
27
apps/website/components/ui/TopBar.tsx
Normal file
27
apps/website/components/ui/TopBar.tsx
Normal file
@@ -0,0 +1,27 @@
|
||||
'use client'
|
||||
|
||||
import { Box, Container, Flex } from '@pikku/mantine/core'
|
||||
import LanguageSelector from './LanguageSelector'
|
||||
import Logo from './Logo'
|
||||
|
||||
export default function TopBar() {
|
||||
return (
|
||||
<Box
|
||||
dir='ltr'
|
||||
bg="white"
|
||||
pos="sticky"
|
||||
top={0}
|
||||
style={{ zIndex: 50, boxShadow: 'var(--mantine-shadow-md)' }}
|
||||
>
|
||||
<Container size="xl" py="md">
|
||||
<Flex justify="space-between" align="center">
|
||||
<Logo />
|
||||
|
||||
<Flex gap="sm" align="center">
|
||||
<LanguageSelector />
|
||||
</Flex>
|
||||
</Flex>
|
||||
</Container>
|
||||
</Box>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user