feat(SW-750): add about the hotel sidepeek

This commit is contained in:
Fredrik Thorsson
2024-11-18 13:15:25 +01:00
parent be3716bb1a
commit 9344db7876
10 changed files with 268 additions and 8 deletions

View File

@@ -0,0 +1,13 @@
import type { Hotel, HotelAddress } from "@/types/hotel"
export type AboutTheHotelSidePeekProps = {
hotelAdress: HotelAddress
coordinates: {
lat: number
lng: number
}
contact: Hotel["contactInformation"]
socials: Hotel["socialMedia"]
ecoLabels: Hotel["hotelFacts"]["ecoLabels"]
descriptions: Hotel["hotelContent"]["texts"]["descriptions"]
}

View File

@@ -0,0 +1,12 @@
import type { Hotel, HotelAddress } from "@/types/hotel"
export type ContactInformationProps = {
adress: HotelAddress
coordinates: {
lat: number
lng: number
}
contact: Hotel["contactInformation"]
socials: Hotel["socialMedia"]
ecoLabels: Hotel["hotelFacts"]["ecoLabels"]
}