-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
103 lines (94 loc) · 4.64 KB
/
Copy pathindex.html
File metadata and controls
103 lines (94 loc) · 4.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title data-i18n="HRCO_TITLE">HRCO's Digital Consciousness</title>
<meta name="description" content="Personal portfolio of HRCO. Web development, photography, and digital experiments.">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
</head>
<body>
<canvas id="bg-canvas" aria-hidden="true"></canvas>
<div class="container">
<header class="header">
<a href="index.html" class="logo">HRCO</a>
<button class="mobile-menu-toggle" aria-label="Toggle mobile menu" aria-expanded="false" aria-controls="main-nav">
<span></span>
<span></span>
<span></span>
</button>
<nav id="main-nav">
<a href="index.html" class="nav-link active" data-i18n="HOME_LINK">Start</a>
<a href="foto.html" class="nav-link" data-i18n="NAV_VISUAL">Visual</a>
<a href="projects.html" class="nav-link" data-i18n="NAV_EXPERIENCE">Experience</a>
<a href="about_me.html" class="nav-link" data-i18n="NAV_ABOUT">About</a>
</nav>
<div class="settings-bar">
<div class="lang-toggles">
<button id="lang-toggle-slo" class="toggle-button" aria-label="Switch to Slovenian">SLO</button>
<button id="lang-toggle-eng" class="toggle-button" aria-label="Switch to English">ENG</button>
</div>
</div>
</header>
<main>
<!-- Hero Section -->
<section class="hero-section">
<div class="hero-content">
<h1 data-i18n="HERO_NAME">Valentin Križan</h1>
<div class="hero-accent-line"></div>
<p class="hero-title" data-i18n="HERO_TITLE">Customer Experience & IT Professional</p>
<p class="hero-meta" data-i18n="HERO_META">Adlešiči, Slovenia · C1 English · EU Licence B</p>
<div class="hero-actions">
<a href="about_me.html" class="btn btn-primary" data-i18n="NAV_ABOUT">About</a>
<a href="projects.html" class="btn btn-ghost" data-i18n="NAV_EXPERIENCE">Experience</a>
<a href="https://www.linkedin.com/in/valentin-krizan-zerofriction/"
class="btn btn-ghost" target="_blank" rel="noopener">LinkedIn</a>
<a href="mailto:valentin.krizan@protonmail.com"
class="btn btn-ghost" data-i18n="HERO_EMAIL">Email</a>
</div>
</div>
</section>
<!-- Skills Strip -->
<section class="skills-strip">
<div class="skills-pills">
<span data-i18n="SKILL_CX">Customer Experience</span>
<span data-i18n="SKILL_IT">Electronics & IT</span>
<span data-i18n="SKILL_CNC">CNC / Laser</span>
<span data-i18n="SKILL_DRONE">EASA Drone Pilot</span>
<span data-i18n="SKILL_SL">Slovenian</span>
<span data-i18n="SKILL_EN">English C1</span>
<span data-i18n="SKILL_HR">Croatian</span>
</div>
</section>
<!-- Stats Row -->
<div class="stats-row">
<div class="stat">
<span class="stat-number">20+</span>
<span class="stat-label">Years in CX & IT</span>
</div>
<div class="stat">
<span class="stat-number">9</span>
<span class="stat-label">Roles across industries</span>
</div>
<div class="stat">
<span class="stat-number">EASA</span>
<span class="stat-label">Licensed Drone Pilot</span>
</div>
</div>
</main>
</div>
<footer class="footer">
<div class="container">
<p class="current-status" data-i18n="CURRENT_STATUS">Currently applying for CX roles in sustainable mobility.</p>
<p class="dont-panic">Don't Panic.</p>
<p>
© <span id="current-year"></span> |
<span data-i18n="FOOTER_TEXT">Constructed by HRCO. Mostly harmless.</span>
</p>
</div>
</footer>
<script src="js/main.js"></script>
<script src="js/bg-animation.js"></script>
</body>
</html>