-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (71 loc) · 3.51 KB
/
Copy pathindex.html
File metadata and controls
71 lines (71 loc) · 3.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Deckard — Live-coding DAW for humans & AI agents</title>
<meta name="description" content="Deckard is a browser DAW where humans and LLM agents co-DJ by streaming deck — a line-oriented patch language decoded into live synthesised stems, never audio files." />
<link rel="canonical" href="https://deckard.lol/" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="en_US" />
<meta property="og:site_name" content="Deckard" />
<meta property="og:title" content="Deckard — Live-coding DAW for humans & AI agents" />
<meta property="og:description" content="Deckard is a browser DAW where humans and LLM agents co-DJ by streaming deck — a line-oriented patch language decoded into live synthesised stems, never audio files." />
<meta property="og:url" content="https://deckard.lol/" />
<meta property="og:image" content="https://deckard.lol/og.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt" content="Deckard — live-coding browser DAW with mint mixer accents" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@spacedevin" />
<meta name="twitter:title" content="Deckard — Live-coding DAW for humans & AI agents" />
<meta name="twitter:description" content="Deckard is a browser DAW where humans and LLM agents co-DJ by streaming deck — a line-oriented patch language decoded into live synthesised stems, never audio files." />
<meta name="twitter:image" content="https://deckard.lol/og.png" />
<meta name="twitter:image:alt" content="Deckard — live-coding browser DAW with mint mixer accents" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Deckard",
"url": "https://deckard.lol/",
"description": "Browser DAW where humans and LLM agents co-DJ by streaming deck — a line-oriented patch language decoded into live synthesised stems.",
"applicationCategory": "MultimediaApplication",
"operatingSystem": "Web",
"browserRequirements": "Requires JavaScript and Web Audio API",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"author": {
"@type": "Organization",
"name": "space.la",
"url": "https://space.la"
},
"image": "https://deckard.lol/og.png"
}
</script>
<link rel="icon" href="/favicon.svg" type="image/svg+xml" />
<link rel="icon" href="/favicon.ico" sizes="any" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="manifest" href="/site.webmanifest" />
<meta name="theme-color" content="#09090d" />
<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;600;700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="styles.css" />
<script src="/mespeak/mespeak.js"></script>
</head>
<body>
<div id="root">
<!-- Crawler / SEO fallback; replaced when the DAW mounts. -->
<header class="daw-header">
<div class="logo-col">
<h1 class="logo">Deckard</h1>
</div>
</header>
</div>
<script src="dist/bundle.js"></script>
</body>
</html>