'use client'; import FEATURES from '@/data/features.json'; import { Icon } from '@iconify/react'; import { motion, useInView } from 'framer-motion'; import { useRef } from 'react'; export function Features() { const ref = useRef(null); const isInView = useInView(ref, { once: true, amount: 0.2 }); const containerVariants = { hidden: { opacity: 0 }, visible: { opacity: 1, transition: { staggerChildren: 0.1, }, }, }; const itemVariants = { hidden: { y: 20, opacity: 0 }, visible: { y: 0, opacity: 1, transition: { duration: 0.5 }, }, }; return (
Fitur Unggulan

Belajar programming dengan cara yang lebih baik

IMPHNEN hadir dengan berbagai fitur untuk membantu kamu menjadi programmer handal tanpa harus pusing dengan coding.

{FEATURES.map((feature, index) => (

{feature.title}

{feature.description}

))}
); }