2023-02-15 10:27:18 +00:00
|
|
|
import { Row, Column, Flexbox } from 'react-basics';
|
2023-01-11 22:47:38 +00:00
|
|
|
import AppLayout from 'components/layout/AppLayout';
|
2023-03-22 21:05:55 +00:00
|
|
|
import useMessages from 'hooks/useMessages';
|
2020-07-17 08:03:38 +00:00
|
|
|
|
|
|
|
|
export default function Custom404() {
|
2023-03-22 21:05:55 +00:00
|
|
|
const { formatMessage, labels } = useMessages();
|
2023-01-10 07:59:26 +00:00
|
|
|
|
2020-07-17 08:03:38 +00:00
|
|
|
return (
|
2023-01-11 22:47:38 +00:00
|
|
|
<AppLayout>
|
2023-02-15 10:27:18 +00:00
|
|
|
<Row>
|
|
|
|
|
<Column>
|
|
|
|
|
<Flexbox alignItems="center" justifyContent="center" flex={1} style={{ minHeight: 600 }}>
|
|
|
|
|
<h1>{formatMessage(labels.pageNotFound)}</h1>
|
|
|
|
|
</Flexbox>
|
|
|
|
|
</Column>
|
|
|
|
|
</Row>
|
2023-01-11 22:47:38 +00:00
|
|
|
</AppLayout>
|
2020-07-17 08:03:38 +00:00
|
|
|
);
|
|
|
|
|
}
|