cyb/public/splashscreen.html

<html>
  <style>
    body {
      margin: 0;
      padding: 0;
      font-family: 'Play';
      width: 100vw;
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      background-color: black;
      color: white;
    }

    @font-face {
      font-family: 'Play';
      src: url('fonts/Play-Regular.ttf');
      font-weight: 400;
      font-style: normal;
    }

  </style>
  <body>
    <img src="images/robot.svg" />
    <h4>CYB.AI</h4>
    <div id="message"></div>
    <script>
      window.updateSplashMessage = (text) => {
        document.getElementById('message').innerText = text;
      };
    </script>
  </body>
</html>

Neighbours