-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.tsx
31 lines (27 loc) · 898 Bytes
/
page.tsx
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
"use client";
import { navItems } from "@/data";
import Hero from "@/components/Hero";
import Grid from "@/components/Grid";
import Footer from "@/components/Footer";
import Clients from "@/components/Clients";
import Experience from "@/components/Experience";
import RecentEventsPage from "@/components/RecentEvents";
import { FloatingNav } from "@/components/ui/FloatingNavbar";
import Program_Banner from "@/components/Program_Banner";
const Home = () => {
return (
<main className="relative bg-black-100 flex justify-center items-center flex-col overflow-hidden mx-auto sm:px-10 px-5 w-full">
<div className="max-w-7xl w-full">
<FloatingNav navItems={navItems} />
<Hero />
<Program_Banner />
<Grid />
<RecentEventsPage />
<Clients />
<Experience />
<Footer />
</div>
</main>
);
};
export default Home;