54 lines
2.1 KiB
TypeScript
54 lines
2.1 KiB
TypeScript
import { GetStaticProps } from "next";
|
|
import { AppLayout, AppLayoutRequired } from "components/AppLayout";
|
|
import { ReturnButton } from "components/PanelComponents/ReturnButton";
|
|
import { ContentPanel } from "components/Containers/ContentPanel";
|
|
import { getOpenGraph } from "helpers/openGraph";
|
|
import { getLangui } from "graphql/fetchLocalData";
|
|
import { Img } from "components/Img";
|
|
import { useLocalData } from "contexts/LocalDataContext";
|
|
|
|
/*
|
|
* ╭────────╮
|
|
* ──────────────────────────────────────────╯ PAGE ╰─────────────────────────────────────────────
|
|
*/
|
|
|
|
interface Props extends AppLayoutRequired {}
|
|
|
|
const FiveHundred = ({ openGraph, ...otherProps }: Props): JSX.Element => {
|
|
const { langui } = useLocalData();
|
|
return (
|
|
<AppLayout
|
|
contentPanel={
|
|
<ContentPanel>
|
|
<Img
|
|
src={"/gameover_cards.webp"}
|
|
className="animate-zoom-in drop-shadow-lg shadow-shade"
|
|
/>
|
|
<div className="mt-8 grid place-items-center gap-6">
|
|
<h2>{langui.page_not_found}</h2>
|
|
<ReturnButton href="/" title="Home" />
|
|
</div>
|
|
</ContentPanel>
|
|
}
|
|
openGraph={openGraph}
|
|
{...otherProps}
|
|
/>
|
|
);
|
|
};
|
|
export default FiveHundred;
|
|
|
|
/*
|
|
* ╭──────────────────────╮
|
|
* ───────────────────────────────────╯ NEXT DATA FETCHING ╰──────────────────────────────────────
|
|
*/
|
|
|
|
export const getStaticProps: GetStaticProps = (context) => {
|
|
const langui = getLangui(context.locale);
|
|
const props: Props = {
|
|
openGraph: getOpenGraph(langui, "500 - Internal Server Error"),
|
|
};
|
|
return {
|
|
props: props,
|
|
};
|
|
};
|