141 lines
4.9 KiB
TypeScript
141 lines
4.9 KiB
TypeScript
"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 (
|
|
<section className="py-10 px-4 sm:px-6 md:px-20 bg-white" ref={ref}>
|
|
<motion.h2
|
|
className="text-2xl mt-5 mb-8"
|
|
initial={{ opacity: 0, y: 30 }}
|
|
animate={inView ? { opacity: 1, y: 0 } : {}}
|
|
transition={{ duration: 0.6 }}
|
|
>
|
|
<span className="text-[#1F6779] font-semibold">Jaecoo 5 EV</span>{" "}
|
|
Interior
|
|
</motion.h2>
|
|
|
|
<motion.div
|
|
className="relative w-full h-[300px] sm:h-[400px] md:h-[600px]"
|
|
initial={{ opacity: 0, scale: 0.95 }}
|
|
animate={inView ? { opacity: 1, scale: 1 } : {}}
|
|
transition={{ duration: 0.7 }}
|
|
>
|
|
<Image
|
|
src="/interior-1.png"
|
|
alt="Interior Hero"
|
|
fill
|
|
className="object-cover"
|
|
sizes="100vw"
|
|
/>
|
|
</motion.div>
|
|
|
|
<div className="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-4 gap-2 sm:gap-4 mt-5">
|
|
{features.map((item, index) => (
|
|
<motion.div
|
|
key={index}
|
|
className="relative aspect-[4/3] overflow-hidden group"
|
|
initial={{ opacity: 0, y: 20 }}
|
|
animate={inView ? { opacity: 1, y: 0 } : {}}
|
|
transition={{ duration: 0.4, delay: index * 0.1 }}
|
|
>
|
|
<Image
|
|
src={item.image}
|
|
alt={item.title}
|
|
fill
|
|
className="object-cover group-hover:scale-105 transition-transform duration-300"
|
|
sizes="(max-width: 768px) 100vw, 25vw"
|
|
/>
|
|
<div className="absolute bottom-0 bg-gradient-to-t from-black/80 to-transparent p-4">
|
|
<h3 className="text-sm sm:text-base font-bold text-white">
|
|
{item.title}
|
|
</h3>
|
|
<p className="text-xs sm:text-sm text-gray-300 mt-1">
|
|
{item.description}
|
|
</p>
|
|
</div>
|
|
</motion.div>
|
|
))}
|
|
</div>
|
|
|
|
<div className="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-2 sm:gap-4 mt-5">
|
|
{interior.map((item, index) => (
|
|
<motion.div
|
|
key={index}
|
|
className="relative aspect-[2/1] overflow-hidden group"
|
|
initial={{ opacity: 0, y: 20 }}
|
|
animate={inView ? { opacity: 1, y: 0 } : {}}
|
|
transition={{ duration: 0.4, delay: index * 0.1 }}
|
|
>
|
|
<Image
|
|
src={item.image}
|
|
alt={item.title}
|
|
fill
|
|
className="object-cover group-hover:scale-105 transition-transform duration-300"
|
|
sizes="(max-width: 768px) 100vw, 25vw"
|
|
/>
|
|
<div className="absolute bottom-0 bg-gradient-to-t from-black/80 to-transparent p-4">
|
|
<h3 className="text-sm sm:text-base font-bold text-white">
|
|
{item.title}
|
|
</h3>
|
|
<p className="text-xs sm:text-sm text-gray-300 mt-1">
|
|
{item.description}
|
|
</p>
|
|
</div>
|
|
</motion.div>
|
|
))}
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|