Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | export default function PlaceholderPage({ title, description }) { return ( <div className="space-y-6"> <div> <h2 className="text-2xl font-bold text-gray-900">{title}</h2> <p className="text-gray-600">{description}</p> </div> <div className="bg-white rounded-lg shadow p-12 text-center"> <div className="w-16 h-16 bg-indigo-100 rounded-full flex items-center justify-center mx-auto mb-4"> <svg className="w-8 h-8 text-indigo-600" fill="none" stroke="currentColor" viewBox="0 0 24 24"> <path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M13 10V3L4 14h7v7l9-11h-7z" /> </svg> </div> <h3 className="text-lg font-medium text-gray-900 mb-2">En développement</h3> <p className="text-gray-500 max-w-md mx-auto"> Cette section du backoffice est en cours de développement. Consultez le tableau de bord principal pour accéder aux fonctionnalités disponibles. </p> </div> </div> ); } |