Skip to content

Commit d7ebc92

Browse files
Merge branch 'feature/apk-download' into develop
2 parents f079d3d + 8fd9cf0 commit d7ebc92

File tree

4 files changed

+71
-0
lines changed

4 files changed

+71
-0
lines changed
-17.9 MB
Binary file not shown.

assets/ancelia.svg

Lines changed: 1 addition & 0 deletions
Loading

index.html

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Ancelia - Download App</title>
7+
<style>
8+
* {
9+
margin: 0;
10+
padding: 0;
11+
box-sizing: border-box;
12+
}
13+
14+
body {
15+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
16+
min-height: 100vh;
17+
display: flex;
18+
justify-content: center;
19+
align-items: center;
20+
}
21+
22+
.container {
23+
text-align: center;
24+
padding: 2rem;
25+
max-width: 500px;
26+
}
27+
28+
.download-btn {
29+
margin-top: 1.5rem;
30+
align-items: center;
31+
background-color: #cc3378;
32+
border-radius: 2rem;
33+
border: 1px solid #cc3378;
34+
box-shadow: 0 8px 25px rgba(0,0,0,0.2);
35+
color: #fff;
36+
cursor: pointer;
37+
display: inline-flex;
38+
font-size: 1.25rem;
39+
font-weight: 400;
40+
gap: 0.5rem;
41+
padding: 0.5rem 1rem;
42+
text-decoration: none;
43+
transition: all 0.3s ease;
44+
}
45+
46+
.download-btn:hover {
47+
background-color: #c64986 !important;
48+
border-color: #c64986 !important;
49+
box-shadow: 0 8px 4px -4px rgba(0, 0, 0, .3);
50+
}
51+
52+
.download-icon {
53+
width: 16px;
54+
height: 16px;
55+
}
56+
</style>
57+
</head>
58+
<body>
59+
<div class="container">
60+
<img src="assets/ancelia.svg" alt="logo"/>
61+
62+
<a href="https://github.com/TeiaCare/CarerApp/releases/download/Ancelia/Microsoft.WindowsAppRuntime.1.6.1.msix" class="download-btn" download>
63+
<svg class="download-icon" fill="currentColor" viewBox="0 0 20 20">
64+
<path fill-rule="evenodd" d="M3 17a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zm3.293-7.707a1 1 0 011.414 0L9 10.586V3a1 1 0 112 0v7.586l1.293-1.293a1 1 0 111.414 1.414l-3 3a1 1 0 01-1.414 0l-3-3a1 1 0 010-1.414z" clip-rule="evenodd"></path>
65+
</svg>
66+
Scarica app
67+
</a>
68+
</div>
69+
</body>
70+
</html>

teiacare_2.18.1.apk

36.3 MB
Binary file not shown.

0 commit comments

Comments
 (0)