the-tip-top-frontend/app/admin/tickets/page.tsx
soufiane f20cf40fff feat: redesign admin panel with blanc cassé theme
- 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>
2025-12-03 19:43:14 +01:00

26 lines
957 B
TypeScript

"use client";
import TicketManagement from "@/components/admin/TicketManagement";
import { Ticket } from "lucide-react";
export default function AdminTicketsPage() {
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-emerald-600 to-teal-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">
<Ticket className="w-7 h-7 text-white" />
</div>
<div>
<h1 className="text-3xl font-bold text-white">Gestion des Tickets</h1>
<p className="text-emerald-200">Consultez et gérez tous les tickets du jeu-concours</p>
</div>
</div>
</div>
<div className="bg-white rounded-2xl shadow-md border border-gray-100">
<TicketManagement />
</div>
</div>
);
}