mirror of
https://gitea.gofwd.group/dstrawsb/ballistic-builder.git
synced 2025-12-06 02:36:44 -05:00
23 lines
577 B
TypeScript
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>
|
|
);
|
|
}
|