import { GetStaticProps, NextPage } from "next"; import { useRouter } from "next/router"; import { useTranslation } from "next-i18next"; import { serverSideTranslations } from "next-i18next/serverSideTranslations"; import { usePlausible } from "next-plausible"; import React from "react"; import { useMount } from "react-use"; import { createDemo } from "../api-client/create-demo"; import FullPageLoader from "../components/full-page-loader"; const Demo: NextPage = () => { const { t } = useTranslation("app"); const router = useRouter(); const plausible = usePlausible(); useMount(async () => { const poll = await createDemo(); plausible("Create demo poll"); router.replace(`/admin/${poll.urlId}`); }); return {t("creatingDemo")}; }; export const getStaticProps: GetStaticProps = async ({ locale = "en" }) => { return { props: { ...(await serverSideTranslations(locale, ["app"])), }, }; }; export default Demo;