2023-11-14 15:10:00 +00:00
|
|
|
import { FourOuFourView } from '../components/Views/FourOuFour'
|
2024-02-04 11:25:21 +00:00
|
|
|
import { PageLayout } from '../components/_shared/PageLayout'
|
2023-11-14 10:45:44 +00:00
|
|
|
import { useLocalize } from '../context/localize'
|
2023-02-17 09:21:02 +00:00
|
|
|
|
|
|
|
export const FourOuFourPage = () => {
|
2023-11-14 10:45:44 +00:00
|
|
|
const { t } = useLocalize()
|
|
|
|
|
2023-02-17 09:21:02 +00:00
|
|
|
return (
|
2023-11-14 10:45:44 +00:00
|
|
|
<PageLayout isHeaderFixed={false} hideFooter={true} title={t('Nothing is here')}>
|
2023-02-17 09:21:02 +00:00
|
|
|
<FourOuFourView />
|
|
|
|
</PageLayout>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export const Page = FourOuFourPage
|