Calendar & Assistants
CI/CD Deploy / test (push) Successful in 1m2s
CI/CD Deploy / build-push (push) Successful in 1m34s
CI/CD Deploy / deploy (push) Successful in 15s

This commit is contained in:
Antoni Nuñez Romeu
2026-08-25 14:23:05 +02:00
parent 6f2027610f
commit c799cdda00
5 changed files with 91 additions and 74 deletions
+51 -17
View File
@@ -38,6 +38,9 @@ import wellington from "@/assets/staff/wellington.jpg";
import xavilau from "@/assets/staff/xavilau.jpg";
import pamela from "@/assets/staff/pamela.jpg";
import papagaio from "@/assets/staff/papagaio.jpg";
import jade from "@/assets/staff/jade.jpg";
import juninho from "@/assets/staff/juninho.jpg";
import rafael from "@/assets/staff/rafael.jpg";
import gal1 from "@/assets/gallery/gal1.jpg";
import gal2 from "@/assets/gallery/gal2.jpg";
@@ -159,9 +162,9 @@ export const STAFF = [
},
{
id: "10",
name: "DJ Cathie",
role: "DJ" as const,
image: djcathie,
name: "Jade Rodrigues",
role: "Teacher" as const,
image: jade,
},
{
id: "11",
@@ -263,36 +266,67 @@ export const STAFF = [
name: "Papagaio",
role: "Specials" as const,
image: papagaio,
},
{
id: "28",
name: "Juninho",
role: "Specials" as const,
image: juninho,
},
{
id: "29",
name: "DJ Rafael",
role: "DJ" as const,
image: rafael,
}
];
// ---- PROGRAMA DEL EVENTO ----
export const SCHEDULE = [
{
day: "Viernes 20 Junio",
day: "Viernes 4 de Setiembre",
events: [
{ time: "18:00 – 19:30", title: "[Workshop 1]", type: "workshop" as const },
{ time: "19:30 – 20:00", title: "Pausa", type: "break" as const },
{ time: "20:00 – 21:30", title: "[Workshop 2]", type: "workshop" as const },
{ time: "17:00 – 18:30", title: "Followers & Style by Jade & Milu", type: "workshop" as const },
{ time: "20:00 – 21:30", title: "La Ciencia de los Giros by Rodrigo Delano", type: "workshop" as const },
{ time: "22:00 – 03:00", title: "Social Dance + DJ Set", type: "social" as const },
],
},
{
day: "Sábado 21 Junio",
day: "Sábado 5 de Setiembre",
events: [
{ time: "12:00 – 13:30", title: "[Workshop 3]", type: "workshop" as const },
{ time: "14:00 – 15:30", title: "[Workshop 4]", type: "workshop" as const },
{ time: "16:00 – 17:30", title: "[Workshop 5]", type: "workshop" as const },
{ time: "21:00 – 22:00", title: "Shows en Vivo", type: "show" as const },
{ time: "22:00 – 04:00", title: "Social Dance + DJ Sets", type: "social" as const },
{ time: "11:00 – 12:00", title: "", type: "workshop" as const, parallel: [
{ time: "11:00 – 12:00", title: "Matheus & Lydia", type: "workshop" as const },
{ time: "11:00 – 12:00", title: "Leticia & Alex", type: "workshop" as const },
]},
{ time: "12:00 – 13:00", title: "[Workshop 4]", type: "workshop" as const, parallel: [
{ time: "12:00 – 13:00", title: "Emanoel & Safira", type: "workshop" as const },
{ time: "12:00 – 13:00", title: "Ariel & Yasmin", type: "workshop" as const },
]
},
{ time: "14:00 – 15:00", title: "Comida / Lunch", type: "break" as const },
{ time: "15:00 – 16:00", title: "[Workshop 5]", type: "workshop" as const, parallel: [
{ time: "15:00 – 16:00", title: "Xavi & Laura", type: "workshop" as const },
{ time: "15:00 – 16:00", title: "Omer & Adva", type: "workshop" as const },
]
},
{ time: "16:00 – 17:00", title: "[Workshop 6]", type: "workshop" as const, parallel: [
{ time: "16:00 – 17:00", title: "Leo & Hila", type: "workshop" as const },
{ time: "16:00 – 17:00", title: "Pablo & Lena", type: "workshop" as const },
]
},
{ time: "17:00 – 18:00", title: "[Workshop 7]", type: "workshop" as const, parallel: [
{ time: "17:00 – 18:00", title: "Braz & Romina", type: "workshop" as const },
{ time: "17:00 – 18:00", title: "Didi & Patricia", type: "workshop" as const },
]
},
{ time: "22:00 – 03:00", title: "Social Dance + DJ Set", type: "social" as const },
],
},
{
day: "Domingo 22 Junio",
day: "Domingo 6 de Setiembre",
events: [
{ time: "12:00 – 13:30", title: "[Workshop 6]", type: "workshop" as const },
{ time: "14:00 – 15:30", title: "[Workshop 7]", type: "workshop" as const },
{ time: "17:00 – 22:00", title: "Farewell Party", type: "social" as const },
{ time: "11:30 – 12:30", title: "International Barcelona Flash Mob 2026. Choreo by: Lautaro & Ari. Teacher: Romina Hidalgo", type: "workshop" as const },
{ time: "12:00 – 14:00", title: "Pool Party", type: "social" as const },
],
},
];