import Header from "@/components/Section/Header" import { getIntl } from "@/i18n" import SelectionCard from "../SelectionCard" import styles from "./breakfastSelection.module.css" const choices = [ { value: "no", name: "No breakfast", payment: "Always cheeper to get it online", pricePerNight: 0, currency: "SEK", }, { value: "buffe", name: "Breakfast buffé", payment: "Always cheeper to get it online", pricePerNight: 150, currency: "SEK", }, ] export default async function BreakfastSelection() { const { formatMessage } = await getIntl() return (
) }