-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (38 loc) · 1.44 KB
/
Copy pathindex.html
File metadata and controls
38 lines (38 loc) · 1.44 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Miniscript Visualizer</title>
<meta
name="description"
content="Design Bitcoin spending policies visually: build conditions, see the diagram, get the Miniscript, policy and descriptor instantly."
/>
<meta name="theme-color" content="#f2f1ec" />
<link rel="icon" type="image/png" href="/favicon.png" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<meta property="og:title" content="Miniscript Visualizer" />
<meta property="og:image" content="/logo.png" />
<meta
property="og:description"
content="Design Bitcoin spending policies visually: build conditions, see the diagram, get the Miniscript, policy and descriptor instantly."
/>
<meta property="og:type" content="website" />
<script>
// Apply the saved theme before first paint to avoid a flash.
try {
var t = localStorage.getItem('msv-theme')
if (t !== 'light' && t !== 'dark') {
t = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light'
}
document.documentElement.dataset.theme = t
} catch (e) {
document.documentElement.dataset.theme = 'light'
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>