-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
120 lines (109 loc) · 4.23 KB
/
index.html
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/logo.png" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<title>SpacePi(BSC): SpaceX meets Pi in MEME!</title>
<!-- Meta Description -->
<meta name="description" content="SpacePi is a memecoin self-organized by devout Pi Network members to promote the Pi Network ecosystem. Join Pi War 🚀: A Web3-Powered Telegram Game." />
<!-- Meta Keywords -->
<meta name="keywords" content="SpacePi, SpaceX, Pi Network, MEME, Web3, Telegram Game, Pi War" />
<!-- Open Graph Tags -->
<meta property="og:title" content="SpacePi(BSC): SpaceX meets Pi in MEME!" />
<meta
property="og:description"
content="SpacePi(BSC): SpaceX meets Pi in MEME!"
/>
<meta property="og:image" content="https://imgs.space-pi.com/bannerbsc.png" />
<meta property="og:url" content="https://bsc.space-pi.com" />
<meta property="og:type" content="website" />
<!-- Twitter Card Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="SpacePi(BSC): SpaceX meets Pi in MEME!" />
<meta
name="twitter:description"
content="SpacePi is a memecoin self-organized by devout Pi Network members to promote the Pi Network ecosystem."
/>
<meta name="twitter:image" content="https://imgs.space-pi.com/bannerbsc.png" />
<!-- Multi-language Tags -->
<link rel="alternate" href="https://bsc.space-pi.com" hreflang="en" />
<link rel="alternate" href="https://bsc.space-pi.com/es" hreflang="es" />
<link rel="alternate" href="https://bsc.space-pi.com/zh" hreflang="zh" />
<link rel="alternate" href="https://bsc.space-pi.com/fr" hreflang="fr" />
<link rel="alternate" href="https://bsc.space-pi.com/de" hreflang="de" />
<link rel="alternate" href="https://bsc.space-pi.com/ja" hreflang="ja" />
<link rel="alternate" href="https://bsc.space-pi.com/ru" hreflang="ru" />
<link rel="alternate" href="https://bsc.space-pi.com/ko" hreflang="ko" />
<link rel="alternate" href="https://bsc.space-pi.com/it" hreflang="it" />
<link rel="alternate" href="https://bsc.space-pi.com/pt" hreflang="pt" />
<link rel="alternate" href="https://bsc.space-pi.com/ar" hreflang="ar" />
<link rel="alternate" href="https://bsc.space-pi.com/he" hreflang="he" />
<link rel="alternate" href="https://bsc.space-pi.com/hi" hreflang="hi" />
<link rel="alternate" href="https://bsc.space-pi.com/tr" hreflang="tr" />
<link rel="alternate" href="https://bsc.space-pi.com/vi" hreflang="vi" />
<link rel="alternate" href="https://bsc.space-pi.com/x-default" hreflang="x-default" />
<!-- Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-B1Z8GLK42K"
></script>
<script>
window.dataLayer = window.dataLayer || []
function gtag() {
dataLayer.push(arguments)
}
gtag('js', new Date())
gtag('config', 'G-B1Z8GLK42K')
</script>
<link
rel="preload"
href="/font/EDIX.ttf"
as="font"
type="font/ttf"
importance="high"
crossorigin
/>
<link
rel="preload"
href="/font/Space-Grotesk.woff2"
as="font"
type="font/woff2"
importance="high"
crossorigin
/>
<link
rel="stylesheet"
href="/font/index.css"
as="style"
importance="high"
/>
<style>
body {
background: #000;
}
</style>
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "SpacePi",
"url": "https://bsc.space-pi.com",
"description": "SpacePi is a memecoin self-organized by devout Pi Network members to promote the Pi Network ecosystem.",
"potentialAction": {
"@type": "SearchAction",
"target": "https://bsc.space-pi.com/search?q={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>