22 lines
787 B
TypeScript
22 lines
787 B
TypeScript
|
|
import Exterior from "@/components/landing-page/exterior";
|
||
|
|
import FeaturesAndSpecifications from "@/components/landing-page/features-and-specifications";
|
||
|
|
import Footer from "@/components/landing-page/footer";
|
||
|
|
import HeaderProductJ7Awd from "@/components/landing-page/header-product-j7-awd";
|
||
|
|
import Interior from "@/components/landing-page/interior";
|
||
|
|
import Navbar from "@/components/landing-page/navbar";
|
||
|
|
|
||
|
|
export default function ProductJ7Page() {
|
||
|
|
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 />
|
||
|
|
<HeaderProductJ7Awd />
|
||
|
|
<Exterior />
|
||
|
|
<Interior />
|
||
|
|
<FeaturesAndSpecifications />
|
||
|
|
<Footer />
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|