import { motion } from "framer-motion"; import { STAFF } from "@/data/event-data"; import { Instagram, User, ChevronLeft, ChevronRight } from "lucide-react"; /** Colores de badge por rol */ const roleBadgeClass: Record = { Instructor: "bg-primary text-primary-foreground", DJ: "bg-secondary text-secondary-foreground", Organizador: "bg-accent text-accent-foreground", }; const StaffSection = () => { // simple ref + helpers for horizontal scroll const onPrev = () => { const scroller = document.getElementById("staff-scroller"); if (!scroller) return; const card = scroller.querySelector("[data-staff-card]") as HTMLElement | null; const delta = card ? card.offsetWidth + 24 : 320; // 24 ~ gap-x-6 scroller.scrollBy({ left: -delta, behavior: "smooth" }); }; const onNext = () => { const scroller = document.getElementById("staff-scroller"); if (!scroller) return; const card = scroller.querySelector("[data-staff-card]") as HTMLElement | null; const delta = card ? card.offsetWidth + 24 : 320; scroller.scrollBy({ left: delta, behavior: "smooth" }); }; return (

Staff del Evento

Conoce a los artistas e instructores que harĂ¡n de este festival una experiencia inolvidable.

{/* Arrows (desktop) */}
{/* Carousel scroller */}
{/* gradient edges */}
{STAFF.map((member, i) => ( {/* Foto */}
{member.image ? ( {member.name} ) : ( )}
{/* Badge de rol */} {member.role}

{member.name}

{member.description}

{/* Redes sociales */} {member.socials?.instagram && ( Instagram )}
))}
{/* Arrows (mobile overlay) */}
); }; export default StaffSection;