aboutsummaryrefslogtreecommitdiff
path: root/src/app/page.tsx
blob: 0c59aaba73dc15b492303d6b93129c42555cccca (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
33
"use client";

import Grid from "@/components/backgrounds/Grid";
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>
  );
}