File size: 641 Bytes
1cf3e52
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!doctype html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Manus Clone Interface</title>
  </head>
  <body class="bg-zinc-950 text-gray-100">
    <script>
      window.addEventListener('error', (e) => {
        if(e.target && e.target.src) {
          document.body.innerHTML = '<div style="color:white;background:red;padding:20px;"><h1>Failed to load resource</h1><p>' + e.target.src + '</p></div>';
        }
      }, true);
    </script>
    <div id="root"></div>
    <script type="module" src="/src/main.jsx"></script>
  </body>
</html>