-
-
Notifications
You must be signed in to change notification settings - Fork 236
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (63 loc) · 3.14 KB
/
Copy pathindex.html
File metadata and controls
66 lines (63 loc) · 3.14 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>dstack — The orchestration stack for AI infrastructure</title>
<meta
name="description"
content="dstack is a unified control plane for GPU provisioning and orchestration that works with any GPU cloud, Kubernetes, or on-prem clusters."
/>
<link rel="canonical" href="https://dstack.ai/" />
<!-- Favicon is served by MkDocs at /assets/... on the same origin. -->
<link rel="icon" href="/assets/images/dstack-fav-32.ico" />
<!-- Apply the saved light/dark choice before first paint, so theme-aware UI (e.g. the header
theme toggle) renders in its final state instead of animating from the default once
theme.ts's effect runs. Mirrors the dstack-theme key written by theme.ts. -->
<script>
try {
document.documentElement.dataset.theme =
localStorage.getItem('dstack-theme') === 'dark' ? 'dark' : 'light';
} catch (e) {}
</script>
<!-- Open Graph / Twitter. The social image is the card MkDocs' social plugin generates
for the home page (assets/images/social/index.png); absolute URLs are required by
social scrapers. -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://dstack.ai/" />
<meta property="og:title" content="dstack — The orchestration stack for AI infrastructure" />
<meta
property="og:description"
content="dstack is a unified control plane for GPU provisioning and orchestration that works with any GPU cloud, Kubernetes, or on-prem clusters."
/>
<meta property="og:image" content="https://dstack.ai/assets/images/social/index.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="dstack — The orchestration stack for AI infrastructure" />
<meta
name="twitter:description"
content="dstack is a unified control plane for GPU provisioning and orchestration that works with any GPU cloud, Kubernetes, or on-prem clusters."
/>
<meta name="twitter:image" content="https://dstack.ai/assets/images/social/index.png" />
<!-- Google Analytics (GA4) — same property as the docs/blog (mkdocs.yml). Skipped on
localhost so local dev doesn't send hits to the production property. -->
<script>
if (location.hostname !== 'localhost' && location.hostname !== '127.0.0.1') {
var s = document.createElement('script');
s.async = true;
s.src = 'https://www.googletagmanager.com/gtag/js?id=G-JX21114P7B';
document.head.appendChild(s);
window.dataLayer = window.dataLayer || [];
window.gtag = function () { dataLayer.push(arguments); };
gtag('js', new Date());
gtag('config', 'G-JX21114P7B');
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>