-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
233 lines (217 loc) · 7.77 KB
/
Copy pathindex.html
File metadata and controls
233 lines (217 loc) · 7.77 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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Thorbjørn Bonvik — iOS Developer</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
background: #000;
color: #f5f5f7;
min-height: 100vh;
-webkit-font-smoothing: antialiased;
}
.container {
max-width: 480px;
margin: 0 auto;
padding: 64px 24px 48px;
}
/* Header */
.header {
text-align: center;
margin-bottom: 48px;
}
.header h1 {
font-size: 32px;
font-weight: 700;
letter-spacing: -0.5px;
margin-bottom: 6px;
}
.header p {
font-size: 15px;
color: #86868b;
}
/* Section labels */
.section-label {
font-size: 12px;
font-weight: 600;
color: #48484a;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 16px;
}
/* App grid */
.app-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
margin-bottom: 48px;
}
.app-card {
background: #1c1c1e;
border-radius: 16px;
padding: 20px;
text-decoration: none;
display: block;
transition: background 0.2s;
}
.app-card:hover { background: #2c2c2e; }
.app-card img {
width: 48px;
height: 48px;
border-radius: 12px;
margin-bottom: 12px;
}
.app-card .app-name {
font-size: 15px;
font-weight: 600;
color: #f5f5f7;
margin-bottom: 2px;
}
.app-card .app-tagline {
font-size: 12px;
color: #86868b;
margin-bottom: 12px;
}
.app-card .app-link {
font-size: 11px;
font-weight: 500;
}
/* Music section */
.music-section { margin-bottom: 48px; }
.music-card {
background: #1c1c1e;
border-radius: 16px;
padding: 24px;
display: flex;
align-items: center;
gap: 20px;
}
.music-art {
width: 72px;
height: 72px;
border-radius: 12px;
flex-shrink: 0;
object-fit: cover;
}
.music-info { flex: 1; }
.music-info h3 {
font-size: 17px;
font-weight: 600;
margin-bottom: 4px;
}
.music-info .music-genre {
font-size: 13px;
color: #86868b;
margin-bottom: 12px;
}
.music-links {
display: flex;
flex-wrap: wrap;
gap: 16px;
}
.music-links a {
font-size: 12px;
font-weight: 500;
text-decoration: none;
}
/* Footer */
.footer {
text-align: center;
padding-top: 24px;
border-top: 1px solid #1c1c1e;
}
.socials {
display: flex;
justify-content: center;
gap: 24px;
margin-bottom: 16px;
}
.socials a {
font-size: 13px;
color: #86868b;
text-decoration: none;
}
.socials a:hover { color: #f5f5f7; }
.footer-links {
font-size: 12px;
color: #48484a;
}
.footer-links a {
color: #48484a;
text-decoration: none;
margin: 0 8px;
}
.footer-links a:hover { color: #86868b; }
/* Responsive */
@media (max-width: 480px) {
.app-grid { grid-template-columns: 1fr; }
.container { padding: 48px 20px 40px; }
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>Thorbjørn Bonvik</h1>
<p>iOS Developer · Musician</p>
</div>
<div class="section-label">Apps</div>
<div class="app-grid">
<a class="app-card" href="https://apps.apple.com/no/app/overdubber/id6762368689" target="_blank" rel="noopener">
<img src="icons/overdubber.png" alt="Overdubber icon">
<div class="app-name">Overdubber</div>
<div class="app-tagline">Layer audio. Mix. Export.</div>
<div class="app-link" style="color: #a1a1a6;">App Store ↗</div>
</a>
<a class="app-card" href="https://apps.apple.com/us/app/pr%C4%81%E1%B9%87a/id6763645783" target="_blank" rel="noopener">
<img src="icons/prana.png" alt="Prāṇa icon">
<div class="app-name">Prāṇa</div>
<div class="app-tagline">Guided breathwork.</div>
<div class="app-link" style="color: #a1a1a6;">App Store ↗</div>
</a>
<a class="app-card" href="https://apps.apple.com/no/app/stronq/id6762516024" target="_blank" rel="noopener">
<img src="icons/stronq.png" alt="Stronq icon">
<div class="app-name">Stronq</div>
<div class="app-tagline">Hypertrophy training.</div>
<div class="app-link" style="color: #a1a1a6;">App Store ↗</div>
</a>
<a class="app-card" href="https://apps.apple.com/us/app/simple-habits-weekly-tracker/id6762311878" target="_blank" rel="noopener">
<img src="icons/habits.png" alt="Simple Habit Tracker icon">
<div class="app-name">Simple Habit Tracker</div>
<div class="app-tagline">Build better habits.</div>
<div class="app-link" style="color: #a1a1a6;">App Store ↗</div>
</a>
</div>
<div class="music-section">
<div class="section-label">Music</div>
<div class="music-card">
<img class="music-art" src="icons/blacklightgod.png" alt="Blacklight God">
<div class="music-info">
<h3>Blacklight God</h3>
<div class="music-genre">Electronic · Oslo</div>
<div class="music-links">
<a href="https://open.spotify.com/artist/0tDiZvHjg67cy7q8bnT76Y" target="_blank" rel="noopener" style="color: #a1a1a6;">Spotify ↗</a>
<a href="https://music.apple.com/no/artist/blacklight-god/1473920288" target="_blank" rel="noopener" style="color: #a1a1a6;">Apple Music ↗</a>
<a href="https://tidal.com/artist/16399600/u" target="_blank" rel="noopener" style="color: #a1a1a6;">Tidal ↗</a>
<a href="https://www.youtube.com/channel/UCPbGLOYUI6rcG08tJ1iysKA" target="_blank" rel="noopener" style="color: #a1a1a6;">YouTube ↗</a>
</div>
</div>
</div>
</div>
<div class="footer">
<div class="socials">
<a href="https://instagram.com/thorbjxrn" target="_blank" rel="noopener">Instagram</a>
<a href="https://www.tiktok.com/@thorbjxrn" target="_blank" rel="noopener">TikTok</a>
<a href="https://www.linkedin.com/in/thorbj%C3%B8rn-bonvik-39a38313a/" target="_blank" rel="noopener">LinkedIn</a>
</div>
<div class="footer-links">
<a href="mailto:app.chair433@passfwd.com">Contact</a>
<a href="/stronq/privacy.html">Privacy</a>
</div>
</div>
</div>
</body>
</html>