import { MaterialIcon } from "@scandic-hotels/design-system/Icons/MaterialIcon" import Title from "@scandic-hotels/design-system/Title" import Link from "@/components/TempDesignSystem/Link" import { getIntl } from "@/i18n" import { getLang } from "@/i18n/serverContext" import styles from "./emptyUpcomingStays.module.css" export default async function EmptyUpcomingStaysBlock() { const intl = await getIntl() const lang = await getLang() const href = `/${lang}` return (
{intl.formatMessage({ defaultMessage: "You have no upcoming stays.", })} <span className={styles.burgundyTitle}> {intl.formatMessage({ defaultMessage: "Where should you go next?", })} </span>
{intl.formatMessage({ defaultMessage: "Get inspired", })}
) }