import AppLayout from "components/AppLayout"; import PanelHeader from "components/PanelComponents/PanelHeader"; import SubPanel from "components/Panels/SubPanel"; import { GetStaticPropsContext } from "next"; import { AppStaticProps, getAppStaticProps } from "queries/getAppStaticProps"; interface ArchivesProps extends AppStaticProps {} export default function Archives(props: ArchivesProps): JSX.Element { const { langui } = props; const subPanel = ( ); return ( ); } export async function getStaticProps( context: GetStaticPropsContext ): Promise<{ notFound: boolean } | { props: ArchivesProps }> { const props: ArchivesProps = { ...(await getAppStaticProps(context)), }; return { props: props, }; }