index.html (view raw)
1<!DOCTYPE html>
2<html lang="en">
3 <head>
4 <meta charset="UTF-8" />
5 <link rel="icon" type="image/svg+xml" href="/favicon.svg" />
6 <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7 <meta name="theme-color" content="#2c3e50" />
8 <meta name="description" content="A fun clicker game where you click, upgrade, and prestige!" />
9 <title>Clicker Game</title>
10
11 <!-- PWA Meta Tags -->
12 <link rel="manifest" href="/manifest.json" />
13 <link rel="apple-touch-icon" href="/icons/icon-192x192.png" />
14 </head>
15 <body>
16 <div id="root"></div>
17 <script type="module" src="/src/main.tsx"></script>
18 </body>
19</html>