'use client'; import { useAuth } from '@/providers/auth-provider'; import { UserProfile } from '@/components/user-profile'; import { LoginButton } from '@/components/login-button'; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@repo/ui/components/card'; import { Badge } from '@repo/ui/components/badge'; import { Separator } from '@repo/ui/components/separator'; import { Shield, Key, Users, CheckCircle, Info } from 'lucide-react'; export default function HomePage() { const { isAuthenticated, isLoading, error } = useAuth(); return (
演示账户信息:
用户名: demouser
密码: demo123