import { motion } from "framer-motion"; import { User } from "lucide-react"; import { Carousel, CarouselContent, CarouselItem, CarouselPrevious, CarouselNext, } from "@/components/ui/carousel"; import { PROFESORES } from "@/data/event-data"; const ProfesoresSection = () => (

Profesores

Los mejores profesores internacionales de Lambada te esperan en este festival.

{PROFESORES.map((prof, i) => (
{prof.image ? ( {prof.name} ) : ( )}

{prof.name}

{prof.origin && (

{prof.origin}

)}
))}
); export default ProfesoresSection;