feat(BOOK-62): Added new InfoCard component and using that on hotel pages

Approved-by: Bianca Widstam
This commit is contained in:
Erik Tiekstra
2025-11-04 07:39:33 +00:00
parent 10bf4d08d9
commit 4491d1de8e
27 changed files with 1119 additions and 663 deletions

View File

@@ -40,6 +40,7 @@ import type { imageSchema } from "../routers/hotels/schemas/image"
export type HotelData = z.output<typeof hotelSchema>
export type Amenities = z.output<typeof detailedFacilitiesSchema>
export type Amenity = Amenities[number]
export type CheckInData = z.output<typeof checkinSchema>
type CitySchema = z.output<typeof citySchema>
export type City = Pick<CitySchema, "id" | "type"> & CitySchema["attributes"]