Files
ballistic-builder/src/components/HomeContent/index.tsx

23 lines
453 B
TypeScript
Raw Normal View History

2024-11-20 14:53:30 -05:00
import Header from "../Header";
import Hero from "../Hero";
import FeaturesSection from "../FeaturesSection";
2025-01-19 23:49:48 -05:00
import About from "@siteInfo/About/page";
import Contact from "@siteInfo/Contact/page";
import Footer from "@siteInfo/Footer/page";
2024-11-20 14:53:30 -05:00
export default function HomeContent() {
return (
(
<>
<Header />
<Hero />
<FeaturesSection />
<About />
<Contact />
<Footer />
</>
)
)
}