Files
heygermany-e2e-mrg1d1zl/apps/website/views/[lang]/(app)/backoffice/dashboard/page.tsx
e2e 59b4a7a404
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 09:21:21 +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>
);
}