diff --git a/app/api/create-checkout-session/route.ts b/app/api/create-checkout-session/route.ts index 092cfc6..13b353d 100644 --- a/app/api/create-checkout-session/route.ts +++ b/app/api/create-checkout-session/route.ts @@ -18,11 +18,11 @@ const TICKET_PRICE = 80 // €80 early bird const ACCOMMODATION_PRICES: Record = { "ch-multi": { label: "Bed in shared room (Commons Hub)", price: 274.40 }, "ch-double": { label: "Bed in double room (Commons Hub)", price: 351.40 }, - "hh-single": { label: "Single — double bed (Herrnhof)", price: 95 }, - "hh-double-separate": { label: "Double — double + single bed (Herrnhof)", price: 60 }, - "hh-double-shared": { label: "Double — shared double bed (Herrnhof)", price: 50 }, - "hh-double-couch": { label: "Double — couch + single in living room (Herrnhof)", price: 40 }, - "hh-triple": { label: "Triple — shared double + single bed (Herrnhof)", price: 50 }, + "hh-single": { label: "Single room (Herrnhof)", price: 95 }, + "hh-double-separate": { label: "Double room, separate beds (Herrnhof)", price: 60 }, + "hh-double-shared": { label: "Double room, shared double bed (Herrnhof)", price: 50 }, + "hh-triple": { label: "Triple room (Herrnhof)", price: 50 }, + "hh-daybed": { label: "Daybed or extra bed in living room (Herrnhof)", price: 40 }, } // Public base URL diff --git a/app/register/page.tsx b/app/register/page.tsx index d112888..0b03737 100644 --- a/app/register/page.tsx +++ b/app/register/page.tsx @@ -33,11 +33,11 @@ export default function RegisterPage() { const accommodationPrices: Record = { "ch-multi": { label: "Bed in shared room (Commons Hub)", price: 274.40 }, "ch-double": { label: "Bed in double room (Commons Hub)", price: 351.40 }, - "hh-single": { label: "Single — double bed (Herrnhof)", price: 95 }, - "hh-double-separate": { label: "Double — double + single bed (Herrnhof)", price: 60 }, - "hh-double-shared": { label: "Double — shared double bed (Herrnhof)", price: 50 }, - "hh-double-couch": { label: "Double — couch + single in living room (Herrnhof)", price: 40 }, - "hh-triple": { label: "Triple — shared double + single bed (Herrnhof)", price: 50 }, + "hh-single": { label: "Single room (Herrnhof)", price: 95 }, + "hh-double-separate": { label: "Double room, separate beds (Herrnhof)", price: 60 }, + "hh-double-shared": { label: "Double room, shared double bed (Herrnhof)", price: 50 }, + "hh-triple": { label: "Triple room, one single + one shared double bed (Herrnhof)", price: 50 }, + "hh-daybed": { label: "Daybed or extra bed in living room (Herrnhof)", price: 40 }, } const accommodationPrice = accommodationPrices[accommodationType]?.price ?? 0 @@ -228,31 +228,31 @@ export default function RegisterPage() {
-
-
- -
+
+
+ +
diff --git a/app/transparency/page.tsx b/app/transparency/page.tsx index fee43dd..5fdf5f2 100644 --- a/app/transparency/page.tsx +++ b/app/transparency/page.tsx @@ -125,34 +125,34 @@ export default function FinancialTransparencyPage() {
- Single — double bed + Single room €95
- Double — double + single bed + Double room (separate beds) €60/person
- Double — shared double bed + Double room (shared double bed) €50/person
- Double — couch + single in living room + Triple room (one single, one shared double bed) + €50/person +
+
+
+
+ Daybed or extra bed in living room €40/person
-
-
- Triple — shared double + single bed - €50/person -
-

For whole-apartment quotes, contact office@commons-hub.at.