- Vite 6 + TypeScript + Biome + Vitest configured - All directories from spec section 13 created - CSS custom properties for full color palette and finger colors - index.html with 5 screen sections and Google Fonts - Dev server binds to 0.0.0.0:5173 for VPS access Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
24 lines
843 B
HTML
24 lines
843 B
HTML
<!doctype html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Zauberwald</title>
|
|
<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=Quicksand:wght@400;600;700&family=Nunito:wght@400;600&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
</head>
|
|
<body>
|
|
<section id="screen-welcome" class="screen screen--active"></section>
|
|
<section id="screen-forest" class="screen"></section>
|
|
<section id="screen-lesson" class="screen"></section>
|
|
<section id="screen-reward" class="screen"></section>
|
|
<section id="screen-parent" class="screen"></section>
|
|
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|