Files
ballistic-builder/app/page.tsx

20 lines
531 B
TypeScript
Raw Normal View History

2024-11-20 12:52:44 -05:00
import Link from "next/link";
2024-11-20 14:53:30 -05:00
import FeaturesSection from "./components/FeaturesSection";
import About from "./components/About";
import Header from "./components/Header";
import Hero from "./components/Hero";
import Contact from "./components/Contact";
import Footer from "./components/Footer ";
2024-11-14 12:45:58 -05:00
export default function Home() {
return (
2024-11-20 13:44:41 -05:00
(<div className="bg-gray-100 min-h-screen flex flex-col">
2024-11-20 14:53:30 -05:00
<Header />
<Hero />
<FeaturesSection />
<About />
<Contact />
<Footer />
2024-11-20 13:44:41 -05:00
</div>)
2024-11-14 12:45:58 -05:00
);
2024-11-20 12:52:44 -05:00
}