mirror of
https://github.com/Ichitux/lambada-fiesta-live.git
synced 2026-06-09 23:54:58 +02:00
This commit is contained in:
Binary file not shown.
|
Before Width: | Height: | Size: 92 KiB After Width: | Height: | Size: 207 KiB |
@@ -3,9 +3,10 @@ import { motion } from "framer-motion";
|
||||
import { MIXED_BOOKING_PACKAGES, ROOM_TYPES, getFullPassPrice } from "@/data/event-data";
|
||||
import type { RoomType } from "@/data/event-data";
|
||||
import { useTranslation } from "react-i18next";
|
||||
import { Check, Star, Circle, CheckCircle2 } from "lucide-react";
|
||||
import { Check, Star, Circle, CheckCircle2, ExternalLink } from "lucide-react";
|
||||
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select";
|
||||
import { Label } from "@/components/ui/label";
|
||||
import { Button } from "@/components/ui/button";
|
||||
|
||||
const FEATURED_PASS = "full";
|
||||
const NON_HOTEL_FEE = 50;
|
||||
@@ -200,6 +201,24 @@ const MixedBookingSection = () => {
|
||||
</li>
|
||||
))}
|
||||
</ul>
|
||||
<Button
|
||||
asChild
|
||||
className={`w-full rounded-xl font-medium py-2.5 ${
|
||||
isFeatured
|
||||
? "bg-gradient-tropical hover:bg-gradient-tropical/90 text-primary-foreground"
|
||||
: "bg-primary hover:bg-primary/90 text-primary-foreground"
|
||||
}`}
|
||||
>
|
||||
<a
|
||||
href="https://hotel-donangel.com/zouklambada-barcelona-2026/"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="inline-flex items-center justify-center gap-2"
|
||||
>
|
||||
{t("mixedBooking.goToReservations")}
|
||||
<ExternalLink className="w-4 h-4" />
|
||||
</a>
|
||||
</Button>
|
||||
</div>
|
||||
</motion.div>
|
||||
);
|
||||
|
||||
@@ -149,7 +149,8 @@
|
||||
"fullDescription": "Full access to all workshops, socials, and festival activities",
|
||||
"fullFeatures": "All workshops|All social dances|Live shows|DJ sets",
|
||||
"partyDescription": "Price for each party individually, even pool parties.",
|
||||
"partyFeatures": "Friday party|Saturday party|Sunday farewell party|DJ sets"
|
||||
"partyFeatures": "Friday party|Saturday party|Sunday farewell party|DJ sets",
|
||||
"goToReservations": "Go to reservations"
|
||||
},
|
||||
"info": {
|
||||
"title": "Practical Information",
|
||||
|
||||
@@ -149,7 +149,8 @@
|
||||
"fullDescription": "Acceso completo a todos los workshops, sociales y actividades del festival",
|
||||
"fullFeatures": "Todos los workshops|Todas las social dances|Shows en vivo|DJ sets",
|
||||
"partyDescription": "Precio individual por cada fiesta, incluso las pool parties.",
|
||||
"partyFeatures": "Fiesta del viernes|Fiesta del sábado|Fiesta despedida del domingo|DJ sets"
|
||||
"partyFeatures": "Fiesta del viernes|Fiesta del sábado|Fiesta despedida del domingo|DJ sets",
|
||||
"goToReservations": "Ir a reservas"
|
||||
},
|
||||
"info": {
|
||||
"title": "Información Práctica",
|
||||
|
||||
Reference in New Issue
Block a user