import { Button } from "@scandic-hotels/design-system/Button" import Link from "@scandic-hotels/design-system/Link" import { Typography } from "@scandic-hotels/design-system/Typography" import styles from "./promo.module.css" import type { PromoProps } from "../../../../types/components/promo/promoProps" export function Promo({ buttonText, href, text, title }: PromoProps) { return (

{title}

{text}

) }