index.html 1.1 KB

1234567891011121314151617181920212223242526272829
  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 meta tags (including <title>) generated during Vite's build step (see ../plugins) -->
  7. <meta-tags />
  8. <!-- favicon and theme colors -->
  9. <link rel="icon" href="/favicon.ico" sizes="any" />
  10. <link rel="icon" href="/icon.svg" type="image/svg+xml" />
  11. <link rel="manifest" href="/manifest.webmanifest" />
  12. <meta name="theme-color" content="#000" />
  13. <!-- fonts imports -->
  14. <link rel="preconnect" href="https://fonts.googleapis.com" />
  15. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
  16. <link
  17. 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"
  18. rel="stylesheet"
  19. />
  20. </head>
  21. <body>
  22. <noscript>You need to enable JavaScript to run this app.</noscript>
  23. <div id="root"></div>
  24. <script type="module" src="./main.tsx"></script>
  25. </body>
  26. </html>