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

23 lines
480 B
TypeScript
Raw Normal View History

2025-01-25 00:08:51 -05:00
import Header from "@components/Header";
import Hero from "@components/Hero";
import FeaturesSection from "@components/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 />
</>
)
)
}