"use client"; import { signIn } from "next-auth/react"; import { useTranslations, useLocale } from "next-intl"; import { Link, getPathname } from "@/i18n/navigation"; export default function LoginPage() { const t = useTranslations("login"); const locale = useLocale(); return (
{/* Background grid pattern */}
{/* Logo mark */}

{t("title")}

{t("subtitle")}

{t("noAccount")}{" "} {t("register")}

{t("footer")}

); }