blob: ba1a9ddbf656cce4b343ab83f94ff94bf806238a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
"use client";
import Polygons from "@/components/backgrounds/Polygons";
import Footer from "./Footer";
import Header from "./Header";
import Hero from "./Hero";
import OurServices from "./OurServices";
import Testimonials from "./Testimonials";
import WhyUs from "./WhyUs";
export default function Home() {
return (
<div className="relative min-h-screen overflow-x-hidden">
<header>
<Header />
</header>
<main>
<Hero />
<WhyUs />
<OurServices />
<Testimonials />
</main>
<footer>
<Footer />
</footer>
{/* <Grid /> */}
<Polygons />
</div>
);
}
|