muthuk1's picture
Add main page with hero, navbar, and tab controller
12a97f9 verified
raw
history blame
342 Bytes
import { Navbar } from "@/components/Navbar";
import { Hero } from "@/components/Hero";
import { DashboardTabs } from "@/components/DashboardTabs";
import { Footer } from "@/components/Footer";
export default function Home() {
return (
<main>
<Navbar />
<Hero />
<DashboardTabs />
<Footer />
</main>
);
}