2022-05-25 14:20:22 +00:00
|
|
|
import type { NextPage, NextPageContext } from 'next'
|
|
|
|
import { useTranslation } from 'next-i18next'
|
|
|
|
import { serverSideTranslations } from 'next-i18next/serverSideTranslations';
|
|
|
|
|
|
|
|
export async function getStaticProps(context: NextPageContext) {
|
|
|
|
return {props: {
|
|
|
|
...(await serverSideTranslations(context.locale ?? "it-IT", ["common"]))
|
|
|
|
}}
|
|
|
|
}
|
2022-05-20 11:59:24 +00:00
|
|
|
|
2022-05-20 22:46:39 +00:00
|
|
|
const Page: NextPage = () => {
|
2022-05-25 14:20:22 +00:00
|
|
|
const {t} = useTranslation("common")
|
|
|
|
|
2022-05-20 22:46:39 +00:00
|
|
|
return (
|
|
|
|
<div>
|
2022-05-25 14:20:22 +00:00
|
|
|
<h1>
|
|
|
|
{t("title")}
|
|
|
|
</h1>
|
|
|
|
<p>
|
|
|
|
{t("description")}
|
|
|
|
</p>
|
2022-05-20 11:59:24 +00:00
|
|
|
</div>
|
2022-05-20 22:46:39 +00:00
|
|
|
)
|
2022-05-20 11:59:24 +00:00
|
|
|
}
|
|
|
|
|
2022-05-20 22:46:39 +00:00
|
|
|
export default Page
|