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

24 lines
448 B
TypeScript
Raw Normal View History

2024-11-20 14:53:30 -05:00
import Link from "next/link";
import Header from "../Header";
import Hero from "../Hero";
import FeaturesSection from "../FeaturesSection";
import About from "../About";
import Contact from "../Contact";
import Footer from "../Footer ";
export default function HomeContent() {
return (
(
<>
<Header />
<Hero />
<FeaturesSection />
<About />
<Contact />
<Footer />
</>
)
)
}