"use client"; import Image from "next/image"; import { motion } from "framer-motion"; import { useInView } from "react-intersection-observer"; import { useEffect, useState } from "react"; const featuresshs = [ { title: "Rear view mirrors", description: "The mirrors on the pillars are a discreet but aesthetic design detail of the Jaecoo J7 SHS. Their contrasting inserts harmoniously resonate with other accent touches of the exterior.", image: "/ex-shs3.png", }, { title: "Wheels 19”", description: "Built with a lightweight aluminum chassis, offering enhanced strength, durability, and improved performance for a superior driving experience.", image: "/ex-shs4.png", }, { title: "Retractable handles", description: "The designers used a spectacular solution - door handles that automatically extend using an electric drive. Minimal force is required to open the door.", image: "/ex-shs5.png", }, { title: "Rear Bumper Design", description: "Featuring refined lines and bold contours, the rear bumper enhances the vehicle's sporty and stylish character.", image: "/ex-shs6.png", }, ]; export default function ExteriorShs() { const [ref, inView] = useInView({ triggerOnce: true, threshold: 0.2 }); const [show, setShow] = useState(false); useEffect(() => { if (inView) { setShow(true); } }, [inView]); return (
Jaecoo 7 SHS{" "} Teknologi dan Exterior Aluminium Chassis

5th generation 1.5t + 1dht

Drive with peace of mind, protected by 7 strategically placed airbags designed for maximum safety in every journey.

Aluminium Chassis

IP68 protection hybrid battery

Advanced Hybrid Battery Pack Designed for Durability and Performance with IP68 Protection. Engineered for toughness, this hybrid battery pack features IP68 protection and triple-layer safety against damage.

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

{item.title}

{item.description}

))}
); }