import { OldDSButton as Button } from "@scandic-hotels/design-system/OldDSButton" import { Typography } from "@scandic-hotels/design-system/Typography" import Image from "@/components/Image" import Link from "@/components/TempDesignSystem/Link" import styles from "./promo.module.css" import type { PromoProps } from "@/types/components/hotelReservation/bookingConfirmation/promo" export default function Promo({ buttonText, href, text, title, image, }: PromoProps) { return (
{image && (
{image.metaData.altText}
)}

{title}

{text}

) }