import ManagePreferencesButton from "@/components/Profile/ManagePreferencesButton" import Body from "@/components/TempDesignSystem/Text/Body" import Subtitle from "@/components/TempDesignSystem/Text/Subtitle" import { getIntl } from "@/i18n" import { setLang } from "@/i18n/serverContext" import styles from "./page.module.css" import type { LangParams, PageArgs } from "@/types/params" export default async function CommunicationSlot({ params, }: PageArgs) { setLang(params.lang) const intl = await getIntl() return (
{intl.formatMessage({ id: "My communication preferences" })} {intl.formatMessage({ id: "Tell us what information and updates you'd like to receive, and how, by clicking the link below.", })}
) }