- Update sidebar and header with off-white (#faf8f5) background - Add ticket stats endpoint integration for global counts - Redesign tirages page with animation and improved layout - Add red accent color for admin avatar - Update various button styles and remove unnecessary elements 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
26 lines
956 B
TypeScript
26 lines
956 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="bg-gradient-to-r from-blue-600 to-indigo-600 rounded-2xl p-6 mb-8">
|
|
<div className="flex items-center gap-4">
|
|
<div className="w-14 h-14 bg-white/20 rounded-xl flex items-center justify-center">
|
|
<Users className="w-7 h-7 text-white" />
|
|
</div>
|
|
<div>
|
|
<h1 className="text-3xl font-bold text-white">Gestion des Utilisateurs</h1>
|
|
<p className="text-blue-200">Gérez tous les comptes utilisateurs de la plateforme</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="bg-white rounded-2xl shadow-md border border-gray-100">
|
|
<UserManagement />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|