-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
785 lines (688 loc) Β· 27.1 KB
/
Copy pathindex.html
File metadata and controls
785 lines (688 loc) Β· 27.1 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
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Aleksey Kopaev β Hire a Developer</title>
<meta name="description" content="WordPress fix, Laravel feature, or a product from scratch β I build it fast using AI. Remote. No middlemen." />
<style>
:root {
--bg: #0d1117;
--surface: #161b22;
--border: #30363d;
--text: #e6edf3;
--muted: #8b949e;
--primary: #4e8097;
--primary-light: #6fb3cc;
--secondary: #76b041;
--accent: #f4d03f;
--accent-dim: rgba(244, 208, 63, 0.12);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
background: var(--bg);
color: var(--text);
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
line-height: 1.6;
font-size: 16px;
}
a { color: var(--primary-light); text-decoration: none; }
a:hover { color: var(--accent); }
/* βββ Layout βββ */
.container { max-width: 860px; margin: 0 auto; padding: 0 24px; }
/* βββ Hero βββ */
.hero {
padding: 80px 0 60px;
border-bottom: 1px solid var(--border);
}
.hero-tag {
display: inline-block;
background: var(--accent-dim);
border: 1px solid rgba(244, 208, 63, 0.3);
color: var(--accent);
font-size: 12px;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
padding: 4px 12px;
border-radius: 20px;
margin-bottom: 24px;
}
.hero h1 {
font-size: clamp(28px, 5vw, 46px);
font-weight: 700;
line-height: 1.2;
margin-bottom: 20px;
letter-spacing: -0.02em;
}
.hero h1 em {
font-style: normal;
color: var(--primary-light);
}
.hero-sub {
font-size: 18px;
color: var(--muted);
max-width: 580px;
margin-bottom: 36px;
}
.hero-contacts {
display: flex;
flex-wrap: wrap;
gap: 12px;
align-items: center;
}
.btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 20px;
border-radius: 8px;
font-size: 14px;
font-weight: 500;
border: 1px solid var(--border);
background: var(--surface);
color: var(--text);
transition: border-color 0.15s, background 0.15s;
}
.btn:hover {
border-color: var(--primary);
background: rgba(78, 128, 151, 0.1);
color: var(--text);
}
.btn-primary {
background: var(--primary);
border-color: var(--primary);
color: #fff;
}
.btn-primary:hover {
background: var(--primary-light);
border-color: var(--primary-light);
color: #fff;
}
/* βββ Stats ticker βββ */
.stats-bar {
padding: 28px 0;
border-bottom: 1px solid var(--border);
overflow: hidden;
}
.stats-scroll {
display: flex;
gap: 0;
animation: scroll-left 30s linear infinite;
width: max-content;
}
.stats-scroll:hover { animation-play-state: paused; }
.stats-scroll-inner {
display: flex;
gap: 0;
}
@keyframes scroll-left {
0% { transform: translateX(0); }
100% { transform: translateX(-50%); }
}
.stat-item {
display: flex;
align-items: center;
gap: 8px;
padding: 0 28px;
border-right: 1px solid var(--border);
white-space: nowrap;
}
.stat-num {
font-size: 22px;
font-weight: 700;
color: var(--primary-light);
}
.stat-label {
font-size: 13px;
color: var(--muted);
}
/* βββ Section βββ */
section { padding: 60px 0; border-bottom: 1px solid var(--border); }
section:last-of-type { border-bottom: none; }
.section-title {
font-size: 11px;
font-weight: 600;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--muted);
margin-bottom: 32px;
}
/* βββ Pillars βββ */
.pillars {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 16px;
}
.pillar {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 12px;
padding: 28px;
transition: border-color 0.15s;
}
.pillar:hover { border-color: var(--primary); }
.pillar-icon {
font-size: 28px;
margin-bottom: 16px;
display: block;
}
.pillar h3 {
font-size: 17px;
font-weight: 600;
margin-bottom: 10px;
}
.pillar p {
font-size: 14px;
color: var(--muted);
line-height: 1.6;
}
/* βββ Project βββ */
.project-header {
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 20px;
margin-bottom: 36px;
flex-wrap: wrap;
}
.project-title { font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.project-desc { color: var(--muted); font-size: 15px; max-width: 480px; }
.project-links { display: flex; gap: 10px; flex-wrap: wrap; }
.features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 14px;
}
.feature {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 10px;
padding: 20px;
transition: border-color 0.15s;
}
.feature:hover { border-color: var(--primary); }
.feature-head {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 10px;
}
.feature-icon {
width: 32px;
height: 32px;
border-radius: 8px;
background: rgba(78, 128, 151, 0.15);
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
flex-shrink: 0;
}
.feature h4 { font-size: 14px; font-weight: 600; }
.feature p {
font-size: 13px;
color: var(--muted);
margin-bottom: 12px;
line-height: 1.5;
}
.tags {
display: flex;
flex-wrap: wrap;
gap: 6px;
}
.tag {
font-size: 11px;
padding: 2px 8px;
border-radius: 4px;
background: rgba(78, 128, 151, 0.12);
color: var(--primary-light);
border: 1px solid rgba(78, 128, 151, 0.2);
font-weight: 500;
}
/* βββ Stack βββ */
.stack-grid {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.stack-item {
padding: 8px 16px;
background: var(--surface);
border: 1px solid var(--border);
border-radius: 8px;
font-size: 13px;
font-weight: 500;
color: var(--text);
transition: border-color 0.15s;
}
.stack-item:hover { border-color: var(--primary-light); }
/* βββ WordPress βββ */
.wp-block {
background: var(--surface);
border: 1px solid var(--border);
border-left: 3px solid var(--secondary);
border-radius: 10px;
padding: 28px;
}
.wp-block h3 {
font-size: 18px;
font-weight: 600;
margin-bottom: 10px;
}
.wp-block p { color: var(--muted); font-size: 15px; }
/* βββ Contact βββ */
.contact-row {
display: flex;
flex-wrap: wrap;
gap: 12px;
align-items: center;
}
.contact-note {
font-size: 14px;
color: var(--muted);
margin-top: 16px;
}
/* βββ Services βββ */
.services {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 16px;
margin-bottom: 40px;
}
.service {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 12px;
padding: 28px;
transition: border-color 0.15s;
position: relative;
}
.service:hover { border-color: var(--primary); }
.service-badge {
display: inline-block;
font-size: 11px;
font-weight: 600;
letter-spacing: 0.06em;
text-transform: uppercase;
padding: 3px 10px;
border-radius: 20px;
margin-bottom: 16px;
}
.badge-quick { background: rgba(118, 176, 65, 0.15); color: var(--secondary); border: 1px solid rgba(118, 176, 65, 0.3); }
.badge-feature { background: rgba(78, 128, 151, 0.15); color: var(--primary-light); border: 1px solid rgba(78, 128, 151, 0.3); }
.badge-product { background: var(--accent-dim); color: var(--accent); border: 1px solid rgba(244, 208, 63, 0.3); }
.service h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.service p { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.service ul {
list-style: none;
display: flex;
flex-direction: column;
gap: 6px;
}
.service ul li {
font-size: 13px;
color: var(--muted);
padding-left: 16px;
position: relative;
}
.service ul li::before {
content: "β";
position: absolute;
left: 0;
color: var(--primary-light);
}
.hire-cta {
background: linear-gradient(135deg, rgba(78,128,151,0.15) 0%, rgba(118,176,65,0.1) 100%);
border: 1px solid var(--primary);
border-radius: 14px;
padding: 36px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
flex-wrap: wrap;
}
.hire-cta-text h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.hire-cta-text p { color: var(--muted); font-size: 15px; }
.hire-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
/* βββ Footer βββ */
footer {
padding: 32px 0;
border-top: 1px solid var(--border);
text-align: center;
color: var(--muted);
font-size: 13px;
}
/* βββ Responsive βββ */
@media (max-width: 600px) {
.hero { padding: 48px 0 40px; }
.project-header { flex-direction: column; }
}
</style>
</head>
<body>
<!-- βββ Hero βββ -->
<div class="hero">
<div class="container">
<div class="hero-tag">Available for remote Β· Full-time or contract</div>
<h1>I turned a van and an AI<br>into a <em>production SaaS</em>.</h1>
<p class="hero-sub">
7 languages. 6 social platforms. 30+ countries. Built solo β using AI as a force multiplier.
Now looking for a team where I can do the same thing for you.
</p>
<div class="hero-contacts">
<a href="https://t.me/kopaev" class="btn btn-primary">
<svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm5.894 8.221-1.97 9.28c-.145.658-.537.818-1.084.508l-3-2.21-1.447 1.394c-.16.16-.295.295-.605.295l.213-3.053 5.56-5.023c.242-.213-.054-.333-.373-.12L7.17 13.667l-2.98-.924c-.647-.204-.66-.647.136-.958l11.631-4.484c.54-.194 1.01.131.837.92z"/></svg>
Telegram
</a>
<a href="mailto:aleksei.volga@gmail.com" class="btn">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><rect x="2" y="4" width="20" height="16" rx="2"/><path d="m22 7-10 7L2 7"/></svg>
aleksei.volga@gmail.com
</a>
<a href="https://github.com/Kopaev" class="btn">
<svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor"><path d="M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0 0 24 12c0-6.63-5.37-12-12-12z"/></svg>
GitHub
</a>
</div>
</div>
</div>
<!-- βββ Stats ticker βββ -->
<div class="stats-bar">
<div class="stats-scroll">
<div class="stats-scroll-inner">
<div class="stat-item"><span class="stat-num">51</span><span class="stat-label">database models</span></div>
<div class="stat-item"><span class="stat-num">7</span><span class="stat-label">languages</span></div>
<div class="stat-item"><span class="stat-num">6</span><span class="stat-label">social platforms</span></div>
<div class="stat-item"><span class="stat-num">52</span><span class="stat-label">services</span></div>
<div class="stat-item"><span class="stat-num">105</span><span class="stat-label">CLI commands</span></div>
<div class="stat-item"><span class="stat-num">300+</span><span class="stat-label">PHP classes</span></div>
<div class="stat-item"><span class="stat-num">30+</span><span class="stat-label">countries</span></div>
<div class="stat-item"><span class="stat-num">139</span><span class="stat-label">migrations</span></div>
<div class="stat-item"><span class="stat-num">100k+</span><span class="stat-label">lines of code</span></div>
<div class="stat-item"><span class="stat-num">15</span><span class="stat-label">years building</span></div>
</div>
<!-- duplicate for seamless loop -->
<div class="stats-scroll-inner" aria-hidden="true">
<div class="stat-item"><span class="stat-num">51</span><span class="stat-label">database models</span></div>
<div class="stat-item"><span class="stat-num">7</span><span class="stat-label">languages</span></div>
<div class="stat-item"><span class="stat-num">6</span><span class="stat-label">social platforms</span></div>
<div class="stat-item"><span class="stat-num">52</span><span class="stat-label">services</span></div>
<div class="stat-item"><span class="stat-num">105</span><span class="stat-label">CLI commands</span></div>
<div class="stat-item"><span class="stat-num">300+</span><span class="stat-label">PHP classes</span></div>
<div class="stat-item"><span class="stat-num">30+</span><span class="stat-label">countries</span></div>
<div class="stat-item"><span class="stat-num">139</span><span class="stat-label">migrations</span></div>
<div class="stat-item"><span class="stat-num">100k+</span><span class="stat-label">lines of code</span></div>
<div class="stat-item"><span class="stat-num">15</span><span class="stat-label">years building</span></div>
</div>
</div>
</div>
<!-- βββ Pillars βββ -->
<section>
<div class="container">
<div class="section-title">What kind of person am I</div>
<div class="pillars">
<div class="pillar">
<span class="pillar-icon">π§</span>
<h3>The Bug Hunter</h3>
<p>I find what's broken before it breaks in production. Race conditions, N+1 queries, cache poisoning, CSRF edge cases β I've hit them all, fixed them all, and documented every one.</p>
</div>
<div class="pillar">
<span class="pillar-icon">π¦</span>
<h3>The Product Builder</h3>
<p>I take a rough idea and turn it into a working product with admin panel, queues, monitoring, and social publishing. No hand-holding needed β just a problem to solve.</p>
</div>
<div class="pillar">
<span class="pillar-icon">β‘</span>
<h3>The Vibe Coder</h3>
<p>I work with AI (Claude, DeepSeek) as a genuine force multiplier. What used to take a team of 3 for 6 months β I shipped solo. Vibe-coding isn't a shortcut, it's a skill.</p>
</div>
</div>
</div>
</section>
<!-- βββ Project βββ -->
<section>
<div class="container">
<div class="section-title">Main project β proof of work</div>
<div class="project-header">
<div>
<div class="project-title">openvan.camp</div>
<p class="project-desc">Multilingual vanlife & RV news aggregator. Collects, clusters, translates, and publishes content automatically across 6 platforms in 7 languages. Built solo in a van, running in production.</p>
</div>
<div class="project-links">
<a href="https://openvan.camp" class="btn btn-primary" target="_blank" rel="noopener">Live site β</a>
<a href="https://github.com/Kopaev" class="btn" target="_blank" rel="noopener">GitHub β</a>
</div>
</div>
<div class="features">
<div class="feature">
<div class="feature-head">
<div class="feature-icon">π€</div>
<h4>AI Content Pipeline</h4>
</div>
<p>Every article passes through relevance scoring, deduplication (SimHash), vector clustering (Jina AI), and LLM-powered enrichment before reaching users.</p>
<div class="tags">
<span class="tag">LiteLLM</span>
<span class="tag">DeepSeek V3</span>
<span class="tag">Jina AI</span>
<span class="tag">pgvector</span>
<span class="tag">Langfuse</span>
</div>
</div>
<div class="feature">
<div class="feature-head">
<div class="feature-icon">π</div>
<h4>7-Language Auto-Translation</h4>
</div>
<p>All content is auto-translated to RU, EN, DE, FR, ES, PT, TR via LLM. SEO fields, slugs, social posts β everything is localized per language.</p>
<div class="tags">
<span class="tag">Laravel Translatable</span>
<span class="tag">LLM translation</span>
<span class="tag">IndexNow</span>
</div>
</div>
<div class="feature">
<div class="feature-head">
<div class="feature-icon">π’</div>
<h4>6-Platform Social Publishing</h4>
</div>
<p>Moderation queue β slot scheduler β auto-publish to Telegram, VK, Twitter/X, Facebook, Threads, WhatsApp. With OAuth token lifecycle management.</p>
<div class="tags">
<span class="tag">Telegram</span>
<span class="tag">VK OAuth</span>
<span class="tag">Twitter API v2</span>
<span class="tag">WhatsApp Business</span>
<span class="tag">Threads</span>
</div>
</div>
<div class="feature">
<div class="feature-head">
<div class="feature-icon">β½</div>
<h4>Live Fuel Prices</h4>
</div>
<p>Real-time fuel prices from 30+ countries via national APIs (TankerKoenig DE, EIA USA, Opinet KR, CNE CL) with currency conversion and user-submitted corrections.</p>
<div class="tags">
<span class="tag">30+ country APIs</span>
<span class="tag">CurrencyRateService</span>
<span class="tag">Livewire</span>
</div>
</div>
<div class="feature">
<div class="feature-head">
<div class="feature-icon">π</div>
<h4>Performance Under Fire</h4>
</div>
<p>Diagnosed and resolved a production crisis: Redis Pulse overflow (327 MB), N+1 queries, 97/100 PG connections. Pages went from 15s to 0.5s.</p>
<div class="tags">
<span class="tag">nginx FastCGI cache</span>
<span class="tag">Redis</span>
<span class="tag">Horizon</span>
<span class="tag">OPcache</span>
</div>
</div>
<div class="feature">
<div class="feature-head">
<div class="feature-icon">π±</div>
<h4>PWA + Android App</h4>
</div>
<p>Full PWA with service worker, installable on Android via TWA wrapper (PWABuilder). Auto-generated OG images via Puppeteer, custom Umami analytics build.</p>
<div class="tags">
<span class="tag">PWA</span>
<span class="tag">TWA / Android</span>
<span class="tag">Puppeteer</span>
<span class="tag">Umami</span>
</div>
</div>
<div class="feature">
<div class="feature-head">
<div class="feature-icon">πΊοΈ</div>
<h4>650+ Events Worldwide</h4>
</div>
<p>Auto-extracted from news, geocoded via Nominatim, deduplicated and merged. Telegram bot notifies users about nearby events with daily usage tracking.</p>
<div class="tags">
<span class="tag">Nominatim</span>
<span class="tag">MapTiler</span>
<span class="tag">Telegram Bot</span>
<span class="tag">Firebase FCM</span>
</div>
</div>
<div class="feature">
<div class="feature-head">
<div class="feature-icon">π‘οΈ</div>
<h4>Production-Grade Admin</h4>
</div>
<p>19 Filament admin resources covering moderation, publishing queue, LLM provider management (encrypted keys), source management, and live monitoring.</p>
<div class="tags">
<span class="tag">Filament v4</span>
<span class="tag">Spatie Permissions</span>
<span class="tag">Laravel Pulse</span>
<span class="tag">Horizon</span>
</div>
</div>
</div>
</div>
</section>
<!-- βββ Stack βββ -->
<section>
<div class="container">
<div class="section-title">Tech stack</div>
<div class="stack-grid">
<span class="stack-item">Laravel 12</span>
<span class="stack-item">PHP 8.2</span>
<span class="stack-item">PostgreSQL 15</span>
<span class="stack-item">Redis</span>
<span class="stack-item">Livewire 3</span>
<span class="stack-item">Filament v4</span>
<span class="stack-item">Tailwind CSS v4</span>
<span class="stack-item">WireUI</span>
<span class="stack-item">Docker</span>
<span class="stack-item">nginx</span>
<span class="stack-item">Laravel Horizon</span>
<span class="stack-item">LiteLLM</span>
<span class="stack-item">Jina AI</span>
<span class="stack-item">pgvector</span>
<span class="stack-item">Puppeteer</span>
<span class="stack-item">Glide</span>
<span class="stack-item">Matomo</span>
<span class="stack-item">Umami</span>
</div>
</div>
</section>
<!-- βββ WordPress βββ -->
<section>
<div class="container">
<div class="section-title">Before the SaaS era</div>
<div class="wp-block">
<h3>15 years of WordPress</h3>
<p>Before AI-assisted product development, I spent 15 years building WordPress sites and products for real clients β themes, plugins, performance, migrations, and everything in between. That's where I learned to care about what users actually need, not just what the code can do.</p>
</div>
</div>
</section>
<!-- βββ Services βββ -->
<section>
<div class="container">
<div class="section-title">What I can do for you</div>
<div class="services">
<div class="service">
<span class="service-badge badge-quick">Quick fix</span>
<h3>Something's broken</h3>
<p>WordPress site down, plugin conflict, layout wrong on mobile, slow page, weird bug you can't reproduce. I find it and fix it fast.</p>
<ul>
<li>WordPress bugs & conflicts</li>
<li>PHP / Laravel errors</li>
<li>Performance issues</li>
<li>Hosting & server problems</li>
<li>CSS / layout fixes</li>
</ul>
</div>
<div class="service">
<span class="service-badge badge-feature">Feature</span>
<h3>Add something new</h3>
<p>You have a working project and need a new feature, integration, or tool. I plug in cleanly without breaking what already works.</p>
<ul>
<li>API integrations</li>
<li>Admin panels & dashboards</li>
<li>Social media publishing</li>
<li>Payment & subscription flows</li>
<li>Automation & queues</li>
</ul>
</div>
<div class="service">
<span class="service-badge badge-product">Product</span>
<h3>Build from scratch</h3>
<p>You have an idea and need someone to turn it into a working product. I'll figure out the architecture, build it, and hand it over running.</p>
<ul>
<li>SaaS & web apps</li>
<li>Aggregators & parsers</li>
<li>Bots (Telegram, WhatsApp)</li>
<li>Multi-language platforms</li>
<li>AI-powered tools</li>
</ul>
</div>
</div>
<div class="hire-cta">
<div class="hire-cta-text">
<h3>Have a task? Just write.</h3>
<p>Describe what you need β I'll tell you honestly if I can help and how long it'll take. No middlemen, no agency markup.</p>
</div>
<div class="hire-cta-actions">
<a href="https://t.me/kopaev" class="btn btn-primary">
<svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm5.894 8.221-1.97 9.28c-.145.658-.537.818-1.084.508l-3-2.21-1.447 1.394c-.16.16-.295.295-.605.295l.213-3.053 5.56-5.023c.242-.213-.054-.333-.373-.12L7.17 13.667l-2.98-.924c-.647-.204-.66-.647.136-.958l11.631-4.484c.54-.194 1.01.131.837.92z"/></svg>
Telegram
</a>
<a href="mailto:aleksei.volga@gmail.com" class="btn">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><rect x="2" y="4" width="20" height="16" rx="2"/><path d="m22 7-10 7L2 7"/></svg>
Email
</a>
</div>
</div>
</div>
</section>
<!-- βββ Contact βββ -->
<section>
<div class="container">
<div class="section-title">Find me</div>
<div class="contact-row">
<a href="https://t.me/kopaev" class="btn btn-primary">
<svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm5.894 8.221-1.97 9.28c-.145.658-.537.818-1.084.508l-3-2.21-1.447 1.394c-.16.16-.295.295-.605.295l.213-3.053 5.56-5.023c.242-.213-.054-.333-.373-.12L7.17 13.667l-2.98-.924c-.647-.204-.66-.647.136-.958l11.631-4.484c.54-.194 1.01.131.837.92z"/></svg>
t.me/kopaev
</a>
<a href="mailto:aleksei.volga@gmail.com" class="btn">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><rect x="2" y="4" width="20" height="16" rx="2"/><path d="m22 7-10 7L2 7"/></svg>
aleksei.volga@gmail.com
</a>
<a href="https://github.com/Kopaev" class="btn">
<svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor"><path d="M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0 0 24 12c0-6.63-5.37-12-12-12z"/></svg>
github.com/Kopaev
</a>
</div>
<p class="contact-note">Remote only Β· UTC+2 Β· Open to full-time, part-time, or contract</p>
</div>
</section>
<footer>
<div class="container">
Aleksey Kopaev Β· 2026
</div>
</footer>
</body>
</html>