feat: add privacy & terms

This commit is contained in:
Mauricio Siu
2024-10-13 22:54:02 -06:00
parent 8785282133
commit 53f345ab1d
9 changed files with 675 additions and 8 deletions

View File

@@ -1,16 +1,12 @@
import { CallToAction } from "@/components/CallToAction";
import { Faqs } from "@/components/Faqs";
import { Footer } from "@/components/Footer";
import { Header } from "@/components/Header";
import { Hero } from "@/components/Hero";
import { PrimaryFeatures } from "@/components/PrimaryFeatures";
import { SecondaryFeatures } from "@/components/SecondaryFeatures";
import { Testimonials } from "../../components/Testimonials";
export default function Home() {
return (
<div>
<Header />
<main>
<Hero />
<PrimaryFeatures />
@@ -18,7 +14,6 @@ export default function Home() {
<CallToAction />
{/* <Testimonials /> */}
<Faqs />
<Footer />
</main>
</div>
);