-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (38 loc) · 1.92 KB
/
index.html
File metadata and controls
43 lines (38 loc) · 1.92 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Feixun Tech - Halia, FluxMQ and FCP</title>
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="/feixun.svg" />
<link rel="apple-touch-icon" sizes="180x180" href="/logo_dark.jpg" />
<link rel="manifest" href="/site.webmanifest" />
<meta name="description" content="Feixun Tech product suite: Halia for industrial data access, FluxMQ for high-performance MQTT messaging, and FCP for centralized control-plane operations." />
<meta name="author" content="Feixun Tech" />
<meta name="keywords" content="Halia, FluxMQ, FCP, MQTT, industrial IoT, device gateway, control plane, message broker" />
<meta property="og:title" content="Feixun Tech - Industrial IoT Product Suite" />
<meta property="og:description" content="Halia industrial data access, FluxMQ MQTT messaging, and FCP centralized operations in one product suite." />
<meta property="og:type" content="website" />
<meta property="og:image" content="/feixun.svg" />
<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:site" content="@fluxmq" />
<meta name="twitter:image" content="/feixun.svg" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<!-- GitHub Pages 重定向脚本 -->
<script>
// 检查是否在 GitHub Pages 上运行
if (window.location.hostname === 'quickmsg.github.io') {
// 如果当前路径不是根路径,则重定向到根路径
if (window.location.pathname !== '/' && !window.location.pathname.startsWith('/flux-message-flow/')) {
window.location.replace('/');
}
}
</script>
</body>
</html>