-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (72 loc) · 3.68 KB
/
Copy pathindex.html
File metadata and controls
76 lines (72 loc) · 3.68 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
73
74
75
76
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#2563eb" />
<!-- Primary SEO -->
<title>Drumforge — Free Drum Exercises with Notation, BPM Control & Timer</title>
<meta name="description" content="Free, browser-based drum exercise trainer with synchronized scrolling notation, configurable BPM, randomization, and a built-in timer. Practice classics like the Double Bass Pyramid. No login, no subscription." />
<meta name="keywords" content="drum exercises, drum practice, double bass pyramid, drum trainer, online drum lessons, drum notation, BPM trainer, double bass drumming, drumming practice, free drum app" />
<meta name="author" content="Narek Ghevandiani" />
<link rel="canonical" href="https://drumforge.app/" />
<meta name="robots" content="index, follow" />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Drumforge" />
<meta property="og:title" content="Drumforge — Free Drum Exercises with Notation & Timer" />
<meta property="og:description" content="Practice drum exercises in your browser with synced notation, BPM control, randomization, and a built-in timer. Free, no login." />
<meta property="og:url" content="https://drumforge.app/" />
<meta property="og:image" content="https://drumforge.app/og-image.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:locale" content="en_US" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Drumforge — Free Drum Exercises in your Browser" />
<meta name="twitter:description" content="Drum practice with synced notation, BPM control, randomization, and a timer. Free." />
<meta name="twitter:image" content="https://drumforge.app/og-image.png" />
<!-- Structured data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Drumforge",
"description": "Free, browser-based drum exercise trainer with synchronized notation, BPM control, randomization, and a built-in timer.",
"url": "https://drumforge.app/",
"applicationCategory": "MusicApplication",
"operatingSystem": "Web",
"browserRequirements": "Requires JavaScript and a modern browser with Web Audio support",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"author": {
"@type": "Person",
"name": "Narek Ghevandiani"
}
}
</script>
<script>
// Apply theme before React mounts to avoid a flash of light content.
(function () {
try {
var stored = localStorage.getItem('drumforge-theme');
var prefersDark =
window.matchMedia &&
window.matchMedia('(prefers-color-scheme: dark)').matches;
var theme = stored || (prefersDark ? 'dark' : 'light');
if (theme === 'dark') document.documentElement.classList.add('dark');
} catch (e) {}
})();
</script>
</head>
<body class="bg-white text-gray-900 dark:bg-gray-950 dark:text-gray-100">
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>