-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (55 loc) · 1.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<link rel="icon" href="/logo.png"/>
<link rel="apple-touch-icon" href="/logo.png"/>
<meta name="terra-wallet"/>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"
/>
<meta name="theme-color" content="#000000"/>
<meta name="description" content="Ginkou is a copy of Cavern Protocol,Cavern Protocol is a lending and borrowing protocol that provides everyone a semi-stable high interest rate, offering up to 10% yield on stablecoin deposits!"/>
<meta name="robots" content="nofollow"/>
<meta name="google-site-verification" content="N6n4BYbWghfBh-jkUDybBLxZaI1k2GN_2S65zhpf058" />
<link rel="manifest" href="/manifest.json"/>
<title>Ginkou</title>
<style>
.loader {
border: 8px solid rgba(255, 255, 255, 0.5); /* Light grey */
border-top: 8px solid #1b1e31; /* Blue */
border-radius: 50%;
width: 50px;
height: 50px;
animation: spin 1s linear infinite;
margin: auto;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
#no-site-container, #root:empty{
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index:-1;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
background-color: #1b1e31;
}
</style>
</head>
<body style="margin: 0">
<div id="root" data-nosnippet>
<div id="no-site-container">
<div class="loader"></div>
</div>
</div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>