index.html 931 B

1234567891011121314151617181920212223
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <link rel="preconnect" href="https://fonts.googleapis.com" />
  7. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
  8. <link
  9. href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Orbitron:[email protected]&display=swap"
  10. rel="stylesheet"
  11. />
  12. <link rel="icon" href="/src/assets/favicon.svg" type="image/svg+xml" />
  13. <title>GB Cam Lab</title>
  14. <script>
  15. const mode = localStorage.getItem("mui-mode") || "light";
  16. document.documentElement.classList.add(mode);
  17. </script>
  18. </head>
  19. <body>
  20. <div id="root"></div>
  21. <script type="module" src="/src/main.jsx"></script>
  22. </body>
  23. </html>