-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (64 loc) · 2.83 KB
/
index.html
File metadata and controls
72 lines (64 loc) · 2.83 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!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="TypeCraft - Professionelles Tastatur- und Code-Training für das 10-Finger-System mit progressiven Lektionen, Echtzeit-Feedback und Code-Modus für Programmierer."
/>
<meta name="theme-color" content="#a855f7" />
<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="TypeCraft" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="application-name" content="TypeCraft" />
<meta name="msapplication-TileColor" content="#0D1117" />
<meta name="msapplication-config" content="/browserconfig.xml" />
<title>TypeCraft - Professionelles Tastatur- und Code-Training</title>
<!-- Open Graph -->
<meta property="og:title" content="TypeCraft - Typing & Code Training for Programmers" />
<meta
property="og:description"
content="Professional typing trainer with code playground, Git/Vim/SQL training, gamification, and spaced repetition."
/>
<meta property="og:type" content="website" />
<meta property="og:image" content="/icons/icon-512x512.png" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="TypeCraft" />
<meta
name="twitter:description"
content="The ultimate typing trainer for programmers — code playground, shortcuts, gamification."
/>
<!-- 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="#a855f7" />
<!-- 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>