"use client"; import { useFeatureIsOn } from "@growthbook/growthbook-react"; import { redirect } from "next/navigation"; import { FooterSection, HomeHeader, HomeSection, TestimonialsSection, } from "../(home)/components"; const ContactSalesPage = (): JSX.Element => { const isNewHomePage = useFeatureIsOn("new-homepage-activated"); if (!isNewHomePage) { redirect("/"); } return (
TODO: The Form!
); }; export default ContactSalesPage;