-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (84 loc) · 4.93 KB
/
Copy pathindex.html
File metadata and controls
91 lines (84 loc) · 4.93 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!doctype html>
<html lang="zh-CN" class="v-legacy">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- 站点绝对地址:og:image / canonical 都必须是绝对 URL,
相对路径在微信、Slack、Twitter 的抓取器里一律失效 -->
<link rel="canonical" href="https://tuojingai.github.io/" />
<meta name="robots" content="index, follow, max-image-preview:large" />
<!-- 浅色底给淡蓝,深色模式给深 navy,避免系统深色下顶栏刺眼 -->
<meta name="theme-color" media="(prefers-color-scheme: light)" content="#F7FAFC" />
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#0B2B49" />
<meta name="color-scheme" content="light" />
<link rel="icon" href="/favicon.ico" sizes="any" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16.png" />
<!-- iOS 会把透明区域填黑,所以这一张单独铺了站点画布色 -->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<meta name="apple-mobile-web-app-title" content="拓境智能" />
<meta name="application-name" content="拓境智能" />
<meta name="author" content="拓境智能 Tuojing Intelligence" />
<meta
name="description"
content="拓境智能是一家面向 Physical World AI 的公司。我们围绕空间智能与物理智能构建基础设施:重建、生成、行动、评测。四个开源项目覆盖 4D 场景重建、世界模型反事实推理、3D 高斯操作策略与可形变物体的视触觉评测。"
/>
<meta
name="keywords"
content="拓境智能, Tuojing Intelligence, Physical AI, 空间智能, 世界模型, 机器人操作, 视触觉, 可形变物体, 高斯泼溅, real2sim2real"
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://tuojingai.github.io/" />
<meta property="og:locale" content="zh_CN" />
<meta property="og:site_name" content="拓境智能 Tuojing Intelligence" />
<meta property="og:title" content="拓境智能 — 拓展智能边界,连接数字世界与物理世界" />
<meta
property="og:description"
content="面向 Physical World AI 的基础设施:让机器先看懂真实世界的几何与场景,再理解接触、力与形变如何运转,最终在真实世界中可靠地行动。"
/>
<meta property="og:image" content="https://tuojingai.github.io/og.jpg" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt" content="拓境智能 Tuojing Intelligence" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="拓境智能 — 拓展智能边界,连接数字世界与物理世界" />
<meta
name="twitter:description"
content="面向 Physical World AI 的基础设施:重建、生成、行动、评测。"
/>
<meta name="twitter:image" content="https://tuojingai.github.io/og.jpg" />
<!-- 结构化数据:让搜索引擎和 AI 抓取器认出这是一个组织实体,
而不是只读到一堆标签。sameAs 只列真实存在的账号。 -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "拓境智能",
"alternateName": "Tuojing Intelligence",
"url": "https://tuojingai.github.io/",
"logo": "https://tuojingai.github.io/favicon.png",
"description": "面向 Physical World AI 的公司,围绕空间智能与物理智能构建重建、生成、行动、评测的基础设施。",
"email": "yuhaibao94@gmail.com",
"address": { "@type": "PostalAddress", "addressLocality": "北京", "addressCountry": "CN" },
"sameAs": ["https://github.com/TuojingAI"]
}
</script>
<!-- Manrope 走拉丁、Noto Sans SC 走中文(同 rimbot 的 --family / --family-en 双栈思路)。
中文只取 400/500/700/900 四档,避免整包体积。 -->
<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=Source+Serif+4:ital,opsz,wght@0,8..60,400;1,8..60,400&family=Manrope:wght@200;300;400;500;600;700&family=Noto+Sans+SC:wght@300;400;500;600;700;900&display=swap"
rel="stylesheet"
/>
<title>拓境智能 Tuojing Intelligence — 拓展智能边界,连接数字世界与物理世界</title>
</head>
<body>
<!-- 在 CSS 应用前就打上标记:.rise 的隐藏初始态只在 JS 可用时生效 -->
<script>
document.documentElement.classList.add("js");
</script>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>