22 lines
828 B
TypeScript
22 lines
828 B
TypeScript
|
|
import ExteriorJ8Awd from "@/components/landing-page/exterior-j8-awd";
|
||
|
|
import FeaturesAndSpecificationsJ8 from "@/components/landing-page/features-and-specifications-j8";
|
||
|
|
import Footer from "@/components/landing-page/footer";
|
||
|
|
import HeaderProductJ8Awd from "@/components/landing-page/header-product-j8-awd";
|
||
|
|
import InteriorJ8Awd from "@/components/landing-page/interior-j8-awd";
|
||
|
|
import Navbar from "@/components/landing-page/navbar";
|
||
|
|
|
||
|
|
export default function ProductJ8Page() {
|
||
|
|
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 />
|
||
|
|
<HeaderProductJ8Awd />
|
||
|
|
<ExteriorJ8Awd />
|
||
|
|
<InteriorJ8Awd />
|
||
|
|
<FeaturesAndSpecificationsJ8 />
|
||
|
|
<Footer />
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|