import { LeftArrow } from "@/components/icons/LeftArrow"; import { RightArrow } from "@/components/icons/RightArrow"; import LoginForm from "./LoginForm"; import { Link, redirect } from "@/i18n/navigation"; import { getLocale } from "next-intl/server"; import { getCurrentUser } from "@/lib/userAuth"; export default async function LoginPage() { const user = await getCurrentUser(); const locale = await getLocale(); if (user) { redirect({ href: `/user/${user.uid}/profile`, locale: locale }); } return (

登录

没有账户? 注册

); }