-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
60 lines (51 loc) · 1.9 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
<!doctype html>
<html lang="en">
<head>
<title>Angor Hub</title>
<meta charset="utf-8" />
<meta
name="description"
content="Angor Hub is a Nostr client that is customized around the Angor protocol, a decentralized crowdfunding platform."
/>
<meta
name="keywords"
content="Angor, Bitcoin, Nostr, decentralized crowdfunding, crypto projects, Bitcoin crowdfunding, Angor protocol, Nostr client, blockchain funding"
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"
/>
<base href="/" />
<!-- Favicon -->
<link rel="icon" type="image/png" href="favicon-16x16.png" />
<link rel="icon" type="image/png" href="favicon-32x32.png" />
<!-- Fonts -->
<link href="fonts/inter/inter.css" rel="stylesheet" />
<link href="https://fonts.gstatic.com" rel="preconnect" />
<link
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,400;0,500;0,600;1,400&display=swap"
rel="stylesheet"
/>
<!-- Icon fonts -->
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<!-- Splash screen styles -->
<link href="styles/splash-screen.css" rel="stylesheet" />
<link rel="manifest" href="manifest.webmanifest" />
</head>
<body>
<!-- Splash screen -->
<angor-splash-screen>
<img src="images/logo/logo.svg" alt="Angor logo" />
<div class="spinner">
<div class="bounce1"></div>
<div class="bounce2"></div>
<div class="bounce3"></div>
</div>
</angor-splash-screen>
<!-- App root -->
<app-root></app-root>
</body>
</html>