-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
489 lines (430 loc) · 17.6 KB
/
Copy pathindex.php
File metadata and controls
489 lines (430 loc) · 17.6 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
<?php
/* ═══════════════════════════════════════════
THANASIS KOUFOS — PORTFOLIO
index.php — Main entry point
═══════════════════════════════════════════ */
/* Page view counter */
$pageviews = require __DIR__ . '/counter.php';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Thanasis Koufos — Software Developer</title>
<meta name="description" content="Thanasis Koufos — Web & Software Developer based in Greece. Node.js, React, Django, Python.">
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="favicon.svg">
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&family=Syne:wght@400;600;700;800&display=swap" rel="stylesheet">
<!-- Styles -->
<link rel="stylesheet" href="style.css">
<!-- Contact Modal Styles -->
<link rel="stylesheet" href="contact-modal.css">
</head>
<body>
<!-- Custom cursor -->
<div id="cursor"></div>
<div id="cursor-ring"></div>
<!-- Ambient blobs -->
<div class="blob blob-1"></div>
<div class="blob blob-2"></div>
<div class="blob blob-3"></div>
<!-- Top progress line -->
<div id="progress-line"></div>
<!-- Logo -->
<div id="logo">thanasis_codes</div>
<!-- Page view counter badge -->
<div id="pageview-badge">
👁 <span><?= number_format($pageviews) ?></span> views
</div>
<!-- Section counter -->
<div id="section-counter">
<span id="cnt-curr">01</span> / <span>05</span>
</div>
<!-- Side nav dots -->
<nav id="nav-dots">
<div class="dot active" data-index="0" data-label="HOME"></div>
<div class="dot" data-index="1" data-label="ABOUT"></div>
<div class="dot" data-index="2" data-label="SKILLS"></div>
<div class="dot" data-index="3" data-label="PROJECTS"></div>
<div class="dot" data-index="4" data-label="CONTACT"></div>
</nav>
<!-- Nav arrows -->
<div class="nav-arrow" id="arrow-up" onclick="navigate(-1)">↑</div>
<div class="nav-arrow" id="arrow-down" onclick="navigate(1)">↓</div>
<!-- ════════════════════════════════
SECTION 1 — HERO
════════════════════════════════ -->
<section class="section active" id="s-hero">
<div class="hero-eyebrow">Software Developer</div>
<h1 class="hero-name">
<span class="neon-word">Thanasis</span><br>
Koufos
</h1>
<p class="hero-title">
<span class="typewriter" id="typewriter"></span>
</p>
<p class="hero-desc">
Enthusiastic web & software developer based in Greece, with 5+ years of
experience in websites & applications' development. Building fast, clean, scalable
solutions — for businesses worldwide.
</p>
<div class="hero-cta">
<a href="#" class="btn-primary" onclick="goTo(3); return false;">View Projects →</a>
<!-- "Get in Touch" opens the contact modal -->
<a href="#" class="btn-ghost" data-open-contact>Get in Touch</a>
</div>
</section>
<!-- ════════════════════════════════
SECTION 2 — ABOUT
════════════════════════════════ -->
<section class="section" id="s-about">
<div class="about-left">
<div class="section-label">About Me</div>
<h2 class="section-title">
Building <em class="neon-word">digital</em><br>experiences
</h2>
<p class="about-text">
Enthusiastic Software and Web Developer based in Greece, with over 5 years of experience
in website & applications life cycle. I've worked across front-end development,
landing pages, UI/UX, and mobile apps.
</p>
<p class="about-text">
Currently working at <strong>AspectSoft</strong> as a Software Developer
and <strong>TechPlace</strong> as a Web Developer, delivering fast,
responsive solutions for businesses worldwide.
</p>
<div class="info-grid">
<div class="info-item">
<div class="info-label">Location</div>
<div class="info-value">Greece 🇬🇷</div>
</div>
<div class="info-item">
<div class="info-label">Email</div>
<div class="info-value" style="font-size:11px">thanasis.koufos1@gmail.com</div>
</div>
<div class="info-item">
<div class="info-label">Phone</div>
<div class="info-value">+30 6981106438</div>
</div>
<div class="info-item">
<div class="info-label">Education</div>
<div class="info-value">MSc Information Systems</div>
</div>
</div>
</div>
<div class="about-right">
<div class="section-label">Experience</div>
<div class="exp-timeline stagger">
<div class="exp-item">
<div class="exp-date">Jun 2025 — Present</div>
<div class="exp-role">Software Developer</div>
<div class="exp-company">AspectSoft</div>
</div>
<div class="exp-item">
<div class="exp-date">Jun 2024 — Jun 2026</div>
<div class="exp-role">Web Developer</div>
<div class="exp-company">TechPlace</div>
</div>
<div class="exp-item">
<div class="exp-date">Sep 2020 — Oct 2023</div>
<div class="exp-role">MSc Information Systems</div>
<div class="exp-company">Hellenic Open University</div>
</div>
</div>
</div>
</section>
<!-- ════════════════════════════════
SECTION 3 — SKILLS
════════════════════════════════ -->
<section class="section" id="s-skills">
<div class="skills-header">
<div class="section-label">Tech Stack</div>
<h2 class="section-title">Skills & <em class="neon-word">Tools</em></h2>
</div>
<div class="skills-grid stagger">
<div class="skill-card">
<span class="skill-icon">⚛️</span>
<div class="skill-name">React</div>
<div class="skill-bar">
<div class="skill-bar-fill" style="--w:88%"></div>
<span class="skill-pct">88%</span>
</div>
</div>
<div class="skill-card">
<span class="skill-icon">🟩</span>
<div class="skill-name">Node.js</div>
<div class="skill-bar">
<div class="skill-bar-fill" style="--w:82%"></div>
<span class="skill-pct">82%</span>
</div>
</div>
<div class="skill-card">
<span class="skill-icon">🎯</span>
<div class="skill-name">Django</div>
<div class="skill-bar">
<div class="skill-bar-fill" style="--w:78%"></div>
<span class="skill-pct">78%</span>
</div>
</div>
<div class="skill-card">
<span class="skill-icon">🐍</span>
<div class="skill-name">Python</div>
<div class="skill-bar">
<div class="skill-bar-fill" style="--w:85%"></div>
<span class="skill-pct">85%</span>
</div>
</div>
<div class="skill-card">
<span class="skill-icon">🐘</span>
<div class="skill-name">PHP</div>
<div class="skill-bar">
<div class="skill-bar-fill" style="--w:72%"></div>
<span class="skill-pct">72%</span>
</div>
</div>
<div class="skill-card">
<span class="skill-icon">☕</span>
<div class="skill-name">Java</div>
<div class="skill-bar">
<div class="skill-bar-fill" style="--w:68%"></div>
<span class="skill-pct">68%</span>
</div>
</div>
</div>
<div class="skills-tags stagger">
<span class="skill-tag">WordPress</span>
<span class="skill-tag">OpenCart</span>
<span class="skill-tag">React</span>
<span class="skill-tag">Django</span>
<span class="skill-tag">SEO</span>
<span class="skill-tag">UI/UX Design</span>
<span class="skill-tag">SQLite</span>
<span class="skill-tag">Electron</span>
<span class="skill-tag">Mobile's Apps</span>
<span class="skill-tag">Tailwind CSS</span>
<span class="skill-tag">REST APIs</span>
</div>
</section>
<!-- ════════════════════════════════
SECTION 4 — PROJECTS
════════════════════════════════ -->
<section class="section" id="s-projects">
<div class="projects-header">
<div class="section-label">Portfolio</div>
<h2 class="section-title">Featured <em class="neon-word">Projects</em></h2>
</div>
<div class="projects-grid stagger">
<!-- Project 1 — Banks' LEI Enricher -->
<a class="project-card"
href="https://github.com/ThanasisSoftwareDeveloper/Banks-L.E.I."
target="_blank" rel="noopener">
<div class="project-num">01 / PROJECT</div>
<div class="project-icon">🏦</div>
<div class="project-name">Banks' LEI Enricher</div>
<div class="project-desc">
Desktop app for KYC/AML compliance teams. Batch-validates LEI codes via
the GLEIF API and enriches Excel spreadsheets with entity status and
renewal dates —
<span class="project-highlight">reducing the time required to search for
and enter the Status and Next Renewal Date to the time required for a
single LEI. If the list contains 100 LEIs, by 99%.</span>
</div>
<div class="project-tags">
<span class="project-tag">Python</span>
<span class="project-tag">GUI</span>
<span class="project-tag">GLEIF API</span>
<span class="project-tag">Excel</span>
</div>
<span class="project-link">View on GitHub →</span>
</a>
<!-- Project 2 — Calendar App Desktop -->
<a class="project-card"
href="https://calendar-app-desktop.vercel.app/"
target="_blank" rel="noopener">
<div class="project-num">02 / PROJECT</div>
<div class="project-icon">🗓️</div>
<div class="project-name">Calendar App Desktop</div>
<div class="project-desc">
Developer-grade task & calendar desktop app with Google Calendar sync,
Gmail integration, and drag-and-drop scheduling —
<span class="project-highlight">built for daily use with month / week / day
views, OAuth sign-in, and automatic background sync via Celery.</span>
</div>
<div class="project-tags">
<span class="project-tag">React</span>
<span class="project-tag">Django</span>
<span class="project-tag">PostgreSQL</span>
<span class="project-tag">Google APIs</span>
</div>
<span class="project-link">View on GitHub →</span>
</a>
<!-- Project 3 — Portfolio Blog -->
<a class="project-card"
href="https://www.thanasis-codes.eu/blog/"
target="_blank" rel="noopener">
<div class="project-num">03 / PROJECT</div>
<div class="project-icon">
<img
src="https://www.thanasis-codes.eu/blog/favicon.ico"
alt="TC"
style="width:28px;height:28px;object-fit:contain;display:block;"
onerror="this.style.display='none';this.nextElementSibling.style.display='inline';"
><span style="display:none;">🌐</span>
</div>
<div class="project-name">Portfolio Blog</div>
<div class="project-desc">
Full-featured WordPress portfolio showcasing UI/UX work, web development
projects, and software developer. Based in Greece, working worldwide.
</div>
<div class="project-tags">
<span class="project-tag">WordPress</span>
<span class="project-tag">OpenCart</span>
<span class="project-tag">PHP</span>
<span class="project-tag">React</span>
<span class="project-tag">Django</span>
</div>
<span class="project-link">Visit Site →</span>
</a>
<!-- Project 4 — Dynamic Retail Pricer -->
<a class="project-card"
href="https://github.com/ThanasisSoftwareDeveloper/dynamic-retail-pricer"
target="_blank" rel="noopener">
<div class="project-num">04 / PROJECT</div>
<div class="project-icon">🏷️</div>
<div class="project-name">Dynamic Retail Pricer</div>
<div class="project-desc">
Smart pricing engine for Greek e-shops. Scrapes 50+ shops, compares
market competition, and computes optimal selling prices with configurable
markup rules —
<span class="project-highlight">reducing the time spent searching for and
comparing retail prices, in an e-shop or physical store, by 98%.</span>
</div>
<div class="project-tags">
<span class="project-tag">Node.js</span>
<span class="project-tag">Electron</span>
<span class="project-tag">React</span>
<span class="project-tag">Playwright</span>
</div>
<span class="project-link">View on GitHub →</span>
</a>
</div>
</section>
<!-- ════════════════════════════════
SECTION 5 — CONTACT
════════════════════════════════ -->
<section class="section" id="s-contact">
<div class="section-label">Contact</div>
<h2 class="contact-title">
Let's <em class="neon-word">work</em><br>together
</h2>
<p class="contact-sub">
Based in Greece, working worldwide. Available for freelance projects,
collaborations, and full-time opportunities.
</p>
<!-- ✉️ Contact Form Button -->
<button class="btn-contact-modal" data-open-contact>
<span class="btn-icon">✉️</span>
Send a Message
</button>
<div class="contact-links stagger">
<a class="contact-item" href="mailto:thanasis.koufos1@gmail.com">
<span class="contact-icon">✉️</span> thanasis.koufos1@gmail.com
</a>
<a class="contact-item" href="tel:+306981106438">
<span class="contact-icon">📱</span> +30 6981106438
</a>
<a class="contact-item"
href="https://www.linkedin.com/in/thanasis-koufos-software-developer/"
target="_blank" rel="noopener">
<span class="contact-icon">💼</span> LinkedIn
</a>
<a class="contact-item"
href="https://github.com/ThanasisSoftwareDeveloper"
target="_blank" rel="noopener">
<span class="contact-icon">🐙</span> GitHub
</a>
<a class="contact-item"
href="https://www.thanasis-codes.eu/blog/"
target="_blank" rel="noopener">
<span class="contact-icon">🌐</span> Portfolio Blog
</a>
</div>
<div class="contact-footer">
© <?= date('Y') ?> Thanasis_Codes — Solve problems- Built with passion
</div>
</section>
<!-- ════════════════════════════════
CONTACT MODAL
════════════════════════════════ -->
<div id="contact-modal-overlay" role="dialog" aria-modal="true" aria-labelledby="modal-heading">
<div class="contact-modal">
<div class="modal-header">
<div>
<div class="modal-label">Get in Touch</div>
<h2 class="modal-title" id="modal-heading">
Send a <em>message</em>
</h2>
</div>
<button class="modal-close" aria-label="Close modal">✕</button>
</div>
<form id="contact-form" class="modal-form" novalidate>
<div class="form-row">
<div class="form-group">
<label for="cf-name">Name</label>
<input
type="text"
id="cf-name"
name="name"
placeholder="John Doe"
required
autocomplete="name"
>
</div>
<div class="form-group">
<label for="cf-email">Email</label>
<input
type="email"
id="cf-email"
name="email"
placeholder="john@example.com"
required
autocomplete="email"
>
</div>
</div>
<div class="form-group">
<label for="cf-subject">Subject</label>
<input
type="text"
id="cf-subject"
name="subject"
placeholder="Project inquiry / Collaboration / ..."
required
>
</div>
<div class="form-group">
<label for="cf-message">Message</label>
<textarea
id="cf-message"
name="message"
placeholder="Tell me about your project or idea..."
required
></textarea>
</div>
<div id="modal-status" class="modal-status" role="alert"></div>
<button type="submit" class="modal-submit" id="modal-submit-btn">
<span class="submit-spinner"></span>
<span class="submit-text">Send Message</span>
</button>
</form>
</div>
</div>
<!-- JS -->
<script src="main.js"></script>
<!-- Contact Modal JS -->
<script src="contact-modal.js"></script>
</body>
</html>