-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
47 lines (45 loc) · 2.08 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Start earning passive income with as little as 1 TON by staking your Toncoins on Hipo liquid
staking platform, built on TON blockchain."
/>
<title>Hipo App - Decentralized Liquid Staking on TON</title>
<link rel="icon" type="image/x-icon" href="src/assets/favicon.ico" />
<script>
if (
localStorage.theme === 'dark' ||
(!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)
) {
document.documentElement.classList.add('dark')
} else {
document.documentElement.classList.remove('dark')
}
</script>
</head>
<body>
<div id="root" class="flex min-h-screen min-w-[360px] flex-col">
<div style="display: none" class="loading m-auto hidden flex-col text-center">
<img src="src/assets/logo.svg" class="h-32 dark:hidden" />
<img src="src/assets/logo-dark.svg" class="hidden h-32 dark:block" />
<p class="font-bold text-brown dark:text-dark-50">Loading</p>
</div>
</div>
<script type="module" src="src/main.tsx"></script>
<!-- <script async src="https://tganalytics.xyz/index.js" type="text/javascript"></script>
<script>
window.addEventListener('load', function () {
if (location.host === 'app.hipo.finance' && window.telegramAnalytics) {
window.telegramAnalytics.init({
token: 'eyJhcHBfbmFtZSI6IkhpcG9GaW5hbmNlIiwiYXBwX3VybCI6Imh0dHBzOi8vdC5tZS9IaXBvRmluYW5jZUJvdCIsImFwcF9kb21haW4iOiJodHRwczovL2FwcC5oaXBvLmZpbmFuY2UifQ==!E4pxUC4Gw7gYJ/OLjvBnyB3xdqnfZd96quHuM0hwQEY=',
appName: 'HipoFinance',
})
}
})
</script> -->
</body>
</html>