import { useContext } from "react"; import Menu from "../components/Menu"; import { TranslateContext } from "../Modules/context"; import { GetStaticProps } from "next"; import { getData } from "./api/theme"; export default function Home() { const t = useContext(TranslateContext); return ( <>
{t("Page not Found")}