jaecoo-kelapagading/app/product/j5-ev/page.tsx

23 lines
900 B
TypeScript
Raw Normal View History

2026-01-18 17:01:09 +00:00
import ExteriorShs from "@/components/landing-page/exterior-shs";
import FeaturesAndSpecificationsShs from "@/components/landing-page/features-and-specifications-shs";
2025-10-21 09:22:39 +00:00
import Footer from "@/components/landing-page/footer";
2026-02-02 13:43:48 +00:00
import HeaderProductJ5Ev from "@/components/landing-page/header-product-j7-shs";
2026-01-18 17:01:09 +00:00
import HeaderProductJ7Shs from "@/components/landing-page/header-product-j7-shs";
import InteriorShs from "@/components/landing-page/interior-shs";
2025-10-21 09:22:39 +00:00
import Navbar from "@/components/landing-page/navbar";
2026-01-18 17:01:09 +00:00
export default function ProductJ7ShsPage() {
2025-10-21 09:22:39 +00:00
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 />
2026-02-02 13:43:48 +00:00
<HeaderProductJ5Ev />
2026-01-18 17:01:09 +00:00
<ExteriorShs />
<InteriorShs />
<FeaturesAndSpecificationsShs />
2025-10-21 09:22:39 +00:00
<Footer />
</div>
</div>
);
}