| 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>WANDA</title> |
| 7 | <style> |
| 8 | * { |
| 9 | margin: 0; |
| 10 | padding: 0; |
| 11 | box-sizing: border-box; |
| 12 | } |
| 13 | |
| 14 | body { |
| 15 | font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; |
| 16 | background-color: #1a1a2e; |
| 17 | color: #eaeaea; |
| 18 | min-height: 100vh; |
| 19 | } |
| 20 | |
| 21 | #root { |
| 22 | min-height: 100vh; |
| 23 | } |
| 24 | </style> |
| 25 | </head> |
| 26 | <body> |
| 27 | <div id="root"></div> |
| 28 | <script type="module" src="/src/main.tsx"></script> |
| 29 | </body> |
| 30 | </html> |