feat(SW-495): update heading on facility cards

This commit is contained in:
Fredrik Thorsson
2025-01-07 15:22:50 +01:00
parent d11b9e8aee
commit cc00aab7ee
6 changed files with 75 additions and 11 deletions

View File

@@ -1,10 +1,12 @@
import type { Facility } from "@/types/hotel"
import type { Amenities, Facility, HealthFacilities } from "@/types/hotel"
import type { ActivityCard } from "@/types/trpc/routers/contentstack/hotelPage"
import type { CardProps } from "@/components/TempDesignSystem/Card/card"
export type FacilitiesProps = {
facilities: Facility[]
activitiesCard?: ActivityCard
amenities: Amenities
healthFacilities: HealthFacilities
}
export type FacilityImage = {
@@ -47,3 +49,11 @@ export enum RestaurantHeadings {
restaurant = "Restaurant",
breakfastRestaurant = "Breakfast restaurant",
}
export enum WellnessHeadings {
GymPool = "Gym & Pool",
GymSauna = "Gym & Sauna",
GymPoolSaunaRelax = "Gym, Pool, Sauna & Relax",
GymJacuzziSaunaRelax = "Gym, Jacuzzi, Sauna & Relax",
FallbackHeading = "Wellness & Exercise",
}