-
Notifications
You must be signed in to change notification settings - Fork 302
/
index.html
87 lines (82 loc) · 2.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<link rel="icon" href="/favicon.ico" />
<link
rel="preload"
as="font"
href="./fonts/Inter-Variable.ttf"
type="font/ttf"
crossorigin="anonymous"
/>
<link
rel="preload"
as="font"
href="./fonts/tiemposDispMed.woff2"
type="font/woff2"
crossorigin="anonymous"
/>
<!-- Primary Meta Tags -->
<title>Balancer</title>
<meta name="title" content="Balancer" />
<meta
name="description"
content="A UI that supports core Balancer protocol functionality. Explore & create pools, manage liquidity, swap tokens, get veBAL and claim incentives."
/>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://app.balancer.fi/" />
<meta property="og:title" content="Balancer" />
<meta
property="og:description"
content="A UI that supports core Balancer protocol functionality. Explore & create pools, manage liquidity, swap tokens, get veBAL and claim incentives."
/>
<meta
property="og:image"
content="https://balancer.fi/images/og_image.jpg"
/>
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://app.balancer.fi/" />
<meta property="twitter:title" content="Balancer" />
<meta
property="twitter:description"
content="A UI that supports core Balancer protocol functionality. Explore & create pools, manage liquidity, swap tokens, get veBAL and claim incentives."
/>
<meta
property="twitter:image"
content="https://balancer.fi/images/og_image.jpg"
/>
<!-- Fathom Analytics -->
<script
src="https://cdn.usefathom.com/script.js"
data-spa="hash"
data-site="<%= VITE_FATHOM_SITE_ID %>"
defer
></script>
<!-- Appzi: Capture Insightful Feedback -->
<script async src="https://w.appzi.io/w.js?token=8TY8k"></script>
<link rel="preconnect" href="https://mainnet.infura.io" />
<link rel="preconnect" href="https://api-v3.balancer.fi" />
<link rel="preconnect" href="https://api.thegraph.com" />
<link rel="preconnect" href="https://assets-cdn.trustwallet.com" />
<link rel="preconnect" href="https://raw.githubusercontent.com" />
<link rel="preconnect" href="https://o574636.ingest.sentry.io" />
</head>
<body>
<noscript>
<strong
>We're sorry but the Balancer app will not work without JavaScript
enabled. Please enable it to continue.</strong
>
</noscript>
<div id="app"></div>
<script>
window.global = window;
</script>
<script type="module" src="/src/main.ts"></script>
</body>
</html>