import Menu from "../../components/Menu"; import Head from "next/head"; import BugReport from "../../components/BugReport"; import { useContext } from "react"; import { TranslateContext } from "../../Modules/context"; import { GetStaticProps } from "next"; import { getData } from "../api/theme"; export default function Home() { const t = useContext(TranslateContext); return ( <> {t("No Update Error")}

{t("No Update Error")}

{t("What is Wrong")}

{t( "The server is no longer automatically updating it's player data in the database. ", )}

{t("How to Fix")}

{t( "This is very easily fixed by just restarting the server or if you can not do that yourself, tell the website admin to do it. ", )}

); } export const getStaticProps: GetStaticProps = async (context) => { return { props: { t: await getData(context) }, }; };