/** * Admin Dashboard Page * Displays admin statistics and management options * Protected by AuthGuard in layout with requireAdmin=true */ /* istanbul ignore next - Next.js type import for metadata */ import type { Metadata } from 'next'; import Link from 'next/link'; import { DashboardStats } from '@/components/admin'; import { Users, Building2, Settings } from 'lucide-react'; /* istanbul ignore next - Next.js metadata, not executable code */ export const metadata: Metadata = { title: 'Admin Dashboard', }; export default function AdminPage() { return (
Manage users, organizations, and system settings
View, create, and manage user accounts
Manage organizations and their members
Configure system-wide settings