"use client"; import Image from "next/image"; import { motion } from "framer-motion"; import { useInView } from "react-intersection-observer"; const featuresInt = [ { 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: "/in-shs2.png", }, { title: "Horizontal Side by Side Cup Holder", description: "Keep your beverages secure and within reach with the stylish Horizontal Side-by-Side Cup Holder.", image: "/in-shs3.png", }, { title: "EV/ HEV Button", description: "Effortlessly switch between power modes with the EV/HEV Button, designed for optimal driving efficiency.", image: "/in-shs4.png", }, { title: "Wireless Charging", description: "Stay powered up on the go with Wireless Charging, ensuring your devices are always ready when you are.", image: "/in-shs5.png", }, ]; const interior = [ { title: "Dual Door Armrest", description: "A seamless blend of style and performance with the Avantgrade Fighter-Inspired Transmission Shifter.", image: "/in-shs6.png", }, { title: "Ventilated Leather Seats", description: "Stay cool and comfortable with Ventilated Leather Seats, designed for luxury and relaxation.", image: "/in-shs7.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: "/in-shs8.png", }, { title: "Minimalist Door Latch Design", description: "Redefine sophistication with the Minimalist Door Latch Design, offering a seamless blend of style and utility.", image: "/in-shs9.png", }, ]; export default function InteriorShs() { const { ref, inView } = useInView({ triggerOnce: true, threshold: 0.2 }); return (
Jaecoo 7 SHS{" "} Interior Interior Hero
{featuresInt.map((item, index) => ( {item.title}

{item.title}

{item.description}

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

{item.title}

{item.description}

))}
); }