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

23 lines
538 B
TypeScript

'use client';
import { Container, Title, Text, Stack } from '@pikku/mantine/core';
import { useI18n } from '@/context/i18n-provider';
export default function BackOfficeDashboardPage() {
const t = useI18n();
return (
<Container size="xl">
<Stack gap="lg">
<div>
<Title order={1} mb="sm">
{t('backoffice.dashboard.title')}
</Title>
<Text c="dimmed">
{t('backoffice.dashboard.description')}
</Text>
</div>
</Stack>
</Container>
);
}