- Add gradient backgrounds and modern styling to all admin pages - Add Statut des Tickets donut chart - Add Types d'Utilisateurs donut chart - Update headers and card containers with consistent design 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
23 lines
682 B
TypeScript
23 lines
682 B
TypeScript
"use client";
|
|
|
|
import UserManagement from "@/components/admin/UserManagement";
|
|
import { Users } from "lucide-react";
|
|
|
|
export default function AdminUtilisateursPage() {
|
|
return (
|
|
<div className="min-h-full bg-gradient-to-br from-gray-50 via-white to-gray-50 p-8">
|
|
<div className="mb-8">
|
|
<h1 className="text-4xl font-bold text-[#1e3a5f] mb-2">
|
|
Gestion des utilisateurs
|
|
</h1>
|
|
<p className="text-gray-600 text-lg">
|
|
Gérez tous les comptes utilisateurs de la plateforme
|
|
</p>
|
|
</div>
|
|
<div className="bg-white rounded-2xl shadow-md border border-gray-100">
|
|
<UserManagement />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|