-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (52 loc) · 2.71 KB
/
Copy pathindex.html
File metadata and controls
56 lines (52 loc) · 2.71 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>OpenClaw Hub Runtime</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="min-h-screen bg-[#050B14] text-[#D9F7FF] antialiased">
<main class="compatibility-entry mx-auto flex min-h-screen max-w-3xl flex-col items-center justify-center px-6 text-center">
<div class="rounded-3xl border border-[#00f3ff]/15 bg-[#08101a]/55 p-10 shadow-[0_0_28px_rgba(0,243,255,0.08)] backdrop-blur-xl">
<p class="mb-3 font-mono text-[11px] uppercase tracking-[0.28em] text-[#5D7385]">OpenClaw Hub Runtime</p>
<h1 class="text-3xl font-semibold tracking-[0.08em] text-[#D9F7FF]">J.A.R.V.I.S. HUD 已迁移到独立入口</h1>
<p class="mt-4 text-base leading-7 text-[#8CA3B3]">
根入口现在仅作为兼容壳使用。几秒后将自动跳转到新的独立 Hub 应用。
</p>
<div class="mt-8 grid gap-4 text-left sm:grid-cols-2">
<a
href="./apps/jarvis-hub/index.html"
class="rounded-2xl border border-[#00f3ff]/15 bg-[#00f3ff]/[0.05] px-5 py-4 transition hover:border-[#00f3ff]/30 hover:shadow-[0_0_14px_rgba(0,243,255,0.12)]"
>
<p class="font-mono text-[10px] uppercase tracking-[0.24em] text-[#5D7385]">Primary Entry</p>
<h2 class="mt-2 text-lg font-semibold text-[#D9F7FF]">J.A.R.V.I.S. HUD</h2>
<p class="mt-2 text-sm leading-6 text-[#8CA3B3]">
新的主入口,包含实时聊天、诊断面板、重连、自愈与海报模式。
</p>
<p class="mt-3 font-mono text-xs text-[#00F3FF]">./apps/jarvis-hub/index.html</p>
</a>
<a
href="http://127.0.0.1:18789/"
class="rounded-2xl border border-white/10 bg-white/[0.03] px-5 py-4 transition hover:border-white/20 hover:shadow-[0_0_14px_rgba(255,255,255,0.05)]"
>
<p class="font-mono text-[10px] uppercase tracking-[0.24em] text-[#5D7385]">Original OpenClaw</p>
<h2 class="mt-2 text-lg font-semibold text-[#D9F7FF]">原版完整后台</h2>
<p class="mt-2 text-sm leading-6 text-[#8CA3B3]">
保留所有原版能力与完整控制面板,用于配置、日志、会话与频道管理。
</p>
<p class="mt-3 font-mono text-xs text-[#D9F7FF]">http://127.0.0.1:18789/</p>
</a>
</div>
<p class="mt-8 font-mono text-[11px] uppercase tracking-[0.2em] text-[#5D7385]">
正在跳转到新的 J.A.R.V.I.S. Hub…
</p>
</div>
</main>
<script>
window.setTimeout(() => {
window.location.href = './apps/jarvis-hub/index.html';
}, 1800);
</script>
</body>
</html>