- 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>
22 lines
619 B
TypeScript
22 lines
619 B
TypeScript
'use client';
|
|
|
|
import PrizeManagement from '@/components/admin/PrizeManagement';
|
|
|
|
export default function LotsPage() {
|
|
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 Lots & Prix
|
|
</h1>
|
|
<p className="text-gray-600 text-lg">
|
|
Gérez les lots et prix du jeu-concours
|
|
</p>
|
|
</div>
|
|
<div className="bg-white rounded-2xl shadow-md border border-gray-100">
|
|
<PrizeManagement />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|