-
Notifications
You must be signed in to change notification settings - Fork 44
/
index.html
179 lines (173 loc) · 5.28 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<!DOCTYPE html>
<html lang="en">
<head>
<base href="/" />
<meta charset="utf-8" />
<link
rel="icon"
href="/favicon.ico"
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1"
/>
<meta
name="theme-color"
content="#000000"
/>
<meta
name="description"
content="Push Protocol | Communication Protocol of Web3"
/>
<link
rel="apple-touch-icon"
href="/logo192.png"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/favicon-16x16.png"
/>
<link
rel="mask-icon"
href="/safari-pinned-tab.svg"
color="#cf1c84"
/>
<meta
name="msapplication-TileColor"
content="#9f00a7"
/>
<meta
name="theme-color"
content="#ffffff"
/>
<!-- Content Security Policy (CSP) to help add a layer of protection against Cross-Site Scripting (XSS), clickjacking, and other code injection attacks -->
<!-- <meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'; object-src 'none'; frame-src 'none'; base-uri 'none';" /> -->
<!-- <script type="text/javascript" src="https://app.olvy.co/script.js" defer="defer"></script> -->
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<link
rel="manifest"
href="/site.webmanifest"
/>
<!--
Notice the use of %PUBLIC_URL% in the tags above.
It will be replaced with the URL of the `public` folder during the build.
Only files inside the `public` folder can be referenced from the HTML.
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<!-- HTML Meta Tags -->
<title>Push App (Previously EPNS) | Communication Protocol of Web3</title>
<meta
name="description"
content="Push App (Previously EPNS) | Communication Protocol of Web3"
/>
<!-- Facebook Meta Tags -->
<meta
property="og:url"
content="https://app.push.org"
/>
<meta
property="og:type"
content="website"
/>
<meta
property="og:title"
content="Push App (Previously EPNS)"
/>
<meta
property="og:description"
content="Push App (Previously EPNS) | Communication Protocol of Web3"
/>
<meta
property="og:image"
content="https://app.push.org/previews/homepage.jpg"
/>
<!-- Twitter Meta Tags -->
<meta
name="twitter:card"
content="summary_large_image"
/>
<meta
property="twitter:domain"
content="app.push.org"
/>
<meta
property="twitter:url"
content="https://app.push.org"
/>
<meta
name="twitter:title"
content="Push App (Previously EPNS)"
/>
<meta
name="twitter:description"
content="Push App (Previously EPNS) | Communication Protocol of Web3"
/>
<meta
name="twitter:image"
content="https://app.push.org/previews/homepagetwitter.jpg"
/>
<!-- Meta Tags Generated via https://www.opengraph.xyz -->
<!-- Start Single Page Apps for GitHub Pages -->
<script type="text/javascript">
// Single Page Apps for GitHub Pages
// MIT License
// https://github.com/rafgraph/spa-github-pages
// This script checks to see if a redirect is present in the query string,
// converts it back into the correct url and adds it to the
// browser's history using window.history.replaceState(...),
// which won't cause the browser to attempt to load the new url.
// When the single page app is loaded further down in this file,
// the correct url will be waiting in the browser's history for
// the single page app to route accordingly.
(function (l) {
if (l.search[1] === '/') {
var decoded = l.search
.slice(1)
.split('&')
.map(function (s) {
return s.replace(/~and~/g, '&');
})
.join('?');
window.history.replaceState(null, null, l.pathname.slice(0, -1) + decoded + l.hash);
}
})(window.location);
</script>
<!-- End Single Page Apps for GitHub Pages -->
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<div id="portal"></div>
<div id="onboard-container"></div>
<script
type="module"
src="/src/index.tsx"
></script>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.
To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
</body>
</html>