<!DOCTYPE html>

<html>

<head>

  <title>Coming Soon</title>

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

  <style>

    body {

      font-family: -apple-system, BlinkMacSystemFont, sans-serif;

      background: #0f172a;

      color: white;

      height: 100vh;

      display: flex;

      align-items: center;

      justify-content: center;

      margin: 0;

      text-align: center;

    }

    h1 { font-size: 3rem; margin-bottom: 10px; }

    p { color: #94a3b8; }

  </style>

</head>

<body>

  <div>

    <h1>Coming Soon 🚀</h1>

    <p>Something awesome is on the way.</p>

  </div>

</body>

</html>