import type { GetStaticProps, NextPage } from "next"
import useTranslation from "next-translate/useTranslation"
import { ErrorPage } from "../components/ErrorPage"
import { Head } from "../components/Head"
import { Header } from "../components/Header"
import type { FooterProps } from "../components/Footer"
const Error500: NextPage = (props) => {
const { t } = useTranslation()
const { version } = props
return (
<>
>
)
}
export const getStaticProps: GetStaticProps = async () => {
const { readPackage } = await import("read-pkg")
const { version } = await readPackage()
return { props: { version } }
}
export default Error500