-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (63 loc) · 2.55 KB
/
index.html
File metadata and controls
68 lines (63 loc) · 2.55 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
<!doctype html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-QMTBHSTQZ6"></script>
<script>
window.dataLayer = window.dataLayer || []
function gtag() {
dataLayer.push(arguments)
}
gtag('js', new Date())
gtag('config', 'G-QMTBHSTQZ6')
</script>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="UTF-8" />
<!-- Primary SEO -->
<meta
name="description"
content="KeyBurst — a lightweight, client-first typing trainer with easy sharing and internationalization. Generate shareable result images and deep-link results without a backend."
/>
<meta
name="keywords"
content="typing, typing test, typing trainer, WPM, keyburst, shareable results, javascript, vue"
/>
<meta name="author" content="Bassel Aflak" />
<meta name="robots" content="index, follow" />
<link rel="icon" href="/favicon.ico" />
<!-- Social / Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:title" content="KeyBurst — Typing Trainer & Shareable Results" />
<meta
property="og:description"
content="A fast, client-first typing trainer built with Vue 3. Generate shareable PNG results, compressed deep-links, and multi-language support."
/>
<!-- Replace /og-image.png with a real image in public/ for rich previews -->
<meta property="og:image" content="/og-image.png" />
<meta property="og:locale" content="en_US" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="KeyBurst — Typing Trainer & Shareable Results" />
<meta
name="twitter:description"
content="A fast, client-first typing trainer built with Vue 3. Generate shareable PNG results, compressed deep-links, and multi-language support."
/>
<meta name="twitter:image" content="/og-image.png" />
<!-- Theme / mobile -->
<meta name="theme-color" content="#0b1724" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
/>
<link
href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&family=Inter:wght@300;400;600;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./src/main.css" />
<title>KeyBurst</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="./src/main.ts"></script>
</body>
</html>