mirror of
https://gitea.gofwd.group/dstrawsb/ballistic-builder.git
synced 2025-12-05 18:26:45 -05:00
24 lines
448 B
TypeScript
24 lines
448 B
TypeScript
|
|
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 />
|
||
|
|
</>
|
||
|
|
|
||
|
|
)
|
||
|
|
)
|
||
|
|
}
|