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

22 lines
603 B
TypeScript
Raw Normal View History

import "./globals.css"
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-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-20 14:53:30 -05:00
<Header />
<Hero />
<FeaturesSection />
<About />
<Contact />
<Footer />
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
}