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

23 lines
433 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";
import About from "../site/About";
import Contact from "../site/Contact";
import Footer from "../site/Footer ";
2024-11-20 14:53:30 -05:00
export default function HomeContent() {
return (
(
<>
<Header />
<Hero />
<FeaturesSection />
<About />
<Contact />
<Footer />
</>
)
)
}