import { motion } from "framer-motion"; import { ABOUT_EVENT } from "@/data/event-data"; import aboutImg from "@/assets/about-event.jpg"; import { Music, Users, Sparkles, PartyPopper } from "lucide-react"; const iconMap = [Music, Users, Sparkles, PartyPopper]; const AboutSection = () => (
{/* Imagen */} Evento de Lambada {/* Texto */}

{ABOUT_EVENT.title}

{ABOUT_EVENT.description}

{ABOUT_EVENT.lambadaInfo}

{/* Highlights */}
{ABOUT_EVENT.highlights.map((item, i) => { const Icon = iconMap[i % iconMap.length]; return (
{item}
); })}
); export default AboutSection;