White Party + Docker version
Deploy Docker container / Deploy (push) Successful in 2m15s

This commit is contained in:
Antoni Nuñez Romeu
2026-07-22 16:00:30 +02:00
parent 8d0373facf
commit e6b1bfe9a4
5 changed files with 121 additions and 17 deletions
+2 -1
View File
@@ -280,7 +280,7 @@ export const GALLERY_IMAGES = [
// ---- PAQUETES MIXTOS (Room + Pass) ----
export type RoomType = "individual" | "double" | "suite";
export type PassType = "full" | "party";
export type PassType = "full" | "party" | "whiteparty";
export const ROOM_TYPES: { id: RoomType }[] = [
{ id: "individual" },
@@ -314,6 +314,7 @@ export function getFullPassPrice(): { price: number; isLastPrice: boolean; valid
export const MIXED_BOOKING_PACKAGES = [
{ id: "full" as PassType, label: "full", roomPrices: { individual: 100, double: 150, suite: 213 } },
{ id: "party" as PassType, label: "party", roomPrices: { individual: 100, double: 150, suite: 213 } },
{ id: "whiteparty" as PassType, label: "whiteparty", roomPrices: { individual: 0, double: 0, suite: 0 } },
];
// ---- SECCIONES VISIBLES ----