mirror of
https://gitea.gofwd.group/dstrawsb/ballistic-builder.git
synced 2025-12-06 02:36:44 -05:00
21 lines
580 B
TypeScript
21 lines
580 B
TypeScript
import Link from "next/link";
|
|
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 ";
|
|
import { ChakraProvider } from "@chakra-ui/react";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div className="bg-gray-100 min-h-screen flex flex-col">
|
|
<Header />
|
|
<Hero />
|
|
<FeaturesSection />
|
|
<About />
|
|
<Contact />
|
|
<Footer />
|
|
</div>
|
|
);
|
|
} |