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

34 lines
888 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';
2022-05-25 15:50:31 +00:00
import { Intro } from '../components/Intro';
import { LoginButton } from '../components/LoginButton';
2022-05-25 14:20:22 +00:00
export async function getStaticProps(context: NextPageContext) {
return {props: {
2022-05-25 15:50:31 +00:00
...(await serverSideTranslations(context.locale ?? "it-IT", ["common"]))
2022-05-25 14:20:22 +00:00
}}
}
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 (
2022-05-25 15:50:31 +00:00
<div className="index">
<hgroup>
<h1>
{t("siteTitle")}
</h1>
<h2>
{t("siteSubtitle")}
</h2>
</hgroup>
<div>
<Intro/>
</div>
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