import Image from "@scandic-hotels/design-system/Image" import Link from "@scandic-hotels/design-system/Link" import { OldDSButton as Button } from "@scandic-hotels/design-system/OldDSButton" import { Typography } from "@scandic-hotels/design-system/Typography" import styles from "./promo.module.css" type PromoProps = { buttonText: string href: string text: string title: string image?: { src: string altText: string altText_En: string } } export default function Promo({ buttonText, href, text, title, image, }: PromoProps) { return (
{image && (
{image.altText
)}

{title}

{text}

) }