import { Typography } from "@scandic-hotels/design-system/Typography" import { getIntl } from "@/i18n" import styles from "./header.module.css" import type { Hotel } from "@scandic-hotels/trpc/types/hotel" export async function Header({ cityName, name, }: Pick) { const intl = await getIntl() return (

{intl.formatMessage({ id: "myStay.header.myStayAt", defaultMessage: "My stay at", })}

{name}

{cityName}

) }