maintenance.html 473 B

123456789101112131415161718192021222324
  1. <!-- public/maintenance.html -->
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5. <title>Site en maintenance</title>
  6. <style>
  7. body {
  8. font-family: Arial, sans-serif;
  9. text-align: center;
  10. padding: 50px;
  11. }
  12. h1 {
  13. color: #333;
  14. }
  15. p {
  16. color: #666;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <h1>Site en maintenance</h1>
  22. <p>Notre site est actuellement en maintenance. Veuillez revenir plus tard.</p>
  23. </body>
  24. </html>