muthuk1 commited on
Commit
12a97f9
·
verified ·
1 Parent(s): 62c30f9

Add main page with hero, navbar, and tab controller

Browse files
Files changed (1) hide show
  1. web/src/app/page.tsx +15 -0
web/src/app/page.tsx ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import { Navbar } from "@/components/Navbar";
2
+ import { Hero } from "@/components/Hero";
3
+ import { DashboardTabs } from "@/components/DashboardTabs";
4
+ import { Footer } from "@/components/Footer";
5
+
6
+ export default function Home() {
7
+ return (
8
+ <main>
9
+ <Navbar />
10
+ <Hero />
11
+ <DashboardTabs />
12
+ <Footer />
13
+ </main>
14
+ );
15
+ }