-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (66 loc) · 2.42 KB
/
index.html
File metadata and controls
69 lines (66 loc) · 2.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Staker Console</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- https://web.dev/uses-rel-preconnect -->
<link rel="preconnect" href="https://storage.googleapis.com">
<link rel="icon" href="/eth-staker-logo-light.svg" type="image/svg+xml">
<link rel="mask-icon" href="/eth-staker-logo-light.svg" color="#FFFFFF">
<link
rel="icon"
href="/favicon-16x16.png"
type="image/png"
sizes="16x16"
/>
<link
rel="icon"
href="/favicon-32x32.png"
type="image/png"
sizes="32x32"
/>
<meta name="theme-color" content="#ffffff">
<meta
property="og:title"
content="Staker Console"
data-react-helmet="true"
>
<meta
name="description"
content="A web-based application for managing Ethereum validators, allowing users to deposit, top-up, upgrade, consolidate, withdraw, and exit validators through an intuitive interface"
data-react-helmet="true"
/>
<meta
property="og:description"
content="A web-based application for managing Ethereum validators, allowing users to deposit, top-up, upgrade, consolidate, withdraw, and exit validators through an intuitive interface"
data-react-helmet="true"
>
<% if (VITE_GA_MEASUREMENT_ID) { %>
<script async src="https://www.googletagmanager.com/gtag/js?id=%VITE_GA_MEASUREMENT_ID%"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('consent', 'default', {
ad_storage: 'denied',
ad_user_data: 'denied',
ad_personalization: 'denied',
analytics_storage: 'denied'
});
gtag('config', '%VITE_GA_MEASUREMENT_ID%', {
anonymize_ip: true,
allow_google_signals: false,
restricted_data_processing: true,
send_page_view: false
});
</script>
<% } %>
<!-- https://web.dev/defer-non-critical-css/ -->
<link rel="preload" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" as="style" onload="this.onload=null;this.rel='stylesheet'">
</head>
<body style="background-color: #333333" id="tailwind-root">
<div id="app-root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>