import { AppLayout } from "components/AppLayout"; import { ReturnButton, ReturnButtonType, } from "components/PanelComponents/ReturnButton"; import { ContentPanel } from "components/Panels/ContentPanel"; import { AppStaticProps, getAppStaticProps } from "graphql/getAppStaticProps"; import { GetStaticPropsContext } from "next"; import { useMemo } from "react"; interface Props extends AppStaticProps {} export default function FiveHundred(props: Props): JSX.Element { const { langui } = props; const contentPanel = useMemo( () => (

500 - Internal Server Error

), [langui] ); return ; } export async function getStaticProps( context: GetStaticPropsContext ): Promise<{ notFound: boolean } | { props: Props }> { const props: Props = { ...(await getAppStaticProps(context)), }; return { props: props, }; }