mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-18 16:11:45 +03:00
f90c43cc42
# Description Epic: #1232 Issue: #1443 ## Screenshots (if appropriate): ### 🖥️ Desktop <img width="1512" alt="image" src="https://github.com/StanGirard/quivr/assets/67386567/dce63bf7-0046-4f2b-9633-bdc34a1b0893"> ### 📱 Mobile <img width="338" alt="image" src="https://github.com/StanGirard/quivr/assets/67386567/8828b5bc-3819-4774-9d77-d60fbff72e6c">
89 lines
2.2 KiB
TypeScript
89 lines
2.2 KiB
TypeScript
"use client";
|
|
import { useFeatureIsOn } from "@growthbook/growthbook-react";
|
|
import { useEffect } from "react";
|
|
|
|
import { useSupabase } from "@/lib/context/SupabaseProvider";
|
|
import { redirectToPreviousPageOrChatPage } from "@/lib/helpers/redirectToPreviousPageOrChatPage";
|
|
|
|
import Features from "./Features";
|
|
import Hero from "./Hero";
|
|
import {
|
|
DemoSection,
|
|
FooterSection,
|
|
HomeHeader,
|
|
HomeSection,
|
|
IntroSection,
|
|
SecuritySection,
|
|
TestimonialsSection,
|
|
} from "./components";
|
|
import { HomeHeaderBackground } from "./components/HomeHeader/components/HomeHeaderBackground";
|
|
import { UseCases } from "./components/UseCases/UseCases";
|
|
|
|
const HomePage = (): JSX.Element => {
|
|
const { session } = useSupabase();
|
|
|
|
useEffect(() => {
|
|
if (session?.user !== undefined) {
|
|
redirectToPreviousPageOrChatPage();
|
|
}
|
|
}, [session?.user]);
|
|
|
|
const isNewHomePage = useFeatureIsOn("new-homepage-activated");
|
|
|
|
if (isNewHomePage) {
|
|
return (
|
|
<>
|
|
<HomeHeaderBackground />
|
|
<HomeHeader />
|
|
|
|
<main className="relative flex flex-col items-center">
|
|
<HomeSection bg="transparent">
|
|
<IntroSection />
|
|
</HomeSection>
|
|
|
|
<HomeSection
|
|
bg="bg-[#FCFAF6]"
|
|
slantAfter="down"
|
|
hiddenOnMobile={true}
|
|
>
|
|
<DemoSection />
|
|
</HomeSection>
|
|
|
|
<HomeSection
|
|
bg="bg-[#362469]"
|
|
slantCurrent="down"
|
|
gradient="bg-gradient-to-t bg-gradient-to-t from-white to-[#362469]"
|
|
>
|
|
<UseCases />
|
|
<div />
|
|
</HomeSection>
|
|
|
|
<HomeSection bg="bg-white" slantBefore="down" slantAfter="up">
|
|
<SecuritySection />
|
|
</HomeSection>
|
|
|
|
<HomeSection bg="bg-[#FCFAF6]" slantCurrent="up">
|
|
<TestimonialsSection />
|
|
</HomeSection>
|
|
|
|
<HomeSection
|
|
bg="bg-gradient-to-b from-[#D07DF9] to-[#7A27FD]"
|
|
slantBefore="up"
|
|
>
|
|
<FooterSection />
|
|
</HomeSection>
|
|
</main>
|
|
</>
|
|
);
|
|
} else {
|
|
return (
|
|
<main data-testid="home-page">
|
|
<Hero />
|
|
<Features />
|
|
</main>
|
|
);
|
|
}
|
|
};
|
|
|
|
export default HomePage;
|