Files
heygermany-e2e-mrg2zk24/apps/website/views/[lang]/(main)/layout.tsx
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

19 lines
463 B
TypeScript

import TopBar from '@/components/ui/TopBar'
import FooterBar from '@/components/ui/FooterBar'
import { Flex } from '@pikku/mantine/core'
interface MainLayoutProps {
children: React.ReactNode
}
export default function MainLayout({ children }: MainLayoutProps) {
return (
<Flex direction="column" mih="100vh">
<TopBar />
<Flex component="main" direction="column" flex="1">
{children}
</Flex>
<FooterBar />
</Flex>
)
}