mirror of
https://github.com/Steffo99/festa.git
synced 2024-12-22 14:44:21 +00:00
34 lines
No EOL
1 KiB
TypeScript
34 lines
No EOL
1 KiB
TypeScript
import { NextPageContext } from "next";
|
|
import { useTranslation } from "next-i18next";
|
|
import { serverSideTranslations } from "next-i18next/serverSideTranslations";
|
|
import { ErrorBlock } from "../components/errors/ErrorBlock";
|
|
import { usePostcardImage } from "../components/postcard/usePostcardImage";
|
|
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 Page500() {
|
|
const { t } = useTranslation()
|
|
|
|
usePostcardImage(`url(${errorPostcard.src})`)
|
|
|
|
return <>
|
|
<ViewNotice
|
|
notice={
|
|
<ErrorBlock
|
|
text={t("internalServerError")}
|
|
error={new Error("HTTP 500 (Internal server error)")}
|
|
/>
|
|
}
|
|
/>
|
|
</>
|
|
} |