import { ArrowRightIcon } from "@/components/Icons" import Link from "@/components/TempDesignSystem/Link" import Body from "@/components/TempDesignSystem/Text/Body" import Subtitle from "@/components/TempDesignSystem/Text/Subtitle" import { getIntl } from "@/i18n" import styles from "./page.module.css" export default async function CommunicationSlot() { const { formatMessage } = await getIntl() return (
{formatMessage({ id: "My communication preferences" })} {formatMessage({ id: "Tell us what information and updates you'd like to receive, and how, by clicking the link below.", })}
{formatMessage({ id: "Manage preferences" })}
) }