import { NextPage, NextPageContext } from 'next' import { useTranslation } from 'next-i18next' import { serverSideTranslations } from 'next-i18next/serverSideTranslations' import { default as Head } from 'next/head' import defaultPostcard from "../public/postcards/adi-goldstein-Hli3R6LKibo-unsplash.jpg" import { Postcard } from '../components/postcard/changer' import { ViewLanding } from '../components/generic/views/landing' import { LandingActionLogin } from '../components/landing/actions/login' import { useDefinedContext } from '../utils/definedContext' import { AuthContext } from '../components/auth/base' import { LandingActionEvents } from '../components/landing/actions/events' export async function getStaticProps(context: NextPageContext) { return { props: { ...(await serverSideTranslations(context.locale ?? "it-IT", ["common"])) } } } const PageIndex: NextPage = () => { const { t } = useTranslation() const [auth,] = useDefinedContext(AuthContext) return <> {t("siteTitle")} : } /> } export default PageIndex