import { GetStaticProps } from "next"; import { AppLayout } from "components/AppLayout"; import { ReturnButton, ReturnButtonType, } from "components/PanelComponents/ReturnButton"; import { ContentPanel } from "components/Panels/ContentPanel"; import { AppStaticProps, getAppStaticProps } from "graphql/getAppStaticProps"; /* * ╭────────╮ * ──────────────────────────────────────────╯ PAGE ╰───────────────────────────────────────────── */ interface Props extends AppStaticProps {} const FourOhFour = ({ langui, ...otherProps }: Props): JSX.Element => (

404 - {langui.page_not_found}

} langui={langui} {...otherProps} /> ); export default FourOhFour; /* * ╭──────────────────────╮ * ───────────────────────────────────╯ NEXT DATA FETCHING ╰────────────────────────────────────── */ export const getStaticProps: GetStaticProps = async (context) => { const props: Props = { ...(await getAppStaticProps(context)), }; return { props: props, }; };