import NextLink from "next/link" import { FakeButton } from "@scandic-hotels/design-system/FakeButton" import Image from "@scandic-hotels/design-system/Image" 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}

{buttonText}
) }