18 lines
512 B
TypeScript
18 lines
512 B
TypeScript
|
import { HttpStatusCode } from "@solidjs/start"
|
||
|
import { FourOuFourView } from '../components/Views/FourOuFour'
|
||
|
import { PageLayout } from '../components/_shared/PageLayout'
|
||
|
import { useLocalize } from '../context/localize'
|
||
|
|
||
|
export const FourOuFourPage = () => {
|
||
|
const { t } = useLocalize()
|
||
|
|
||
|
return (
|
||
|
<PageLayout isHeaderFixed={false} hideFooter={true} title={t('Nothing is here')}>
|
||
|
<FourOuFourView />
|
||
|
<HttpStatusCode code={404} />
|
||
|
</PageLayout>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export const Page = FourOuFourPage
|