index.html 1.2 KB

1234567891011121314151617181920212223242526272829303132
  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" />
  6. <!-- The following node will be replaced by Optimize init script during Vite's build step (see ../plugins) -->
  7. <optimize-script />
  8. <!-- The following node will be replaced by meta tags (including <title>) generated during Vite's build step (see ../plugins) -->
  9. <meta-tags />
  10. <!-- favicon and theme colors -->
  11. <link rel="icon" href="/favicon.ico" sizes="any" />
  12. <link rel="icon" href="/icon.svg" type="image/svg+xml" />
  13. <link rel="manifest" href="/manifest.webmanifest" />
  14. <meta name="theme-color" content="#000" />
  15. <!-- fonts imports -->
  16. <link rel="preconnect" href="https://fonts.googleapis.com" />
  17. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
  18. <link
  19. href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@600;700&family=Roboto:wght@400&family=Inter:wght@400;500;600;700&display=swap"
  20. rel="stylesheet"
  21. />
  22. </head>
  23. <body>
  24. <noscript>You need to enable JavaScript to run this app.</noscript>
  25. <div id="root"></div>
  26. <script type="module" src="./main.tsx"></script>
  27. </body>
  28. </html>