mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
20 lines
575 B
JavaScript
20 lines
575 B
JavaScript
import { Row, Column, Flexbox } from 'react-basics';
|
|
import AppLayout from 'components/layout/AppLayout';
|
|
import useMessages from 'hooks/useMessages';
|
|
|
|
export default function Custom404() {
|
|
const { formatMessage, labels } = useMessages();
|
|
|
|
return (
|
|
<AppLayout title={formatMessage(labels.pageNotFound)}>
|
|
<Row>
|
|
<Column>
|
|
<Flexbox alignItems="center" justifyContent="center" flex={1} style={{ minHeight: 600 }}>
|
|
<h1>{formatMessage(labels.pageNotFound)}</h1>
|
|
</Flexbox>
|
|
</Column>
|
|
</Row>
|
|
</AppLayout>
|
|
);
|
|
}
|