import ButtonLink from "@scandic-hotels/design-system/ButtonLink" import { Typography } from "@scandic-hotels/design-system/Typography" import { getIntl } from "@/i18n" import { getLang } from "@/i18n/serverContext" import styles from "./emptyUpcomingStays.module.css" export default async function EmptyUpcomingStays() { const intl = await getIntl() const lang = await getLang() const href = `/${lang}` return (

{intl.formatMessage({ id: "stays.noUpcomingStaysAtTheMoment", defaultMessage: "You have no upcoming stays at the moment", })}

{intl.formatMessage({ id: "stays.findDestinationOrHotel", defaultMessage: "Find hotel or destination", })}
) }