-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html.tmpl
More file actions
67 lines (65 loc) · 3 KB
/
Copy pathindex.html.tmpl
File metadata and controls
67 lines (65 loc) · 3 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
<!DOCTYPE html>
<!-- Docs ROOT landing page (dist/index.html + dist/docs/index.html). NOT a Hugo
page: plain HTML with @@BASE@@/@@DEFAULT_VARIANT@@/@@BUILD@@ substituted by
the Makefile's `base` target (and copied from the canonical build by
build_versions.sh).
Reached by: PR previews (the click-through), and /docs/ hits that beat the
Cloudflare docs-root redirect. Since the root 404.html exists (DOC-1334
failure-surfaces slice) this page is ONLY a landing -- Pages no longer
serves it as the fallback for unknown paths, so it no longer needs to
apologize for being seen.
Styling is INLINE and self-contained on purpose: a root page must not
depend on per-variant hashed assets it cannot know the names of. -->
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="robots" content="noindex" />
<title>Union.ai Docs</title>
<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=Inter:wght@400;600;700&display=swap" rel="stylesheet">
<style>
/* Minimal local tokens mirroring base.css's palette (light + dark).
Kept tiny deliberately -- this page shows for seconds. */
:root {
--bg: #ffffff; --text: #131108; --text-2: #57534e;
--card: #fafaf9; --border: rgba(19, 17, 8, 0.12);
--accent: #b45309;
}
@media (prefers-color-scheme: dark) {
:root {
--bg: #09090b; --text: #f7f7f5; --text-2: #a8a29e;
--card: #131316; --border: rgba(247, 247, 245, 0.14);
--accent: #fcb51d;
}
}
html, body { height: 100%; margin: 0; }
body {
background: var(--bg); color: var(--text);
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
display: grid; place-items: center;
}
.card {
background: var(--card); border: 1px solid var(--border);
border-radius: 12px; padding: 2.5rem 3rem; text-align: center;
max-width: 26rem;
}
h1 { font-size: 1.375rem; font-weight: 700; margin: 0 0 0.5rem; letter-spacing: -0.01em; }
p { font-size: 0.9rem; color: var(--text-2); line-height: 1.6; margin: 0 0 1.5rem; }
a.button {
display: inline-block; background: var(--accent); color: var(--bg);
border-radius: 6px; padding: 0.55rem 1.1rem; text-decoration: none;
font-weight: 600; font-size: 0.9rem;
}
a.plain { color: var(--text-2); font-size: 0.8rem; text-decoration: underline; }
</style>
</head>
<body>
<div class="card">
<h1>Union.ai Docs</h1>
<p>Documentation for Union.ai and Flyte 2 — building, deploying and running agentic AI systems and data/ML pipelines.</p>
<a class="button" href="@@BASE@@/@@DEFAULT_VARIANT@@/">Open the documentation</a>
</div>
</body>
</html>