-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjourney.html
More file actions
272 lines (248 loc) · 6.93 KB
/
Copy pathjourney.html
File metadata and controls
272 lines (248 loc) · 6.93 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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>the journey — ymsoloranker</title>
<link rel="icon" type="image/jpeg" href="web-logo.jpg">
<style>
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700;800&family=Inter:wght@400;500&display=swap');
:root{
--bg: #0a0a0a;
--border: #262626;
--text: #e8e8e8;
--text-dim: #7a7a7a;
--accent: #ff3b3b;
}
*{ margin:0; padding:0; box-sizing:border-box; }
body{
background:var(--bg) url('jourbg.jpg') center center / cover fixed no-repeat;
color:var(--text);
font-family:'Inter', sans-serif;
min-height:100vh;
overflow-x:hidden;
position:relative;
}
body::after{
content:'';
position:fixed;
inset:0;
background:rgba(8,8,10,0.86);
pointer-events:none;
z-index:0;
}
body::before{
content:'';
position:fixed;
inset:0;
pointer-events:none;
background:repeating-linear-gradient(
to bottom,
rgba(255,255,255,0.012) 0px,
rgba(255,255,255,0.012) 1px,
transparent 1px,
transparent 3px
);
z-index:1;
}
.wrap{
max-width:720px;
margin:0 auto;
padding:min(12vh,100px) 24px 160px;
position:relative;
z-index:2;
}
.back{
font-family:'JetBrains Mono', monospace;
font-size:12px;
color:var(--text-dim);
text-decoration:none;
display:inline-flex;
align-items:center;
gap:6px;
transition:color .2s ease;
}
.back:hover{ color:var(--accent); }
.label{
font-family:'JetBrains Mono', monospace;
font-size:11px;
text-transform:uppercase;
letter-spacing:0.15em;
color:var(--text-dim);
margin:40px 0 20px;
display:flex;
align-items:center;
gap:12px;
}
.label::after{
content:'';
flex:1;
height:1px;
background:var(--border);
}
h1{
font-family:'JetBrains Mono', monospace;
font-size:clamp(2.2rem, 7vw, 3.4rem);
font-weight:800;
letter-spacing:-0.01em;
line-height:1.05;
margin-top:14px;
position:relative;
display:inline-block;
}
h1 .char{ display:inline-block; transition:color .15s ease; }
h1:hover .char{ color:var(--accent); }
h1::after{
content:'';
position:absolute;
left:2px; right:2px; bottom:-6px;
height:2px;
background:var(--accent);
transform:scaleX(0);
transform-origin:left;
transition:transform .4s cubic-bezier(.65,0,.35,1);
}
h1:hover::after{ transform:scaleX(1); }
.bio{
margin-top:44px;
font-size:17px;
line-height:1.85;
color:var(--text);
}
.bio p{ margin-bottom:22px; }
.bio p:last-of-type{ margin-bottom:0; }
.bio .emph{ color:var(--accent); font-weight:500; }
.sign{
margin-top:56px;
font-family:'JetBrains Mono', monospace;
font-size:13px;
color:var(--text-dim);
display:flex;
align-items:center;
gap:10px;
}
.sign .dash{ color:var(--accent); }
.sign .caret{
display:inline-block;
width:8px; height:14px;
background:var(--accent);
animation:blink 1.1s step-end infinite;
}
@keyframes blink{
0%,49%{ opacity:1; }
50%,100%{ opacity:0; }
}
footer{
margin-top:80px;
font-family:'JetBrains Mono', monospace;
font-size:11px;
color:#4a4a4a;
display:flex;
flex-wrap:wrap;
align-items:center;
gap:18px;
justify-content:space-between;
border-top:1px solid var(--border);
padding-top:20px;
}
footer a{ color:#4a4a4a; text-decoration:none; transition:color .2s ease; }
footer a:hover{ color:var(--accent); }
/* --- floating mac-style dock --- */
.dock{
position:fixed;
bottom:22px;
left:50%;
transform:translateX(-50%);
display:flex;
gap:10px;
padding:10px 14px;
background:rgba(17,17,17,0.65);
backdrop-filter:blur(16px);
-webkit-backdrop-filter:blur(16px);
border:1px solid var(--border);
border-radius:20px;
z-index:50;
}
.dock a{
width:44px; height:44px;
border-radius:12px;
display:flex;
align-items:center;
justify-content:center;
color:var(--text-dim);
text-decoration:none;
position:relative;
transition:transform .2s cubic-bezier(.34,1.56,.64,1), color .2s ease, background .2s ease;
}
.dock a svg{
width:20px; height:20px;
stroke:currentColor;
fill:none;
stroke-width:1.7;
stroke-linecap:round;
stroke-linejoin:round;
}
.dock a:hover{
transform:translateY(-8px) scale(1.12);
color:var(--accent);
background:rgba(255,255,255,0.04);
}
.dock a.active{ color:var(--accent); }
.dock .tooltip{
position:absolute;
top:-32px;
left:50%;
transform:translateX(-50%);
font-family:'JetBrains Mono', monospace;
font-size:11px;
color:var(--text);
background:rgba(10,10,10,0.92);
border:1px solid var(--border);
padding:4px 9px;
border-radius:6px;
white-space:nowrap;
opacity:0;
pointer-events:none;
transition:opacity .2s ease;
}
.dock a:hover .tooltip{ opacity:1; }
</style>
</head>
<body>
<div class="wrap">
<a class="back" href="index.html">← back</a>
<div class="label">the journey</div>
<h1 id="nameEl">HOW I GOT HERE</h1>
<div class="bio">
<p>I didn't start with a plan. I started broke, tired of subscription pages I couldn't afford, and done wasting time.</p>
<p>First I tried trading — no capital, just a demo account and a lot of screen time. Then dropshipping, which I dropped fast. Neither stuck, but both taught me what I didn't want to build my life around.</p>
<p>Freelancing is what actually paid. Logo design, small gigs, real money coming in from work I actually did myself.</p>
<p>Then I found <span class="emph">building</span>. AI-assisted at first, then real fundamentals underneath it. Every project since has been about owning the whole stack — running local, depending on nobody's cloud but my own machine.</p>
<p>Still early. Still solo. Still building.</p>
</div>
<div class="sign"><span class="dash">—</span> ymsoloranker <span class="caret"></span></div>
<footer>
<span>Dhaka, BD</span>
</footer>
</div>
<nav class="dock">
<a href="index.html">
<span class="tooltip">home</span>
<svg viewBox="0 0 24 24"><path d="M3 11l9-8 9 8"/><path d="M5 10v10h5v-6h4v6h5V10"/></svg>
</a>
<a href="journey.html" class="active">
<span class="tooltip">journey</span>
<svg viewBox="0 0 24 24"><path d="M4 18l1.5 3h13L20 18"/><path d="M6 18V10h12v8"/><path d="M12 10V4"/><path d="M12 4l5 6h-5"/></svg>
</a>
<a href="about.html">
<span class="tooltip">my story</span>
<svg viewBox="0 0 24 24"><path d="M4 5c2-1 5-1 8 1 3-2 6-2 8-1v13c-2-1-5-1-8 1-3-2-6-2-8-1V5z"/><path d="M12 6v13"/></svg>
</a>
</nav>
<script>
const nameEl = document.getElementById('nameEl');
const raw = "HOW I GOT HERE";
nameEl.innerHTML = raw.split('').map(c => c === ' ' ? ' ' : `<span class="char">${c}</span>`).join('');
</script>
</body>
</html>