mirror of
https://gitea.gofwd.group/dstrawsb/ballistic-builder.git
synced 2025-12-06 02:36:44 -05:00
23 lines
480 B
TypeScript
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 />
|
|
</>
|
|
|
|
)
|
|
)
|
|
} |