Add main page with hero, navbar, and tab controller
Browse files- 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 |
+
}
|