mirror of
https://github.com/Steffo99/festa.git
synced 2024-12-22 22:54:22 +00:00
39 lines
No EOL
1.3 KiB
TypeScript
39 lines
No EOL
1.3 KiB
TypeScript
import { faArrowLeft } from "@fortawesome/free-solid-svg-icons";
|
|
import { NextPageContext } from "next";
|
|
import { useTranslation } from "next-i18next";
|
|
import { serverSideTranslations } from "next-i18next/serverSideTranslations";
|
|
import Link from "next/link";
|
|
import { ErrorBlock } from "../components/errors/ErrorBlock";
|
|
import { FestaIcon } from "../components/extensions/FestaIcon";
|
|
import { Postcard } from "../components/postcard/Postcard";
|
|
import { ViewNotice } from "../components/view/ViewNotice";
|
|
import errorPostcard from "../public/postcards/markus-spiske-iar-afB0QQw-unsplash-red.jpg"
|
|
|
|
|
|
export async function getStaticProps(context: NextPageContext) {
|
|
return {
|
|
props: {
|
|
...(await serverSideTranslations(context.locale ?? "it-IT", ["common"]))
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
export default function Page404() {
|
|
const {t} = useTranslation()
|
|
|
|
return <>
|
|
<Postcard src={errorPostcard.src}/>
|
|
<ViewNotice
|
|
notice={<>
|
|
<ErrorBlock
|
|
text={t("notFoundError")}
|
|
error={new Error("HTTP 404 (Not found)")}
|
|
/>
|
|
<p>
|
|
<Link href="/"><a>← {t("notFoundBackHome")}</a></Link>
|
|
</p>
|
|
</>}
|
|
/>
|
|
</>
|
|
} |