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