Files
ballistic-builder/src/app/page.tsx
2024-11-21 17:11:28 -05:00

23 lines
577 B
TypeScript

import About from "../components/About";
import Contact from "../components/Contact";
import FeaturesSection from "../components/FeaturesSection";
import Footer from "../components/Footer ";
import Header from "../components/Header";
import Hero from "../components/Hero";
import Navbar from "../components/Navbar";
export default async function Home() {
return (
<div className="bg-gray-100 min-h-screen flex flex-col">
<Navbar />
<Header />
<Hero />
<FeaturesSection />
<About />
<Contact />
<Footer />
</div>
);
}