mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-07-25 13:00:24 +08:00
41 lines
1.1 KiB
TypeScript
41 lines
1.1 KiB
TypeScript
import { Box } from "@chakra-ui/react";
|
|
import Head from "next/head";
|
|
import { useRouter } from "next/router";
|
|
import { useSession } from "next-auth/react";
|
|
import { useTranslation } from "next-i18next";
|
|
import { useEffect } from "react";
|
|
import { CallToAction } from "src/components/CallToAction";
|
|
import { Faq } from "src/components/Faq";
|
|
import { Hero } from "src/components/Hero";
|
|
import { getTransparentHeaderLayout } from "src/components/Layout";
|
|
export { getDefaultStaticProps as getStaticProps } from "src/lib/default_static_props";
|
|
|
|
const Home = () => {
|
|
const router = useRouter();
|
|
const { status } = useSession();
|
|
const { t } = useTranslation();
|
|
useEffect(() => {
|
|
if (status === "authenticated") {
|
|
router.push("/dashboard");
|
|
}
|
|
}, [router, status]);
|
|
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>{t("title")}</title>
|
|
<meta name="description" content={t("index:description")} />
|
|
</Head>
|
|
<Box as="main" className="oa-basic-theme">
|
|
<Hero />
|
|
<CallToAction />
|
|
<Faq />
|
|
</Box>
|
|
</>
|
|
);
|
|
};
|
|
|
|
Home.getLayout = getTransparentHeaderLayout;
|
|
|
|
export default Home;
|