"use client"; import Image from "next/image"; import { motion } from "framer-motion"; import { useInView } from "react-intersection-observer"; const featuresJ8Awd = [ { title: "Crystal Drive Mode Selector", description: "The stunning Crystal Drive Mode Selector offers seven distinct drive modes: City, Snow, Sand, Mud, Normal, ECO, and Sport. Its elegant design elevates cabin aesthetics while providing intuitive fingertip access to tailor the driving experience — from smooth city commutes to off-road adventures.", image: "/in-j8awd2.png", }, { title: "Headrest Speaker", description: "Embedded within the premium 14-speaker Sony sound system, the headrest speakers deliver immersive, high-fidelity audio directly to occupants. Designed to enhance entertainment quality and ensure privacy during calls, this feature offers clear sound without disturbing others, blending innovation with comfort.", image: "/in-j8awd3.png", }, { title: "Zero Gravity Seat", description: "Experience true zero-gravity relaxation with an adjustable 123° seat angle, an exclusive sleep headrest, and adjustable earpieces for an optimal fit. Double-layer noise-canceling acoustic glass effectively blocks out external noise, creating a peaceful retreat from the busy world.", image: "/in-j8awd4.png", }, ]; export default function InteriorJ8Awd() { const { ref, inView } = useInView({ triggerOnce: true, threshold: 0.2 }); return (
Jaecoo 8 SHS-P ARDIS {" "} Interior Interior Hero
{featuresJ8Awd.map((item, index) => ( {item.title}

{item.title}

{item.description}

))}
); }