-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
93 lines (88 loc) · 4.76 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:title" content="PO Contacts Privacy Oriented Contacts Manager" />
<meta property="image" content="./resources/images/po_contacts_app_icon.png" />
<title>PO Contacts</title>
<link rel="icon" type="image/svg" href="./website/home/favicon.svg">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"
integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI"
crossorigin="anonymous"></script>
<style>
.row {
display: flex;
justify-content: center;
}
.image-block {
display: flex;
justify-content: center;
align-items: center
}
</style>
</head>
<body>
<nav class="navbar main-nav fixed-top large navbar-light" style="background-color: #77b300">
<a class="navbar-brand" style="align-content: center;font-weight: bold;"><img
src="./resources/images/po_contacts_app_icon.png" style="height:70px">PO Contacts</a>
</nav>
<section class="banner">
<div class="container-fluid flex-item" style="padding-top:150px">
<div class="row" style="align-items:center">
<div class="col-md-6" style="min-height:400px ; text-align:center">
<h1>"Privacy Oriented Contacts" mobile and desktop apps</h1>
<h5>Your contacts data stored and encrypted</h5>
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<a href="https://apps.apple.com/us/app/po-contacts/id1495556759"><img
src="./website/home/badgeappstore.png" alt="Badge App Store" class="img-fluid"
style="width:182px; padding:5px"></a>
</div>
<div class="col-md-12">
<a href="https://play.google.com/store/apps/details?id=com.exlyo.pocontacts"><img
src="./website/home/badgegoogleplay.png" alt="Badge Google Play"
class="img-fluid" style="width:182px; padding:5px"></a>
</div>
<div class="col-md-12">
<a href="https://github.com/androidseb/po-contacts/releases"><img
src="./website/home/badgedesktopapp.png" alt="Badge Desktop App"
class="img-fluid" style="width:182px; padding:5px"></a>
</div>
</div>
<div class="row">
<div class="col-md-12">
<a href="https://github.com/androidseb/po-contacts#credits"
style="color:black;text-decoration: underline;text-align: center;">Credits</a>
</div>
<div class="col-md-12">
<a href="https://www.pocontacts.app/privacy"
style="color:black;text-decoration: underline;">Privacy Policy</a>
</div>
<div class="col-md-12">
<a href="https://github.com/androidseb/po-contacts"
style="color:black;text-decoration: underline;">GitHub<img
src="./website/home/github_octocat.png" alt="GitHub" style="height:30px"></a>
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="image-block">
<img class="img-fluid" src="./website/home/phone_screen.jpg" alt="iphone-banner"
style="margin-top:40px;height:500px">
</div>
</div>
</div>
</div>
</section>
<footer class="container-fluid">
<div class="row m-4">
<div class="col-12"><p style="font-size: 10px; text-align: center;">Landing Page Designed and Built by <a href="https://github.com/luluvann" style="color:black; text-decoration:underline;">Lulu</a></p></div>
</div>
</footer>
</body>
</html>