1
Fork 0
mirror of https://github.com/Steffo99/festa.git synced 2024-10-16 15:07:27 +00:00
festa/pages/index.tsx
2022-05-25 16:20:22 +02:00

26 lines
632 B
TypeScript

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"]))
}}
}
const Page: NextPage = () => {
const {t} = useTranslation("common")
return (
<div>
<h1>
{t("title")}
</h1>
<p>
{t("description")}
</p>
</div>
)
}
export default Page