-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (49 loc) · 2.1 KB
/
Copy pathindex.html
File metadata and controls
55 lines (49 loc) · 2.1 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Favicons and Icons -->
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<!-- Web App Manifest -->
<link rel="manifest" href="/site.webmanifest" />
<meta name="apple-mobile-web-app-title" content="XMTP Network Status" />
<!-- Primary Meta Tags -->
<title>XMTP Network Status</title>
<meta
name="description"
content="Monitor the health and status of the XMTP network. View real-time node status, network health, and performance metrics."
/>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://status.xmtp.com" />
<meta property="og:title" content="XMTP Network Status" />
<meta
property="og:description"
content="Monitor the health and status of the XMTP network. View real-time node status, network health, and performance metrics."
/>
<meta property="og:image" content="/xmtp-banner.png" />
<meta property="og:site_name" content="XMTP Network Status" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://status.xmtp.com" />
<meta property="twitter:title" content="XMTP Network Status" />
<meta
property="twitter:description"
content="Monitor the health and status of the XMTP network. View real-time node status, network health, and performance metrics."
/>
<meta property="twitter:image" content="/xmtp-banner.png" />
<!-- Fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>