<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Site Under Construction</title>

    <style>

        body {

            font-family: 'Arial', sans-serif;

            background-color: #f4f4f9;

            color: #333;

            text-align: center;

            padding: 80px 20px;

            margin: 0;

        }

        .logo {

            max-width: 180px;

            height: auto;

            margin-bottom: 20px;

        }

        h1 {

            font-size: 3rem;

            color: #2c3e50;

            margin-bottom: 10px;

        }

        p {

            font-size: 1.2rem;

            color: #7f8c8d;

            max-width: 600px;

            margin: 0 auto 30px;

        }

        .contact-box {

            background: #fff;

            padding: 20px 30px;

            border-radius: 8px;

            box-shadow: 0 4px 6px rgba(0,0,0,0.1);

            display: inline-block;

        }

    </style>

</head>

<body>

    <!-- Replace logo.png with your image file path -->

    <img src=“zeke.jpg” alt="Company Logo" class="logo">

    

    <h1>We're Launching Soon!</h1>

    <p>Our website is currently under construction. We are working hard to bring you an amazing experience and will be live shortly.</p>

    

    <div class="contact-box">

        <p>In the meantime, you can reach us at:<br>

        <strong>info@zekebaillie.com</strong></p>

    </div>

</body>

</html>