"use client" import { Button } from "@/components/ui/button" import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card" export default function LoginPage() { const handleLogin = () => { window.location.href = "/admin/api/auth" } return (
管理员登录
) }