<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8">

  <title>Pandaverse LLC</title>

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

</head>

<body>

  <h1>Pandaverse LLC</h1>

  <p>Educational technology tools for children and families.</p>


  <h2>Support</h2>

  <p>Email: <a href="mailto:support@hellopandaverse.com">support@hellopandaverse.com</a></p>


  <p>© <span id="year"></span> Pandaverse LLC</p>


  <script>

    document.getElementById("year").textContent = new Date().getFullYear();

  </script>

</body>

</html>