2025-07-14 07:31:51 +00:00
|
|
|
"use client";
|
|
|
|
|
|
|
|
|
|
import Image from "next/image";
|
|
|
|
|
|
|
|
|
|
export default function FeaturesAndSpecifications() {
|
|
|
|
|
return (
|
|
|
|
|
<section className="pt-10 px-4 sm:px-6 md:px-20 bg-white">
|
|
|
|
|
<h2 className="text-2xl mt-5 mb-8">
|
2025-10-23 12:15:13 +00:00
|
|
|
<span className="text-[#1F6779] font-semibold">Jaecoo 5 EV</span>{" "}
|
|
|
|
|
Interior
|
2025-07-14 07:31:51 +00:00
|
|
|
</h2>
|
|
|
|
|
|
|
|
|
|
<div className="relative w-full h-[300px] sm:h-[400px] md:h-[600px]">
|
|
|
|
|
<Image
|
2025-10-23 12:15:13 +00:00
|
|
|
src="/j5-fitur1.jpg"
|
2025-07-14 07:31:51 +00:00
|
|
|
alt="Aluminium Chassis"
|
|
|
|
|
fill
|
|
|
|
|
className="object-cover"
|
|
|
|
|
sizes="100vw"
|
|
|
|
|
/>
|
2025-10-23 12:15:13 +00:00
|
|
|
{/* <div className="absolute bottom-26 left-3 sm:left-10 md:left-26 max-w-xs bg-white/60 rounded-lg p-4">
|
2025-07-14 07:31:51 +00:00
|
|
|
<h2 className="text-xl sm:text-sm font-semibold text-black">
|
|
|
|
|
Lane Changing Assistance
|
|
|
|
|
</h2>
|
|
|
|
|
<p className="text-xs sm:text-xs mt-2 text-black">
|
|
|
|
|
Advanced safety feature that monitors surrounding traffic and
|
|
|
|
|
provides alerts or steering support to help ensure sasfe and
|
|
|
|
|
confident lane changes
|
|
|
|
|
</p>
|
2025-10-23 12:15:13 +00:00
|
|
|
</div> */}
|
2025-07-14 07:31:51 +00:00
|
|
|
</div>
|
|
|
|
|
<div className="relative w-full h-[300px] sm:h-[400px] md:h-[600px] my-20">
|
|
|
|
|
<Image
|
2025-10-23 12:15:13 +00:00
|
|
|
src="/j5-fitur9.jpg"
|
2025-07-14 07:31:51 +00:00
|
|
|
alt="Aluminium Chassis"
|
|
|
|
|
fill
|
|
|
|
|
className="object-cover"
|
|
|
|
|
sizes="100vw"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
<h2 className="text-2xl mt-5 mb-8">
|
2025-10-21 09:22:39 +00:00
|
|
|
<span className="text-[#1F6779] font-semibold">Jaecoo 5 EV</span>{" "}
|
2025-07-14 07:31:51 +00:00
|
|
|
Spesifikasi
|
|
|
|
|
</h2>
|
|
|
|
|
<div className="grid grid-cols-2 sm:grid-cols-3 lg:grid-cols-4 gap-x-32 gap-y-6 text-sm sm:text-base text-start my-10">
|
|
|
|
|
<div>
|
|
|
|
|
<p className="text-gray-500">Max Power</p>
|
|
|
|
|
<p className="font-bold">136,5kw/183hp</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<p className="text-gray-500">Power Train</p>
|
|
|
|
|
<p className="font-bold">1.6T+7DHT</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<p className="text-gray-500">Torque</p>
|
|
|
|
|
<p className="font-bold">275N.m</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<p className="text-gray-500">Sensor</p>
|
|
|
|
|
<p className="font-bold">8 Sensor</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<p className="text-gray-500">Max Speed</p>
|
|
|
|
|
<p className="font-bold">180km/h</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<p className="text-gray-500">0-100km-h</p>
|
|
|
|
|
<p className="font-bold">9,2s</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<p className="text-gray-500">Airbag</p>
|
|
|
|
|
<p className="font-bold">8 airbags</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<p className="text-gray-500">ADAS</p>
|
|
|
|
|
<p className="font-bold">19 adas</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
);
|
|
|
|
|
}
|