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

21 lines
562 B
TypeScript
Raw Normal View History

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-20 16:37:54 -05:00
import { ChakraProvider } from "@chakra-ui/react";
2024-11-14 12:45:58 -05:00
export default function Home() {
return (
2024-11-20 16:37:54 -05:00
<div className="bg-gray-100 min-h-screen flex flex-col">
2024-11-21 13:03:00 -05:00
<Header />
2024-11-20 14:53:30 -05:00
<Hero />
<FeaturesSection />
<About />
<Contact />
<Footer />
2024-11-21 13:03:00 -05:00
2024-11-20 16:37:54 -05:00
</div>
2024-11-14 12:45:58 -05:00
);
2024-11-20 12:52:44 -05:00
}