<!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Maintenance | EcoStreet</title>
        <style>
            body {
                font-family: Arial, sans-serif;
                background-color: #f4f4f4;
                color: #333;
                display: flex;
                justify-content: center;
                align-items: center;
                height: 100vh;
                margin: 0;
            }
            .container {
                text-align: center;
                background: #fff;
                padding: 20px;
                border-radius: 10px;
                box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            }
            h1 {
                color: #4CAF50;
            }
            p {
                font-size: 18px;
            }
            .logo {
                width: 100px;
                margin-bottom: 20px;
            }
        </style>
    </head>
    <body>
        <div class="container">
            <img src="logo.png" alt="EcoStreet Logo" class="logo">
            <h1>We'll be back soon!</h1>
            <p>Sorry for the inconvenience but we're performing some maintenance at the moment. We'll be back online shortly!</p>
            <p>&mdash; The EcoStreet Team</p>
        </div>
    </body>
    </html>