- 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
931 B
TypeScript
26 lines
931 B
TypeScript
'use client';
|
|
|
|
import PrizeManagement from '@/components/admin/PrizeManagement';
|
|
import { Gift } from 'lucide-react';
|
|
|
|
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="bg-gradient-to-r from-purple-600 to-pink-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">
|
|
<Gift className="w-7 h-7 text-white" />
|
|
</div>
|
|
<div>
|
|
<h1 className="text-3xl font-bold text-white">Gestion des Lots & Prix</h1>
|
|
<p className="text-purple-200">Gérez les lots et prix du jeu-concours</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="bg-white rounded-2xl shadow-md border border-gray-100">
|
|
<PrizeManagement />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|