forked from minotaur-ergo/minotaur-wallet
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (73 loc) · 3.12 KB
/
index.html
File metadata and controls
75 lines (73 loc) · 3.12 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Minotaur Wallet Download Page</title>
<!-- Compiled and minified Materialize CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<!-- Font Awesome CDN -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css">
<style>
body {
background: #f5f5f5;
display: flex;
min-height: 100vh;
flex-direction: column;
}
main {
flex: 1 0 auto;
}
.container {
width: 80%;
padding-bottom: 20px;
}
.header {
text-align: center;
padding: 40px;
background: #892836;
color: white;
}
.header h1 {
font-size: 2.8em;
}
.header p {
font-size: 1.4em;
}
.card-panel {
align-items: center;
display: flex;
justify-content: space-around;
flex-wrap: wrap;
padding: 20px;
}
.download-btn {
margin: 10px 0;
width: 80%;
font-size: 1.2em;
background-color: #892836;
}
.download-btn:hover {
background-color: #000000;
}
</style>
</head>
<body>
<header class="header center-align">
<img src="https://avatars.githubusercontent.com/u/90670824?s=200&v=4" alt="Logo" style="width: 120px; height: 120px;">
<h1>Welcome to the Minotaur Wallet Download Page</h1>
<p>Choose the version suitable for your platform</p>
</header>
<main>
<div class="container">
<div class="card-panel">
<a href="https://github.com/minotaur-ergo/minotaur-wallet/releases/download/v1.1.4/minotaur-wallet-1.1.4.apk" class="btn-large waves-effect waves-light download-btn"><i class="fab fa-android"></i> Download for Android</a>
<a href="https://github.com/minotaur-ergo/minotaur-wallet/releases/download/v1.1.4/minotaur-wallet-1.1.4.AppImage" class="btn-large waves-effect waves-light download-btn"><i class="fab fa-linux"></i> Download for Linux</a>
<a href="https://github.com/minotaur-ergo/minotaur-wallet/releases/download/v1.1.4/minotaur-wallet-1.1.4.dmg" class="btn-large waves-effect waves-light download-btn"><i class="fab fa-apple"></i> Download for Mac</a>
<a href="https://github.com/minotaur-ergo/minotaur-wallet/releases/download/v1.1.4/minotaur-wallet.Setup.1.1.4.exe" class="btn-large waves-effect waves-light download-btn"><i class="fab fa-windows"></i> Download for Windows</a>
<a href="https://github.com/minotaur-ergo/minotaur-wallet/archive/refs/tags/v1.1.4.zip" class="btn-large waves-effect waves-light download-btn"><i class="fas fa-code"></i> Download Source Code</a>
</div>
</div>
</main>
<!-- Compiled and minified Materialize JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
</body>
</html>