"use client"; import Image from "next/image"; import { easeOut, motion } from "framer-motion"; const services = [ { image: "/s1.png", title: "ELECTRONIC VEHICLE HEALTH CHECK" }, { image: "/s2.png", title: "REQUEST A SERVICE" }, { image: "/s3.png", title: "SERVICE PLANS" }, { image: "/s4.png", title: "BODY AND PAINT" }, { image: "/s5.png", title: "GENUINE PARTS" }, { image: "/s6.png", title: "JAECOO REPAIRS" }, ]; const containerVariants = { hidden: {}, visible: { transition: { staggerChildren: 0.15, }, }, }; const itemVariants = { hidden: { opacity: 0, y: 50 }, visible: { opacity: 1, y: 0, transition: { duration: 0.6, ease: easeOut }, }, }; export default function Service() { return (
Performa Hebat, Layanan Terjamin Servis resmi Jaecoo untuk kendaraan Anda dikerjakan oleh teknisi tersertifikasi dengan suku cadang asli dan sistem booking online. {services.map((service, index) => ( {service.title} ))}
); }