-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
72 lines (56 loc) · 4.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="apple-touch-icon" sizes="180x180" href="/app-maskable-icon-512.png" />
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#235b95" />
<meta name="msapplication-TileColor" content="#235b95" />
<meta name="viewport" content="initial-scale=1.0, width=device-width, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no, viewport-fit=cover" />
<!-- Apple - Webapp -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="theme-color" content="#ffffff" media="(prefers-color-scheme: light)" />
<meta name="theme-color" content="#212225" media="(prefers-color-scheme: dark)" />
<!-- Meta -->
<title>ARK Vault - Control Your Assets </title>
<meta name="title" content="ARK Vault - Control Your Assets" />
<meta name="description" content="Web-based cryptocurrency wallet that is compatible with ARK blockchains." />
<meta property="og:type" content="website" />
<meta property="og:title" content="ARK Vault - Control Your Assets" />
<meta property="og:description" content="Web-based cryptocurrency wallet that is compatible with ARK blockchains." />
<meta property="og:image" content="/meta-image.png" />
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:title" content="ARK Vault - Control Your Assets" />
<meta property="twitter:description" content="Web-based cryptocurrency wallet that is compatible with ARK blockchains." />
<meta property="twitter:image" content="/meta-image.png" />
<!-- iPhone 5 / SE -->
<link href="splashscreens/apple_320x568x2.png" media="(device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image" />
<!-- iPhone 6s / 7 / 8 / SE 2020 / SE 2022 -->
<link href="splashscreens/apple_375x667x2.png" media="(device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image" />
<!-- iPhone XS / X / 11 Pro / 12 Mini / 13 Mini -->
<link href="splashscreens/apple_375x812x3.png" media="(device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3)" rel="apple-touch-startup-image" />
<!-- iPhone 12 Pro / 12 / 13 Pro / 13 -->
<link href="splashscreens/apple_390x844x3.png" media="(device-width: 390px) and (device-height: 844px) and (-webkit-device-pixel-ratio: 3)" rel="apple-touch-startup-image" />
<!-- iPhone 6s Plus / 7 Plus / 8 Plus -->
<link href="splashscreens/apple_414x736x2.6.png" media="(device-width: 414px) and (device-height: 736px) and (-webkit-device-pixel-ratio: 2.6)" rel="apple-touch-startup-image" />
<!-- iPhone XR / 11 -->
<link href="splashscreens/apple_414x896x2.png" media="(device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image" />
<!-- iPhone XS Max / 11 Pro Max -->
<link href="splashscreens/apple_414x896x3.png" media="(device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 3)" rel="apple-touch-startup-image" />
<!-- iPhone 12 Pro Max / 13 Pro Max -->
<link href="splashscreens/apple_428x926x3.png" media="(device-width: 428px) and (device-height: 926px) and (-webkit-device-pixel-ratio: 3)" rel="apple-touch-startup-image" />
<!-- iPad Pro 9-->
<link href="splashscreens/apple_768x1024x2.png" media="(device-width: 768px) and (device-height: 1024px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image" />
<!-- iPad Pro 10 -->
<link href="splashscreens/apple_834x1112x2.png" media="(device-width: 834px) and (device-height: 1112px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image" />
<!-- iPad Pro 11 -->
<link href="splashscreens/apple_834x1194x2.png" media="(device-width: 834px) and (device-height: 1194px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image" />
<!-- iPad Pro 12 -->
<link href="splashscreens/apple_1024x1366x2.png" media="(device-width: 1024px) and (device-height: 1366px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>