Files
ballistic-builder/src/app/page.tsx

23 lines
577 B
TypeScript
Raw Normal View History

import About from "../components/About";
import Contact from "../components/Contact";
2024-11-21 17:11:28 -05:00
import FeaturesSection from "../components/FeaturesSection";
import Footer from "../components/Footer ";
2024-11-21 17:11:28 -05:00
import Header from "../components/Header";
import Hero from "../components/Hero";
import Navbar from "../components/Navbar";
2024-11-21 16:34:18 -05:00
2024-11-14 12:45:58 -05:00
2024-11-21 15:24:37 -05:00
export default async function Home() {
2024-11-14 12:45:58 -05:00
return (
2024-11-20 16:37:54 -05:00
<div className="bg-gray-100 min-h-screen flex flex-col">
2024-11-21 16:10:16 -05:00
<Navbar />
2024-11-21 13:03:00 -05:00
<Header />
2024-11-20 14:53:30 -05:00
<Hero />
<FeaturesSection />
<About />
<Contact />
2024-11-21 16:31:10 -05:00
<Footer />
2024-11-20 16:37:54 -05:00
</div>
2024-11-14 12:45:58 -05:00
);
2024-11-21 15:24:37 -05:00
}