69 lines
2.0 KiB
TypeScript
69 lines
2.0 KiB
TypeScript
import HotelCard from "@/components/HotelReservation/SelectHotel/HotelCard"
|
|
import { HotelCardData } from "@/components/HotelReservation/SelectHotel/HotelCard/data"
|
|
import ListContainer from "@/components/MyPages/Blocks/Stays/ListContainer"
|
|
|
|
export default function SelectHotelPage() {
|
|
const hotelData: HotelCardData[] = [
|
|
{
|
|
hotel: {
|
|
name: "Helsinki Hub",
|
|
address: "Kaisaniemenkatu 7, Helsinki",
|
|
description:
|
|
"Modern urban hotel in a impressive 1920s printing house in Helsinki city centre.",
|
|
rooms: "Only 4 rooms left",
|
|
button: "Book from 1549 SEK/night",
|
|
label: [
|
|
"Free cancellation until 18:00",
|
|
"Breakfast included",
|
|
"Free WiFi",
|
|
"Pay at the hotel",
|
|
],
|
|
},
|
|
},
|
|
{
|
|
hotel: {
|
|
name: "Stockholm Serenity",
|
|
address: "Drottninggatan 99, Stockholm",
|
|
description:
|
|
"Charming boutique hotel located in the heart of Stockholm with scenic city views.",
|
|
rooms: "Only 2 rooms left",
|
|
button: "Book from 1899 SEK/night",
|
|
label: [
|
|
"Free cancellation until 18:00",
|
|
"Breakfast included",
|
|
"Free WiFi",
|
|
"Fitness center",
|
|
"Pet friendly",
|
|
],
|
|
},
|
|
},
|
|
{
|
|
hotel: {
|
|
name: "Copenhagen Comfort",
|
|
address: "Vesterbrogade 23, Copenhagen",
|
|
description:
|
|
"Elegant hotel offering modern amenities and quick access to Copenhagen's main attractions.",
|
|
rooms: "Only 3 rooms left",
|
|
button: "Book from 1725 SEK/night",
|
|
label: [
|
|
"Free cancellation until 18:00",
|
|
"Breakfast included",
|
|
"Free WiFi",
|
|
"24-hour front desk",
|
|
"Airport shuttle",
|
|
],
|
|
},
|
|
},
|
|
]
|
|
|
|
return (
|
|
<div>
|
|
<ListContainer>
|
|
{hotelData.map((data) => (
|
|
<HotelCard key={data.hotel.name} hotel={data.hotel} />
|
|
))}
|
|
</ListContainer>
|
|
</div>
|
|
)
|
|
}
|