import { login } from "@/constants/routes/handleAuth" import { signup } from "@/constants/routes/signup" import Card from "@/components/TempDesignSystem/Card" import { getIntl } from "@/i18n" import { getLang } from "@/i18n/serverContext" import { isLoggedInUser } from "@/utils/isLoggedInUser" import styles from "./authCard.module.css" export default async function EmployeeBenefitsAuthCard() { const intl = await getIntl() const lang = await getLang() const isLoggedIn = await isLoggedInUser() if (isLoggedIn) { return null } return ( ) }