Merged in feat/SW-1469-facility-cards (pull request #1393)

Feat(SW-1469): Add check if we should create facility cards

* fix(SW-1469): only create facility cards if supposed to


Approved-by: Erik Tiekstra
Approved-by: Fredrik Thorsson
This commit is contained in:
Matilda Landström
2025-02-24 08:19:26 +00:00
parent ec00a598d2
commit dda236aa82
7 changed files with 141 additions and 74 deletions

View File

@@ -1,8 +1,9 @@
import type { Hotel } from "@/types/hotel"
import type { MeetingRooms } from "../meetingRooms"
export type MeetingsAndConferencesSidePeekProps = {
meetingFacilities: Hotel["conferencesAndMeetings"]
descriptions: Hotel["hotelContent"]["texts"]["meetingDescription"]
hotelId: string
meetingRooms: MeetingRooms
meetingPageUrl: string | undefined
}

View File

@@ -22,5 +22,8 @@ type Tabs = {
export type TabNavigationProps = {
hasActivities: boolean
hasFAQ: boolean
hasWellness: boolean
hasRestaurants: boolean
hasMeetingRooms: boolean
tabValues?: Tabs | null
}