<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8" />

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

  <title>Ops Manager</title>

  <style>

    html, body {

      height: 100%;

      margin: 0;

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

      background: #0F181B;

      color: #FFFFFF;

    }

    .wrap {

      height: 100%;

      display: flex;

      flex-direction: column;

      align-items: center;

      justify-content: center;

      text-align: center;

      padding: 24px;

    }

    h1 { font-size: 28px; font-weight: 600; margin: 0 0 8px; }

    p { color: #9AA5AB; margin: 0; }

  </style>

</head>

<body>

  <div class="wrap">

    <h1>Ops Manager</h1>

    <p>Coming soon.</p>

  </div>

</body>

</html>