| 123456789101112131415161718192021222324 |
- <!-- public/maintenance.html -->
- <!DOCTYPE html>
- <html>
- <head>
- <title>Site en maintenance</title>
- <style>
- body {
- font-family: Arial, sans-serif;
- text-align: center;
- padding: 50px;
- }
- h1 {
- color: #333;
- }
- p {
- color: #666;
- }
- </style>
- </head>
- <body>
- <h1>Site en maintenance</h1>
- <p>Notre site est actuellement en maintenance. Veuillez revenir plus tard.</p>
- </body>
- </html>
|