"use client"; import Image from "next/image"; import { motion } from "framer-motion"; import { useInView } from "react-intersection-observer"; import { useEffect, useState } from "react"; const featuresJ8 = [ { title: "ARDIS", description: "ARDIS (All-Road Drive Intelligent System) automatically adjusts power to each wheel, giving you better grip, stability, and control on any road.", image: "/ex-j8.png", }, { title: "CDC Magnetic Suspension", description: "Equipped with real-time road condition detection, the J8 instantly adjusts shock absorbers to keep the vehicle stable, ensuring a smooth and controlled ride.", image: "/ex-j8-2.png", }, { title: "2.0L Turbocharged Engine", description: "Equipped with a 2.0L turbo engine that delivers 183 kW and 385 Nm, the J8 offers strong performance and smooth control for any road.", image: "/ex-j8-3.png", }, { title: "Waterfall Grille Design", description: "Features a bold, flowing design that captures attention at first glance. The cascading pattern blends elegance with energy, reflecting modern confidence while optimizing airflow for improved vehicle performance.", image: "/ex-j8-4.png", }, { title: "LED Tech Headlamp", description: "", image: "/ex-j8-5.png", }, { title: "20-inch Alloy Wheels", description: "Striking 20-inch alloy wheels deliver a blend of style and durability. ", image: "/ex-j8-6.png", }, { title: "Hidden door handles", description: "Seamlessly integrated into the vehicle body to reduce wind noise and drag.", image: "/ex-j8-7.png", }, { title: "Strong Through Waistline", description: "The J8’s exterior embodies bold simplicity with crisp, powerful lines and a golden-ratio silhouette.", image: "/ex-j8-8.png", }, ]; export default function ExteriorJ8Awd() { const [ref, inView] = useInView({ triggerOnce: true, threshold: 0.2 }); const [show, setShow] = useState(false); useEffect(() => { if (inView) { setShow(true); } }, [inView]); return (
Jaecoo 8 AWD{" "} Teknologi dan Exterior {featuresJ8.map((item, index) => ( {item.title}

{item.title}

{item.description}

))}
); }