-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (91 loc) · 3.83 KB
/
index.html
File metadata and controls
99 lines (91 loc) · 3.83 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
92
93
94
95
96
97
98
99
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="HumanOS - 专业测评网站集合平台,提供人格测评、技能评估、心理测试等多种在线测评服务" />
<meta name="theme-color" content="#0f172a" />
<meta name="keywords" content="人格测评,心理测试,技能评估,在线测评,MBTI,职业规划,能力测试,性格分析" />
<meta name="author" content="HumanOS Team" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://humanos.dpdns.org/" />
<meta property="og:title" content="HumanOS | 专业测评网站集合平台" />
<meta property="og:description" content="提供人格测评、技能评估、心理测试等多种在线测评服务,帮助你更好地了解自己" />
<meta property="og:image" content="https://humanos.dpdns.org/og-image.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://humanos.dpdns.org/" />
<meta property="twitter:title" content="HumanOS | 专业测评网站集合平台" />
<meta property="twitter:description" content="提供人格测评、技能评估、心理测试等多种在线测评服务,帮助你更好地了解自己" />
<meta property="twitter:image" content="https://humanos.dpdns.org/og-image.png" />
<title>HumanOS | 专业测评网站集合平台</title>
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "HumanOS",
"description": "专业测评网站集合平台,提供人格测评、技能评估、心理测试等多种在线测评服务",
"url": "https://humanos.dpdns.org/",
"potentialAction": {
"@type": "SearchAction",
"target": "https://humanos.dpdns.org/?search={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "HumanOS",
"url": "https://humanos.dpdns.org/",
"logo": "https://humanos.dpdns.org/logo.png",
"sameAs": []
}
</script>
<!-- Preconnect to Google Fonts -->
<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@300;400;500;600;700&family=Noto+Sans+SC:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
/* Initial loading animation */
#root:empty::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
z-index: 9999;
}
#root:empty::after {
content: 'HumanOS';
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-family: 'Inter', sans-serif;
font-size: 2rem;
font-weight: 700;
background: linear-gradient(135deg, #8b5cf6, #ec4899, #f97316);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
animation: pulse 1.5s ease-in-out infinite;
z-index: 10000;
}
@keyframes pulse {
0%, 100% { opacity: 0.5; }
50% { opacity: 1; }
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>