import { Card, Center, Stack, Text, Title } from "@mantine/core"; import { getScopedI18n } from "@homarr/translation/server"; import { HomarrLogoWithTitle } from "~/components/layout/logo/homarr-logo"; import { LoginForm } from "./_login-form"; export default async function Login() { const t = await getScopedI18n("user.page.login"); return (
{t("title")} {t("subtitle")}
); }