Files
e2e 373b42a994
Some checks failed
Main / Setup and Test (push) Has been cancelled
Main / Build Website (push) Has been cancelled
chore: heygermany customer project
2026-07-11 10:06:51 +02:00

27 lines
598 B
TypeScript

'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>
)
}