-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
551 lines (540 loc) · 19.9 KB
/
Copy pathindex.html
File metadata and controls
551 lines (540 loc) · 19.9 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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Varfolomii Yasenovyi | AI Automation Engineer</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Source+Code+Pro:wght@400;500&display=swap" rel="stylesheet">
<style>
:root {
--bg: #171717;
--bg-deep: #0f0f0f;
--text: #fafafa;
--muted: #b4b4b4;
--muted-2: #898989;
--border: #2e2e2e;
--border-strong: #363636;
--green: #3ecf8e;
--green-link: #00c573;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
background: radial-gradient(circle at 15% -10%, rgba(62, 207, 142, 0.1), transparent 35%),
radial-gradient(circle at 90% 10%, rgba(95, 82, 255, 0.11), transparent 30%),
var(--bg);
color: var(--text);
font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
overflow-x: hidden;
}
.code-label {
font-family: "Source Code Pro", monospace;
letter-spacing: 1.2px;
text-transform: uppercase;
}
.wrap {
width: min(1120px, calc(100% - 32px));
margin: 0 auto;
}
.nav {
position: sticky;
top: 0;
z-index: 30;
border-bottom: 1px solid #242424;
backdrop-filter: blur(6px);
background: rgba(23, 23, 23, 0.82);
}
.nav-inner {
min-height: 64px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
}
.brand-dot {
width: 10px;
height: 10px;
border-radius: 999px;
background: var(--green);
box-shadow: 0 0 20px rgba(62, 207, 142, 0.45);
}
.nav-links {
display: flex;
gap: 14px;
flex-wrap: wrap;
}
.nav-links a {
font-size: 14px;
color: var(--muted);
text-decoration: none;
}
.nav-links a:hover {
color: var(--text);
}
.hero {
margin-top: 44px;
border: 1px solid var(--border);
border-radius: 16px;
background: linear-gradient(175deg, rgba(18, 18, 18, 0.96), rgba(17, 17, 17, 0.92));
position: relative;
overflow: hidden;
}
.hero::before {
content: "";
position: absolute;
inset: -1px;
background: radial-gradient(circle at 20% 20%, rgba(62, 207, 142, 0.15), transparent 30%),
radial-gradient(circle at 85% 0%, rgba(87, 129, 255, 0.12), transparent 28%);
pointer-events: none;
}
.hero-inner {
position: relative;
padding: 42px;
}
.hero h1 {
font-size: clamp(38px, 8vw, 76px);
line-height: 1;
font-weight: 400;
letter-spacing: -1px;
max-width: 860px;
margin: 16px 0 0;
}
.hero p {
color: var(--muted);
max-width: 780px;
font-size: 18px;
line-height: 1.5;
margin: 20px 0 0;
}
.btn-row {
margin-top: 26px;
display: flex;
gap: 10px;
flex-wrap: wrap;
}
.btn {
height: 42px;
min-width: 128px;
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0 20px;
border-radius: 999px;
border: 1px solid var(--border);
text-decoration: none;
color: var(--text);
background: var(--bg-deep);
font-size: 14px;
font-weight: 500;
}
.btn.btn-main {
border-color: rgba(62, 207, 142, 0.35);
}
.btn:hover {
border-color: var(--border-strong);
color: var(--green-link);
}
.stats {
margin-top: 26px;
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 10px;
}
.stat {
border: 1px solid var(--border);
border-radius: 16px;
background: var(--bg-deep);
padding: 14px 16px;
}
.stat h3 {
margin: 0;
font-size: 28px;
font-weight: 500;
}
.stat p {
margin: 4px 0 0;
color: var(--muted-2);
font-size: 13px;
line-height: 1.35;
}
.section {
margin-top: 84px;
}
.section h2 {
margin: 10px 0 0;
font-size: clamp(28px, 3vw, 40px);
font-weight: 400;
letter-spacing: -0.4px;
}
.section-intro {
margin-top: 12px;
max-width: 760px;
color: var(--muted);
line-height: 1.55;
}
.grid-3 {
margin-top: 24px;
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 12px;
}
.card {
background: rgba(23, 23, 23, 0.92);
border: 1px solid var(--border);
border-radius: 16px;
padding: 22px;
}
.card h3 {
margin: 0;
font-size: 22px;
font-weight: 400;
letter-spacing: -0.16px;
}
.card p {
margin: 12px 0 0;
color: var(--muted);
line-height: 1.55;
font-size: 15px;
}
.chip-wrap {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-top: 20px;
}
.chip {
height: 36px;
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0 14px;
border-radius: 9999px;
border: 1px solid var(--border);
background: var(--bg-deep);
color: #efefef;
font-size: 13px;
}
.chip.hot {
border-color: rgba(62, 207, 142, 0.35);
}
.case-grid {
margin-top: 24px;
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 12px;
}
.case-grid ul {
margin: 14px 0 0;
padding-left: 18px;
color: var(--muted);
line-height: 1.55;
}
.case-grid li {
margin-top: 8px;
}
.timeline {
margin-top: 24px;
border: 1px solid var(--border);
border-radius: 16px;
overflow: hidden;
}
.timeline-item {
padding: 18px 22px;
border-top: 1px solid #242424;
display: grid;
grid-template-columns: 190px 1fr;
gap: 16px;
}
.timeline-item:first-child {
border-top: none;
}
.timeline-item .time {
color: var(--muted-2);
font-size: 13px;
}
.timeline-item p {
margin: 4px 0 0;
color: var(--muted);
}
.faq {
margin-top: 20px;
display: grid;
gap: 10px;
}
details {
border: 1px solid var(--border);
border-radius: 12px;
background: var(--bg-deep);
padding: 14px 16px;
}
summary {
cursor: pointer;
font-size: 15px;
color: #efefef;
}
details p {
margin: 10px 0 2px;
color: var(--muted);
line-height: 1.5;
font-size: 14px;
}
.cta {
margin-top: 84px;
border: 1px solid rgba(62, 207, 142, 0.3);
border-radius: 16px;
padding: 30px;
background: linear-gradient(165deg, rgba(18, 24, 21, 0.9), rgba(14, 14, 14, 0.95));
}
.cta h2 {
margin: 0;
font-size: clamp(28px, 4vw, 44px);
font-weight: 400;
line-height: 1.1;
}
.cta p {
margin: 10px 0 0;
color: var(--muted);
max-width: 700px;
}
footer {
margin: 42px 0 28px;
padding-top: 18px;
border-top: 1px solid #242424;
display: flex;
justify-content: space-between;
gap: 18px;
color: var(--muted-2);
font-size: 13px;
}
@media (max-width: 980px) {
.stats {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
grid-template-columns: 1fr;
}
.case-grid {
grid-template-columns: 1fr;
}
.timeline-item {
grid-template-columns: 1fr;
gap: 8px;
}
.hero-inner {
padding: 28px;
}
}
@media (max-width: 640px) {
.wrap {
width: min(1120px, calc(100% - 18px));
}
.btn {
min-width: 110px;
height: 40px;
}
.section {
margin-top: 64px;
}
footer {
flex-direction: column;
}
}
</style>
</head>
<body>
<nav class="nav">
<div class="wrap nav-inner">
<div style="display:flex;align-items:center;gap:10px;">
<span class="brand-dot"></span>
<span class="code-label" style="font-size:12px;color:#b4b4b4;">varfolomii yasenovyi</span>
</div>
<div class="nav-links">
<a href="#services">Services</a>
<a href="#cases">Case Studies</a>
<a href="#stack">Stack</a>
<a href="#faq">FAQ</a>
</div>
</div>
</nav>
<main class="wrap">
<header class="hero">
<div class="hero-inner">
<p class="code-label" style="font-size:12px;color:#898989;">ai automation engineer / full-stack builder</p>
<h1>I build AI agents that give you your time back</h1>
<p>
I design and ship AI-driven systems that automate repetitive work, pull data from the web, and sync business tools into one reliable flow.
If you are tired of manual ops, I can replace them with clean automation that runs every day without babysitting.
</p>
<div class="btn-row">
<a href="mailto:yasenvarf@gmail.com" class="btn btn-main">Start a project</a>
<a href="https://github.com/yava-code" target="_blank" rel="noopener noreferrer" class="btn">GitHub</a>
<a href="https://www.linkedin.com/in/varfolomiy-yasenoviy-a0209a2a3/" target="_blank" rel="noopener noreferrer" class="btn">LinkedIn</a>
<span class="btn" style="color:#898989;">Warsaw, Poland</span>
</div>
<div class="stats">
<div class="stat">
<h3>20+</h3>
<p>custom AI automations delivered</p>
</div>
<div class="stat">
<h3>10M+</h3>
<p>data points processed daily</p>
</div>
<div class="stat">
<h3>70%</h3>
<p>manual workflow reduction on avg</p>
</div>
<div class="stat">
<h3>24/7</h3>
<p>automation reliability mindset</p>
</div>
</div>
</div>
</header>
<section id="services" class="section">
<p class="code-label" style="font-size:12px;color:#898989;">what i build</p>
<h2>High-impact services for freelancers, founders, and growing teams</h2>
<p class="section-intro">
I focus on systems that remove boring work and speed up execution. Most projects start with one pain point, then scale into a full automation stack.
</p>
<div class="grid-3">
<article class="card">
<h3>AI agents and RAG</h3>
<p>Custom AI workflows using OpenAI API, LangChain, vector databases, and retrieval pipelines with reliable response quality.</p>
</article>
<article class="card">
<h3>Backend and APIs</h3>
<p>FastAPI and Flask services with PostgreSQL, auth, third-party integrations, billing logic, and deployment-ready architecture.</p>
</article>
<article class="card">
<h3>Automation and scraping</h3>
<p>Selenium or Playwright automations, cron-driven jobs, and robust data extraction flows built for speed and long runs.</p>
</article>
</div>
</section>
<section id="cases" class="section">
<p class="code-label" style="font-size:12px;color:#898989;">case studies</p>
<h2>Selected delivery history</h2>
<div class="case-grid">
<article class="card">
<h3>Lead Developer | Independent AI Contractor</h3>
<p style="margin-top:8px;color:#898989;">Feb 2023 - Present</p>
<ul>
<li>Developed and deployed 20+ custom AI-driven automation tools for international clients.</li>
<li>Built a multi-functional Telegram ecosystem with complex database architecture and automated billing.</li>
<li>Integrated OpenAI-powered agents into ops pipelines for content, analytics, and reporting tasks.</li>
</ul>
</article>
<article class="card">
<h3>Full-Stack Engineer | Freelance Solutions</h3>
<p style="margin-top:8px;color:#898989;">2023 - Present</p>
<ul>
<li>Architected scalable web scrapers processing millions of data points daily across dynamic sources.</li>
<li>Built Vue.js dashboards for real-time monitoring and control of automated business processes.</li>
<li>Shipped API-first backend systems with FastAPI, PostgreSQL, Stripe, PayPal, and CRM integrations.</li>
</ul>
</article>
</div>
</section>
<section class="section">
<p class="code-label" style="font-size:12px;color:#898989;">how i work</p>
<h2>Fast delivery, clear checkpoints</h2>
<div class="timeline">
<div class="timeline-item">
<div class="time">step 01</div>
<div>
<strong>Discovery call</strong>
<p>We map your current workflow, blockers, and expected ROI from automation.</p>
</div>
</div>
<div class="timeline-item">
<div class="time">step 02</div>
<div>
<strong>Prototype in days</strong>
<p>I ship the first working version quickly, so you can validate value early.</p>
</div>
</div>
<div class="timeline-item">
<div class="time">step 03</div>
<div>
<strong>Production hardening</strong>
<p>Logging, retries, scheduling, and fallback logic to keep systems stable at scale.</p>
</div>
</div>
<div class="timeline-item">
<div class="time">step 04</div>
<div>
<strong>Handover and growth</strong>
<p>You get docs, support, and a roadmap for next automation blocks.</p>
</div>
</div>
</div>
</section>
<section id="stack" class="section">
<p class="code-label" style="font-size:12px;color:#898989;">skills and stack</p>
<h2>Current market-ready expertise</h2>
<div class="chip-wrap">
<span class="chip hot">OpenAI API</span>
<span class="chip hot">LangChain</span>
<span class="chip hot">AI Agents</span>
<span class="chip hot">RAG</span>
<span class="chip">Pinecone</span>
<span class="chip">ChromaDB</span>
<span class="chip">Python</span>
<span class="chip">FastAPI</span>
<span class="chip">Flask</span>
<span class="chip">PostgreSQL</span>
<span class="chip">Playwright</span>
<span class="chip">Selenium</span>
<span class="chip">Workflow Automation</span>
<span class="chip">Cron Jobs</span>
<span class="chip">Vue.js</span>
<span class="chip">JavaScript</span>
<span class="chip">Telegram Bot API</span>
<span class="chip">Stripe API</span>
<span class="chip">PayPal API</span>
<span class="chip">CRM Integrations</span>
</div>
<div class="card" style="margin-top:14px;">
<p class="code-label" style="font-size:12px;color:#898989;margin:0;">education</p>
<h3 style="margin-top:10px;">Computer Science | Vistula University</h3>
<p>Warsaw, Poland · 2024 - 2028 (Expected)</p>
</div>
</section>
<section id="faq" class="section">
<p class="code-label" style="font-size:12px;color:#898989;">faq</p>
<h2>Quick answers before we start</h2>
<div class="faq">
<details>
<summary>Do you work with clients outside Poland?</summary>
<p>Yes. I work remotely with clients from different time zones and keep async communication clean and fast.</p>
</details>
<details>
<summary>Can you build both MVP and long-term systems?</summary>
<p>Yes. I can ship a fast MVP first, then harden it into a stable production pipeline with monitoring and retries.</p>
</details>
<details>
<summary>What kind of projects fit best?</summary>
<p>Automation-heavy products, AI assistants, scraping pipelines, API integrations, and backend workflows that replace manual operations.</p>
</details>
</div>
</section>
<section class="cta">
<h2>Need an AI system that actually saves time?</h2>
<p>Send me your current workflow and I will break down what can be automated first for the fastest business impact.</p>
<div class="btn-row">
<a href="mailto:yasenvarf@gmail.com" class="btn btn-main">Book intro call</a>
<a href="https://github.com/yava-code" target="_blank" rel="noopener noreferrer" class="btn">View code work</a>
</div>
</section>
<footer>
<span>Varfolomii Yasenovyi · AI Automation Engineer</span>
<span>Available for freelance projects worldwide</span>
</footer>
</main>
</body>
</html>