index.html
939 bytes
| 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 | <title>VoiceTask</title> |
| 7 | <link |
| 8 | rel="icon" |
| 9 | href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ccircle cx='16' cy='16' r='13' fill='%234856e8'/%3E%3Crect x='11' y='12' width='2.6' height='7' rx='1.3' fill='white'/%3E%3Crect x='18.4' y='12' width='2.6' height='7' rx='1.3' fill='white'/%3E%3C/svg%3E" |
| 10 | /> |
| 11 | <link rel="preconnect" href="https://fonts.googleapis.com" /> |
| 12 | <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> |
| 13 | <link |
| 14 | href="https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400..700&family=Sora:wght@500..800&display=swap" |
| 15 | rel="stylesheet" |
| 16 | /> |
| 17 | </head> |
| 18 | <body> |
| 19 | <div id="root"></div> |
| 20 | <script type="module" src="/src/main.tsx"></script> |
| 21 | </body> |
| 22 | </html> |
| 23 | |