import { ScandicFriends } from "@/components/Levels" import Button from "@/components/TempDesignSystem/Button" import Link from "@/components/TempDesignSystem/Link" import Body from "@/components/TempDesignSystem/Text/Body" import Footnote from "@/components/TempDesignSystem/Text/Footnote" import Title from "@/components/TempDesignSystem/Text/Title" import { getIntl } from "@/i18n" import Contact from "./Contact" import styles from "./joinLoyalty.module.css" import type { JoinLoyaltyContactProps } from "@/types/components/loyalty/sidebar" export default async function JoinLoyaltyContact({ block, lang, }: JoinLoyaltyContactProps) { const { formatMessage } = await getIntl() return (
{block.title} {block.preamble ? ( {block.preamble} ) : null} {formatMessage({ id: "Already a friend?" })}
{formatMessage({ id: "Click here to log in" })}
{block.contact ? : null}
) }