Files
ballistic-builder/src/components/HomeContent/index.tsx
2025-01-25 00:08:51 -05:00

23 lines
480 B
TypeScript

import Header from "@components/Header";
import Hero from "@components/Hero";
import FeaturesSection from "@components/FeaturesSection";
import About from "@siteInfo/About/page";
import Contact from "@siteInfo/Contact/page";
import Footer from "@siteInfo/Footer/page";
export default function HomeContent() {
return (
(
<>
<Header />
<Hero />
<FeaturesSection />
<About />
<Contact />
<Footer />
</>
)
)
}