import { ScandicLogoIcon } from "@/components/Icons" import Image from "@/components/Image" import Button from "@/components/TempDesignSystem/Button" import Chip from "@/components/TempDesignSystem/Chip" import Body from "@/components/TempDesignSystem/Text/Body" import Title from "@/components/TempDesignSystem/Text/Title" import styles from "./hotelCard.module.css" const chipValues = [ "Free cancellation until 18:00", "Breakfast included", "Free WiFi", "Pay at the hotel", ] export default function HotelCard() { return (
hotel image
Helsinki Hub
Kaisaniemenkatu 7, Helsinki Modern urban hotel in a impressive 1920s printing house in Helsinki city centre.
{chipValues.map((value) => ( {value} ))}
Only 4 rooms left
) }