"use client"; import Image from "next/image"; import { motion } from "framer-motion"; import { useInView } from "react-intersection-observer"; const features = [ { title: "14.8 Screen with APPLE Carplay & Android Auto", description: "Stay connected and informed with a 14.8 display offering clear visuals and advanced functionality for a seamless driving experience.", image: "/interior-2.png", }, { title: "Windshield Heads-Up Display (W-HUD)", description: "Stay informed and focused on the road with the adjustable W-HUD, tailored to align perfectly with your unique sitting position for optimal driving comfort and safety.", image: "/interior-3.png", }, { title: "540 degree HD video", description: "The 540-degree HD video system provides comprehensive coverage, ensuring nothing escapes your view.", image: "/interior-4.png", }, { title: "Wireless Charging", description: "Stay powered up on the go with Wireless Charging, ensuring your devices are always ready when you are.", image: "/interior-5.png", }, ]; const interior = [ { title: "Aircraft-style Gear Shift", description: "A seamless blend of style and performance with the Avantgrade Fighter-Inspired Transmission Shifter.", image: "/interior-6.png", }, { title: "Heated/Ventilated Seats", description: "Enjoy ultimate comfort with synthetic leather seats featuring heating and ventilation, designed for a luxurious and adaptable driving experience.", image: "/interior-7.png", }, { title: "Sony 8-Speaker Audio system", description: "Immerse yourself in rich, high-quality sound with the Sony 8-speaker audio system, delivering an exceptional listening experience on every journey.", image: "/interior-8.png", }, ]; export default function Interior() { const { ref, inView } = useInView({ triggerOnce: true, threshold: 0.2 }); return (
Jaecoo 7 SHS-P{" "} Interior Interior Hero
{features.map((item, index) => ( {item.title}

{item.title}

{item.description}

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

{item.title}

{item.description}

))}
); }