-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (68 loc) · 3.32 KB
/
index.html
File metadata and controls
72 lines (68 loc) · 3.32 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="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="manifest" href="/manifest.json" />
<link rel="apple-touch-icon" href="/icon-192.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Live Music Coder — Write Code, Hear Music, Live</title>
<meta name="description" content="Browser-based live coding music IDE. Write code, hear music instantly. 4 audio engines, visual node graph, real-time visualizers, and instant code sharing. Free, no install." />
<!-- Canonical URL handled dynamically per page (SPA) -->
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Live Music Coder — Write Code, Hear Music, Live" />
<meta property="og:description" content="A browser-based IDE where you write code and hear music in real time. 4 audio engines, visual node graph, real-time visualizers, and instant code sharing." />
<meta property="og:url" content="https://live-music-coder.pro" />
<meta property="og:site_name" content="Live Music Coder" />
<meta property="og:locale" content="en_US" />
<meta property="og:locale:alternate" content="de_DE" />
<meta property="og:locale:alternate" content="es_ES" />
<meta property="og:image" content="https://live-music-coder.pro/og-image.png" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Live Music Coder — Write Code, Hear Music, Live" />
<meta name="twitter:description" content="Browser-based live coding music IDE. 4 engines, visual node graph, real-time visualizers, instant sharing." />
<meta name="twitter:image" content="https://live-music-coder.pro/og-image.png" />
<!-- Additional SEO -->
<meta name="author" content="Wender Media" />
<meta name="robots" content="index, follow" />
<meta name="theme-color" content="#a855f7" />
<!-- JSON-LD structured data: WebApplication -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Live Music Coder",
"description": "Browser-based live coding music IDE. Write code, hear music instantly. 4 audio engines, visual node graph, real-time visualizers, and instant code sharing.",
"url": "https://live-music-coder.pro",
"applicationCategory": "MultimediaApplication",
"operatingSystem": "Any",
"browserRequirements": "Requires a modern browser with Web Audio API support",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"author": {
"@type": "Organization",
"name": "Wender Media",
"url": "https://wendermedia.com"
},
"inLanguage": ["en", "de", "es"],
"featureList": [
"4 audio engines (Strudel, Tone.js, Web Audio API, MIDI)",
"Visual node graph with bidirectional code sync",
"Real-time waveform and spectrum visualizers",
"Instant code sharing via URL and GitHub Gist",
"Audio recording and export",
"No installation required"
]
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>