import { Typography } from "@scandic-hotels/design-system/Typography" import ManageEmailPreferencesButton from "@/components/Profile/ManageEmailPreferencesButton" import { getIntl } from "@/i18n" import styles from "./slots.module.css" export default async function EmailSlot() { const intl = await getIntl() return (

{intl.formatMessage({ id: "profile.emailPreferences", defaultMessage: "E-mail preferences", })}

{intl.formatMessage({ id: "profile.manageEmailsAndUpdates", defaultMessage: "Manage what e-mails and updates you'd like to receive, and how, by clicking the link below.", })}

) }