22 lines
820 B
TypeScript
22 lines
820 B
TypeScript
|
|
import ExteriorShs from "@/components/landing-page/exterior-shs";
|
||
|
|
import FeaturesAndSpecificationsShs from "@/components/landing-page/features-and-specifications-shs";
|
||
|
|
import Footer from "@/components/landing-page/footer";
|
||
|
|
import HeaderProductJ7Shs from "@/components/landing-page/header-product-j7-shs";
|
||
|
|
import InteriorShs from "@/components/landing-page/interior-shs";
|
||
|
|
import Navbar from "@/components/landing-page/navbar";
|
||
|
|
|
||
|
|
export default function ProductJ7ShsPage() {
|
||
|
|
return (
|
||
|
|
<div className="relative min-h-screen font-[family-name:var(--font-geist-sans)]">
|
||
|
|
<div className="relative z-10 bg-white w-full mx-auto">
|
||
|
|
<Navbar />
|
||
|
|
<HeaderProductJ7Shs />
|
||
|
|
<ExteriorShs />
|
||
|
|
<InteriorShs />
|
||
|
|
<FeaturesAndSpecificationsShs />
|
||
|
|
<Footer />
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|