"use client"; import Image from "next/image"; import { motion } from "framer-motion"; import { useInView } from "react-intersection-observer"; import { useEffect, useState } from "react"; const features = [ { title: "REAR BUMPER DESIGN", description: "Featuring refined lines and bold contours, the rear bumper enhances the vehicle’s sporty and stylish character.", image: "/pj7-1.png", }, { title: "PANORAMIC SUNROOF", description: "The Panoramic Sunroof transforms your journey, creating a brighter and more spacious atmosphere.", image: "/pj7-2.png", }, { title: "REAR BUMPER DESIGN", description: "Featuring refined lines and bold contours, the rear bumper enhances the vehicle’s sporty and stylish character.", image: "/pj7-3.png", }, { title: "NATURAL DAYLIGHT LED LIGHTING SYSTEM", description: "Illuminate your journey with the Natural Daylight LED Lighting System, designed to mimic the clarity and warmth of sunlight.", image: "/pj7-4.png", }, ]; export default function Exterior() { const [ref, inView] = useInView({ triggerOnce: true, threshold: 0.2 }); const [show, setShow] = useState(false); useEffect(() => { if (inView) { setShow(true); } }, [inView]); return (
Jaecoo 5 EV{" "} Teknologi dan Exterior Aluminium Chassis

ALUMINIUM CHASSIS

Built with a lightweight aluminum chassis, offering enhanced strength, durability, and improved performance for a superior driving experience.

{features.map((item, index) => ( {item.title}

{item.title}

{item.description}

))}
); }