import { login } from "@/constants/routes/handleAuth" import { auth } from "@/auth" import ArrowRight from "@/components/Icons/ArrowRight" 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 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" import { LangParams } from "@/types/params" export default async function JoinLoyaltyContact({ block, lang, }: JoinLoyaltyContactProps & LangParams) { const { formatMessage } = await getIntl() const session = await auth() if (session) { return null } return (
{block.title} {block.preamble ? {block.preamble} : null}
{formatMessage({ id: "Already a friend?" })} {formatMessage({ id: "Log in here" })}
{block.contact ? : null}
) }