1234567891011121314151617181920212223242526272829303132 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1" />
- <!-- The following node will be replaced by Optimize init script during Vite's build step (see ../plugins) -->
- <optimize-script />
- <!-- The following node will be replaced by meta tags (including <title>) generated during Vite's build step (see ../plugins) -->
- <meta-tags />
- <!-- favicon and theme colors -->
- <link rel="icon" href="/favicon.ico" sizes="any" />
- <link rel="icon" href="/icon.svg" type="image/svg+xml" />
- <link rel="manifest" href="/manifest.webmanifest" />
- <meta name="theme-color" content="#000" />
- <!-- fonts imports -->
- <link rel="preconnect" href="https://fonts.googleapis.com" />
- <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
- <link
- 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"
- rel="stylesheet"
- />
- </head>
- <body>
- <noscript>You need to enable JavaScript to run this app.</noscript>
- <div id="root"></div>
- <script type="module" src="./main.tsx"></script>
- </body>
- </html>
|