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

27 lines
632 B
TypeScript
Raw Normal View History

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