mirror of
https://github.com/umami-software/umami.git
synced 2026-02-06 13:47:15 +01:00
13 lines
364 B
TypeScript
13 lines
364 B
TypeScript
'use client';
|
|
import { Flexbox } from '@umami/react-zen';
|
|
import { useMessages } from '@/components/hooks';
|
|
|
|
export default function () {
|
|
const { formatMessage, labels } = useMessages();
|
|
|
|
return (
|
|
<Flexbox alignItems="center" justifyContent="center" flexGrow="1" minHeight="600px">
|
|
<h1>{formatMessage(labels.pageNotFound)}</h1>
|
|
</Flexbox>
|
|
);
|
|
}
|