-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (69 loc) · 2.8 KB
/
Copy pathindex.html
File metadata and controls
69 lines (69 loc) · 2.8 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="canonical" href="https://stack-diagram.com/" />
<link rel="describedby" href="/llms.txt" />
<meta name="color-scheme" content="light dark" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="__STACK_DESCRIPTION_HTML__" />
<meta name="robots" content="index, follow, max-image-preview:large" />
<meta name="theme-color" content="#111111" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Stack" />
<meta property="og:title" content="Stack" />
<meta property="og:description" content="__STACK_DESCRIPTION_HTML__" />
<meta property="og:url" content="https://stack-diagram.com/" />
<meta property="og:image" content="https://stack-diagram.com/ogp.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="Stack" />
<meta property="og:locale" content="en_US" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Stack" />
<meta name="twitter:description" content="__STACK_DESCRIPTION_HTML__" />
<meta name="twitter:image" content="https://stack-diagram.com/ogp.png" />
<meta name="twitter:image:alt" content="Stack" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Stack",
"description": "__STACK_DESCRIPTION_JSON__",
"url": "https://stack-diagram.com/",
"image": "https://stack-diagram.com/ogp.png",
"applicationCategory": "DeveloperApplication",
"operatingSystem": "Any",
"browserRequirements": "Requires JavaScript and WebAssembly",
"isAccessibleForFree": true,
"offers": {
"@type": "Offer",
"price": 0,
"priceCurrency": "USD"
}
}
</script>
<title>Stack</title>
<script>
;(() => {
let savedMode = null
try {
savedMode = localStorage.getItem("stack-color-mode")
} catch {
// Use the system preference when storage is unavailable.
}
const useDark =
savedMode === "dark" ||
(savedMode !== "light" && window.matchMedia("(prefers-color-scheme: dark)").matches)
document.documentElement.classList.toggle("dark", useDark)
document.documentElement.style.colorScheme = useDark ? "dark" : "light"
})()
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>