-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (49 loc) · 2.15 KB
/
index.html
File metadata and controls
55 lines (49 loc) · 2.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!doctype html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="KeyboardWriter - Professionelles Keyboard-Trainer-Tool für das 10-Finger-System mit progressiven Lektionen, Echtzeit-Feedback und Code-Modus für Programmierer."
/>
<meta name="theme-color" content="#58A6FF" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-title" content="KeyboardWriter" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="application-name" content="KeyboardWriter" />
<meta name="msapplication-TileColor" content="#0D1117" />
<meta name="msapplication-config" content="/browserconfig.xml" />
<title>KeyboardWriter - Professionelles Tastatur-Training</title>
<!-- PWA Manifest -->
<link rel="manifest" href="/manifest.json" />
<!-- Favicons -->
<link rel="icon" type="image/svg+xml" href="/icons/icon.svg" />
<link rel="icon" type="image/png" sizes="32x32" href="/icons/icon.svg" />
<link rel="icon" type="image/png" sizes="16x16" href="/icons/icon.svg" />
<link rel="apple-touch-icon" href="/icons/icon.svg" />
<link rel="mask-icon" href="/icons/icon.svg" color="#58A6FF" />
<!-- Fonts -->
<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=JetBrains+Mono:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
<!-- Styles -->
<link rel="stylesheet" href="/src/styles/main.css" />
<!-- Preload critical resources -->
<link
rel="preload"
as="font"
type="font/woff2"
href="https://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxjPVmUsaaDhw.woff2"
crossorigin
/>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>