import Header from "@/components/Section/Header" import { getIntl } from "@/i18n" import SelectionCard from "../SelectionCard" import styles from "./bedSelection.module.css" const choices = [ { value: "queen", name: "Queen bed", payment: "160 cm", pricePerNight: 0, membersPricePerNight: 0, currency: "SEK", }, { value: "king", name: "King bed", payment: "160 cm", pricePerNight: 0, membersPricePerNight: 0, currency: "SEK", }, { value: "twin", name: "Twin bed", payment: "90 cm + 90 cm", pricePerNight: 82, membersPricePerNight: 67, currency: "SEK", }, ] export default async function BedSelection() { const { formatMessage } = await getIntl() return (
{formatMessage({ id: "All our beds are from Bliss, allowing you to adjust the firmness for your perfect comfort.", })}