-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
160 lines (137 loc) · 5.19 KB
/
Copy pathindex.html
File metadata and controls
160 lines (137 loc) · 5.19 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!DOCTYPE html>
<html lang="en">
<head>
<title>BLDR BK - Track Your Climbing Journey</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Primary Meta Tags -->
<meta name="title" content="BLDR BK - Track Your Climbing Journey">
<meta name="description" content="Track your climbing progress, monitor achievements, and become a better climber with BLDR BK - the minimalist climbing logbook app.">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://boulderbook.github.io/">
<meta property="og:title" content="BLDR BK - Track Your Climbing Journey">
<meta property="og:description" content="Track your climbing progress, monitor achievements, and become a better climber with BLDR BK - the minimalist climbing logbook app.">
<meta property="og:image" content="https://boulderbook.github.io/social-preview.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://boulderbook.github.io/">
<meta property="twitter:title" content="BLDR BK - Track Your Climbing Journey">
<meta property="twitter:description" content="Track your climbing progress, monitor achievements, and become a better climber with BLDR BK - the minimalist climbing logbook app.">
<meta property="twitter:image" content="https://boulderbook.github.io/social-preview.png">
<!-- Apple specific -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="apple-touch-icon" href="app-icon.png">
<!-- Favicon -->
<link rel="icon" type="image/png" sizes="32x32" href="favicon.png">
<style>
:root {
--background-primary: #f5f5f7;
--background-secondary: #ffffff;
--text-primary: #1d1d1f;
--text-secondary: #86868b;
--button-background: #000000;
--button-text: #ffffff;
}
@media (prefers-color-scheme: dark) {
:root {
--background-primary: #1d1d1f;
--background-secondary: #000000;
--text-primary: #f5f5f7;
--text-secondary: #86868b;
--button-background: #0a84ff;
--button-text: #ffffff;
}
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
margin: 0;
padding: 0;
line-height: 1.6;
color: var(--text-primary);
background-color: var(--background-secondary);
transition: background-color 0.3s ease, color 0.3s ease;
}
.hero {
background-color: var(--background-primary);
padding: 4rem 2rem;
text-align: center;
}
.hero h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
font-weight: 700;
}
.hero p {
color: var(--text-secondary);
font-size: 1.2rem;
margin-bottom: 2rem;
}
.app-icon {
width: 120px;
height: 120px;
border-radius: 24px;
margin-bottom: 1.5rem;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.features {
max-width: 800px;
margin: 0 auto;
padding: 4rem 2rem;
}
.feature {
margin-bottom: 3rem;
text-align: center;
}
.feature h2 {
font-size: 1.8rem;
margin-bottom: 1rem;
}
.feature p {
color: var(--text-secondary);
font-size: 1.1rem;
}
.download-button {
background-color: var(--button-background);
color: var(--button-text);
padding: 0.8rem 1.5rem;
text-decoration: none;
border-radius: 25px;
display: inline-block;
font-size: 1.1rem;
font-weight: 500;
transition: transform 0.2s ease;
}
.download-button:hover {
transform: scale(1.05);
}
.footer {
background-color: var(--background-primary);
text-align: center;
padding: 2rem;
font-size: 0.9rem;
color: var(--text-secondary);
}
</style>
</head>
<body>
<div class="hero">
<img src="app-icon.png" alt="BLDR BK Icon" class="app-icon">
<h1>BLDR BK</h1>
<p>Track your climbing. Motivate yourself. Be better.</p>
<a href="https://apps.apple.com/app/bldr-bk/id6444367444" class="download-button">
Download on the App Store
</a>
</div>
<div class="features">
<div class="feature">
<h2>Track Your Progress</h2>
<p>Keep detailed records of your climbing achievements and monitor your improvement over time.</p>
</div>
</div>
<footer class="footer">
<p>© 2023 Jose Antunes. All rights reserved.</p>
</footer>
</body>
</html>