mirror of
https://github.com/Ichitux/lambada-fiesta-live.git
synced 2026-05-15 15:12:19 +02:00
79 lines
2.7 KiB
TypeScript
79 lines
2.7 KiB
TypeScript
import { motion } from "framer-motion";
|
|
import { SCHEDULE } from "@/data/event-data";
|
|
import { Clock, Music, Coffee, Star } from "lucide-react";
|
|
|
|
const typeIcon: Record<string, typeof Clock> = {
|
|
workshop: Clock,
|
|
social: Music,
|
|
break: Coffee,
|
|
show: Star,
|
|
};
|
|
|
|
const typeColor: Record<string, string> = {
|
|
workshop: "border-primary bg-primary/10 text-primary",
|
|
social: "border-secondary bg-secondary/10 text-secondary",
|
|
break: "border-muted-foreground bg-muted text-muted-foreground",
|
|
show: "border-accent bg-accent/10 text-accent",
|
|
};
|
|
|
|
const ScheduleSection = () => (
|
|
<section
|
|
id="schedule"
|
|
className="section-padding bg-card relative z-20 -mt-[40px] pt-[100px]"
|
|
style={{ borderRadius: "100% 0 0 0 / 120px 0 0 0" }}
|
|
>
|
|
<div className="container mx-auto">
|
|
<motion.div
|
|
initial={{ opacity: 0, y: 20 }}
|
|
whileInView={{ opacity: 1, y: 0 }}
|
|
viewport={{ once: false, amount: 0.15 }}
|
|
className="text-center mb-12"
|
|
>
|
|
<h2 className="font-display text-4xl md:text-5xl lg:text-7xl break-words font-bold pt-4 pb-10 leading-[1.8] text-gradient">
|
|
Programa
|
|
</h2>
|
|
<p className="text-muted-foreground max-w-2xl mx-auto">
|
|
Tres días de workshops, shows y social dance.
|
|
</p>
|
|
</motion.div>
|
|
|
|
<div className="grid md:grid-cols-3 gap-8">
|
|
{SCHEDULE.map((day, di) => (
|
|
<motion.div
|
|
key={day.day}
|
|
initial={{ opacity: 0, y: 30 }}
|
|
whileInView={{ opacity: 1, y: 0 }}
|
|
viewport={{ once: false, amount: 0.15 }}
|
|
transition={{ delay: di * 0.15 }}
|
|
>
|
|
<h3 className="font-display text-2xl md:text-3xl lg:text-4xl pt-3 pb-5 leading-[1.6] font-bold text-foreground mb-4 pb-3 border-b-2 border-primary">
|
|
{day.day}
|
|
</h3>
|
|
<div className="space-y-3">
|
|
{day.events.map((event, ei) => {
|
|
const Icon = typeIcon[event.type] || Clock;
|
|
return (
|
|
<div
|
|
key={ei}
|
|
className={`flex items-start gap-3 p-3 rounded-lg border-l-4 ${
|
|
typeColor[event.type] || ""
|
|
}`}
|
|
>
|
|
<Icon className="w-4 h-4 mt-0.5 shrink-0" />
|
|
<div>
|
|
<p className="text-xs font-medium opacity-70">{event.time}</p>
|
|
<p className="text-sm font-semibold">{event.title}</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
})}
|
|
</div>
|
|
</motion.div>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</section>
|
|
);
|
|
|
|
export default ScheduleSection;
|