-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
491 lines (461 loc) · 34.7 KB
/
index.html
File metadata and controls
491 lines (461 loc) · 34.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta Tags -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Hizaki Labs - Your Tech & Creative Partner">
<meta name="keywords" content="Hizaki Labs, Tech Solutions, Creative Production, Content Creation, IT Services, Web Design, Video Editing, Music Production, Game Development, AI Development, PC Building">
<meta name="author" content="John Hizaki">
<meta name="robots" content="index, follow">
<meta name="theme-color" content="#ffffff">
<meta name="color-scheme" content="light dark">
<meta name="msapplication-TileColor" content="#ffffff">
<script type="text/babel" src="app.jsx"></script>
<!-- Title -->
<title>Hizaki Labs - Your Tech & Creative Partner</title>
<!-- Alpine.js Core & Plugins (for interactivity) -->
<script src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js" defer></script>
<script src="https://unpkg.com/@alpinejs/collapse@3.x.x/dist/cdn.min.js" defer></script>
<script src="https://unpkg.com/@alpinejs/focus@3.x.x/dist/cdn.min.js" defer></script>
<script src="https://unpkg.com/@alpinejs/intersect@3.x.x/dist/cdn.min.js" defer></script>
<script src="https://unpkg.com/@alpinejs/mask@3.x.x/dist/cdn.min.js" defer></script>
<script src="https://unpkg.com/@alpinejs/persist@3.x.x/dist/cdn.min.js" defer></script>
<script src="https://unpkg.com/@alpinejs/trap@3.x.x/dist/cdn.min.js" defer></script>
<script src="https://unpkg.com/@alpinejs/window@3.x.x/dist/cdn.min.js" defer></script>
<script src="https://unpkg.com/@alpinejs/scroll@3.x.x/dist/cdn.min.js" defer></script>
<script src="https://unpkg.com/@alpinejs/tooltip@3.x.x/dist/cdn.min.js" defer></script>
<script src="https://unpkg.com/@alpinejs/notifications@3.x.x/dist/cdn.min.js" defer></script>
<script src="https://unpkg.com/@alpinejs/clipboard@3.x.x/dist/cdn.min.js" defer></script>
<script src="https://unpkg.com/@alpinejs/scrollspy@3.x.x/dist/cdn.min.js" defer></script>
<script src="https://unpkg.com/@alpinejs/dragula@3.x.x/dist/cdn.min.js" defer></script>
<script src="https://unpkg.com/@alpinejs/codemirror@3.x.x/dist/cdn.min.js" defer></script>
<!-- ================= MAIN JS ================= -->
<script src="main.js"></script>
<!-- ================= React ================= -->
<script src="https://unpkg.com/react@15.3.2/dist/react.js"></script>
<script src="https://unpkg.com/react-dom@15.3.2/dist/react-dom.js"></script>
<!-- React (use the modern 18.x UMD build) -->
<script crossorigin src="https://unpkg.com/react@18/umd/react.production.min.js"></script>
<script crossorigin src="https://unpkg.com/react-dom@18/umd/react-dom.production.min.js"></script>
<script src="https://unpkg.com/react@18.3.1/umd/react.production.min.js"></script>
<script src="https://unpkg.com/react-dom@18.3.1/umd/react-dom.production.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.8.22/browser.min.js"></script>
<script type="text/babel" src="app.jsx"></script>
<!-- Tailwind CSS CDN & Config -->
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
'inter': ['Inter', 'sans-serif'],
'space-grotesk': ['Space Grotesk', 'sans-serif']
}
}
}
}
</script>
<!-- Animate.css for animations -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" rel="stylesheet">
<!-- Custom Styles -->
<style>
.section-title {
position: relative;
}
.section-title::after {
content: '';
position: absolute;
background-color: #6366F1; /* Indigo-500 */
left: 50%;
border-radius: 2px;
}
</style>
<!-- Google Fonts: Inter & Space Grotesk -->
<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@300;400;500;600;700&family=Space+Grotesk:wght@300..700&display=swap" rel="stylesheet">
<!-- Font Awesome for icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<!-- Favicons & Manifest -->
<link rel="icon" type="image/svg+xml" href="images/icon.svg">
<link rel="icon" type="image/png" sizes="32x32" href="images/icon.png">
<link rel="apple-touch-icon" sizes="180x180" href="images/icon.png">
<link rel="manifest" href="site.webmanifest">
<link rel="mask-icon" href="images/icon.svg" color="#5bbad5">
<!-- Main CSS -->
<link rel="stylesheet" href="main.css">
</head>
<body class="antialiased font-inter text-gray-800 scroll-smooth">
<!-- ================= HEADER ================= -->
<header class="bg-white shadow-sm py-4 sticky top-0 z-50 backdrop-blur-md bg-opacity-80">
<div class="container mx-auto px-4 flex justify-between items-center">
<a href="#home" class="text-3xl font-bold text-indigo-700 rounded-md p-2 hover:text-indigo-900 transition-colors font-space-grotesk">Hizaki Labs</a>
<!-- Desktop Navigation -->
<nav class="hidden md:flex space-x-6">
<a href="#home" class="text-gray-600 hover:text-indigo-700 font-medium transition-colors rounded-md px-3 py-2">Home</a>
<a href="#services" class="text-gray-600 hover:text-indigo-700 font-medium transition-colors rounded-md px-3 py-2">Services</a>
<a href="#portfolio" class="text-gray-600 hover:text-indigo-700 font-medium transition-colors rounded-md px-3 py-2">Portfolio</a>
<a href="#about" class="text-gray-600 hover:text-indigo-700 font-medium transition-colors rounded-md px-3 py-2">About</a>
<a href="#contact" class="text-gray-600 hover:text-indigo-700 font-medium transition-colors rounded-md px-3 py-2">Contact</a>
<a href="#socials" class="text-gray-600 hover:text-indigo-700 font-medium transition-colors rounded-md px-3 py-2">Socials</a>
</nav>
<!-- Mobile Menu Button -->
<button id="mobile-menu-button" aria-label="Open mobile menu" aria-expanded="false" class="md:hidden text-gray-600 hover:text-indigo-700 focus:outline-none focus:ring-2 focus:ring-indigo-500 rounded-md p-2">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</header>
<!-- ================= AD MODAL ================= -->
<div id="ad-modal-overlay" aria-hidden="true" class="hidden fixed inset-0 z-[100] bg-gray-900 bg-opacity-75 p-4 transition-opacity duration-300 opacity-0" role="dialog" aria-modal="true" aria-labelledby="ad-title">
<div id="ad-modal-content" class="bg-white rounded-xl shadow-2xl w-full max-w-md sm:max-w-lg min-w-[280px] max-h-[85vh] overflow-auto transform transition-transform duration-300 translate-y-4">
<div class="relative p-6 md:p-8">
<button
id="close-ad-modal"
aria-label="Close advertisement"
class="absolute top-3 right-3 text-gray-500 hover:text-gray-900 transition-colors bg-gray-100 rounded-full w-8 h-8 flex items-center justify-center focus:outline-none focus:ring-2 focus:ring-indigo-500"
>
<i class="fas fa-times text-lg"></i>
</button>
<div class="text-center">
<div class="text-indigo-600 text-6xl mb-4">
<i class="fas fa-compact-disc"></i>
</div>
<h2 id="ad-title" class="text-3xl font-bold text-gray-800 font-space-grotesk mb-2">
UNdervolt - Overclock
</h2>
<p class="text-lg font-semibold text-green-600 mb-6">
<i class="fas fa-check-circle mr-2"></i> OUT NOW & Available on all platforms!
</p>
<a href="https://www.hizakilabs.com/outnow" target="_blank" rel="noopener" class="inline-block w-full bg-indigo-600 text-white font-semibold py-3 rounded-full shadow-lg hover:bg-indigo-700 transition-colors transform hover:scale-[1.02] duration-300">
Stream Now <i class="fas fa-headphones-alt ml-2"></i>
</a>
</div>
</div>
<div class="bg-gray-50 text-center p-3 rounded-b-xl">
<p class="text-xs text-gray-500">
Advertisement will appear on every page load.
</p>
</div>
</div>
</div>
<!-- ================= MOBILE MENU ================= -->
<div id="mobile-menu" aria-hidden="true" class="fixed inset-0 bg-white bg-opacity-95 z-40 hidden md:hidden transition-transform duration-300 transform -translate-y-full">
<div class="flex justify-end p-6">
<button id="close-mobile-menu-button" aria-label="Close mobile menu" class="text-gray-800 text-3xl hover:text-indigo-700">×</button>
</div>
<nav class="flex flex-col items-center justify-center h-full text-2xl space-y-8">
<a href="#home" class="text-gray-800 hover:text-indigo-700 transition-colors">Home</a>
<a href="#services" class="text-gray-800 hover:text-indigo-700 transition-colors">Services</a>
<a href="#portfolio" class="text-gray-800 hover:text-indigo-700 transition-colors">Portfolio</a>
<a href="#about" class="text-gray-800 hover:text-indigo-700 transition-colors">About</a>
<a href="#contact" class="text-gray-800 hover:text-indigo-700 transition-colors">Contact</a>
<a href="#socials" class="text-gray-800 hover:text-indigo-700 transition-colors">Socials</a>
</nav>
</div>
<!-- ================= MAIN CONTENT ================= -->
<main>
<!-- ===== HERO SECTION ===== -->
<section id="home" class="bg-gradient-to-r from-indigo-600 to-purple-700 text-white py-20 md:py-32 text-center rounded-b-lg shadow-lg">
<div class="container mx-auto px-4">
<h1 class="text-4xl md:text-6xl font-extrabold leading-tight mb-6 animate-fade-in-up font-space-grotesk">
Hizaki Labs: Where Innovation Meets Expertise
</h1>
<p class="text-lg md:text-xl mb-10 max-w-3xl mx-auto opacity-90 animate-fade-in">
Your trusted partner for comprehensive tech solutions, creative production, and engaging content.
</p>
<div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-6">
<a href="#services" class="bg-white text-indigo-700 hover:bg-indigo-100 px-8 py-4 rounded-full font-semibold text-lg shadow-lg transform hover:scale-105 transition-all duration-300">
Explore Services
</a>
<a href="#contact" class="border-2 border-white text-white hover:bg-white hover:text-indigo-700 px-8 py-4 rounded-full font-semibold text-lg shadow-lg transform hover:scale-105 transition-all duration-300">
Get in Touch
</a>
</div>
</div>
</section>
<!-- ===== SERVICES SECTION ===== -->
<section id="services" class="py-16 md:py-24 bg-gray-50">
<div class="container mx-auto px-4">
<h2 class="text-4xl font-bold text-center mb-12 section-title mx-auto">Our Services</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Tech Solutions -->
<div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition-shadow duration-300 transform hover:-translate-y-2">
<div class="text-indigo-600 text-5xl mb-6 text-center"><i class="fas fa-laptop-code"></i></div>
<h3 class="text-2xl font-semibold text-gray-800 mb-4 text-center">Tech Solutions</h3>
<ul class="space-y-2 text-gray-600">
<li><i class="fas fa-check-circle text-green-500 mr-2"></i>Laptop Repair & Diagnostics</li>
<li><i class="fas fa-check-circle text-green-500 mr-2"></i>Operating System Installation & Setup</li>
<li><i class="fas fa-check-circle text-green-500 mr-2"></i>Networking Solutions (Setup, Troubleshooting)</li>
</ul>
</div>
<!-- Creative Production -->
<div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition-shadow duration-300 transform hover:-translate-y-2">
<div class="text-indigo-600 text-5xl mb-6 text-center"><i class="fas fa-palette"></i></div>
<h3 class="text-2xl font-semibold text-gray-800 mb-4 text-center">Creative Production</h3>
<ul class="space-y-2 text-gray-600">
<li><i class="fas fa-check-circle text-green-500 mr-2"></i>Web Design & Development</li>
<li><i class="fas fa-check-circle text-green-500 mr-2"></i>Video Editing & Production</li>
<li><i class="fas fa-check-circle text-green-500 mr-2"></i>Computer Graphics & Visuals</li>
<li><i class="fas fa-check-circle text-green-500 mr-2"></i>Music Production & Sound Design</li>
</ul>
</div>
<!-- Future Ventures -->
<div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition-shadow duration-300 transform hover:-translate-y-2">
<div class="text-indigo-600 text-5xl mb-6 text-center"><i class="fas fa-rocket"></i></div>
<h3 class="text-2xl font-semibold text-gray-800 mb-4 text-center">Future Ventures</h3>
<ul class="space-y-2 text-gray-600">
<li><i class="fas fa-star text-yellow-500 mr-2"></i>Game Development</li>
<li><i class="fas fa-star text-yellow-500 mr-2"></i>AI Development & Integration</li>
<li><i class="fas fa-star text-yellow-500 mr-2"></i>Custom PC Building</li>
</ul>
<div class="mt-6 text-center">
<a href="wait.html" class="inline-block bg-indigo-600 text-white px-6 py-3 rounded-full hover:bg-indigo-700 transition-colors font-medium">Learn More</a>
</div>
</div>
</div>
</div>
</section>
<!-- ===== PORTFOLIO SECTION ===== -->
<section id="portfolio" class="py-16 md:py-24 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-4xl font-bold text-center mb-12 section-title mx-auto"><a href="cook.html">My Content & Portfolio</a></h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Spotify Podcast -->
<div class="bg-gray-50 p-6 rounded-xl shadow-md hover:shadow-lg transition-shadow duration-300 flex flex-col items-center text-center">
<i class="fab fa-spotify text-purple-500 text-6xl mb-4"></i>
<h3 class="text-xl font-semibold text-gray-800 mb-2">Parody Radio</h3>
<p class="text-gray-600 mb-4">Tune in for insights, discussions, and entertainment on various topics.</p>
<a href="https://open.spotify.com/show/5kWl29kyLskkNsVgwmkfQ0?si=GBKRD7DASbi2kKWM_qU6Hw" target="_blank" rel="noopener" class="bg-purple-500 text-white px-6 py-3 rounded-full hover:bg-green-600 transition-colors font-medium">Listen Now</a>
</div>
<!-- YouTube - Gaming -->
<div class="bg-gray-50 p-6 rounded-xl shadow-md hover:shadow-lg transition-shadow duration-300 flex flex-col items-center text-center">
<i class="fab fa-youtube text-red-600 text-6xl mb-4"></i>
<h3 class="text-xl font-semibold text-gray-800 mb-2">John Hizaki: Gaming Channel</h3>
<p class="text-gray-600 mb-4">Join me for gaming adventures, reviews, and fun gameplay videos.</p>
<a href="https://www.youtube.com/@Ajxrhaider" target="_blank" rel="noopener" class="bg-red-600 text-white px-6 py-3 rounded-full hover:bg-red-700 transition-colors font-medium">Watch Now</a>
</div>
<!-- YouTube - Coding -->
<div class="bg-gray-50 p-6 rounded-xl shadow-md hover:shadow-lg transition-shadow duration-300 flex flex-col items-center text-center">
<i class="fab fa-youtube text-red-600 text-6xl mb-4"></i>
<h3 class="text-xl font-semibold text-gray-800 mb-2">YouTube: Coding / Tech Channel</h3>
<p class="text-gray-600 mb-4">Tutorials, coding challenges, and discussions on software development.</p>
<p class="text-gray-600 mb-4">Also expect discussions on pc building & repair, and networking tips.</p>
<a href="https://www.youtube.com/@Asura.j" target="_blank" rel="noopener" class="bg-red-600 text-white px-6 py-3 rounded-full hover:bg-red-700 transition-colors font-medium">Watch Now</a>
</div>
<!-- Spotify Music -->
<div class="bg-gray-50 p-6 rounded-xl shadow-md hover:shadow-lg transition-shadow duration-300 flex flex-col items-center text-center">
<i class="fab fa-spotify text-green-500 text-6xl mb-4"></i>
<h3 class="text-xl font-semibold text-gray-800 mb-2">John Hizaki</h3>
<p class="text-gray-600 mb-4">High-speed Electronic fueled by Juke and Makina. This is the sound of a frenetic, retro-futuristic FPS—pure, focused combat energy.</p>
<a href="https://open.spotify.com/artist/3k6Cy1fgDhQtNqc8AmayGD?si=b1Hr_N5xSfq28WBL1MWsOw" target="_blank" rel="noopener" class="bg-green-500 text-white px-6 py-3 rounded-full hover:bg-green-600 transition-colors font-medium">Listen Now</a>
</div>
</div>
</div>
</section>
<!-- ===== PROJECTS SECTION ===== -->
<section id="projects" class="py-16 md:py-24 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-4xl font-bold text-center mb-12 section-title mx-auto">Featured Projects</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Project 1 -->
<div class="bg-gray-50 p-6 rounded-xl shadow-md hover:shadow-lg transition-shadow duration-300 flex flex-col text-center">
<i class="fas fa-gamepad text-indigo-600 text-5xl mb-4"></i>
<h3 class="text-xl font-semibold text-gray-800 mb-2">Legit BBQ presents: Brick Breaker</h3>
<p class="text-gray-600 mb-4 flex-grow">A fun and quirky take on the popular brick breaker game.</p>
<a
href="https://bb.hizakilabs.com"
target="_blank"
rel="noopener"
class="mt-auto bg-indigo-600 text-white px-6 py-3 rounded-full hover:bg-indigo-700 transition-colors font-medium"
aria-label="View Brick Breaker Project"
>
View Project
</a>
</div>
<!-- Project 2 -->
<div class="bg-gray-50 p-6 rounded-xl shadow-md hover:shadow-lg transition-shadow duration-300 flex flex-col text-center">
<i class="fas fa-robot text-indigo-600 text-5xl mb-4"></i>
<h3 class="text-xl font-semibold text-gray-800 mb-2">Skillpath Virtual Guide</h3>
<p class="text-gray-600 mb-4 flex-grow">An AI chatbot correspondent for Skillpath International Academy.</p>
<a
href="https://svg.hizakilabs.com"
target="_blank"
rel="noopener"
class="mt-auto bg-indigo-600 text-white px-6 py-3 rounded-full hover:bg-indigo-700 transition-colors font-medium"
aria-label="View Skillpath Guide Project"
>
View Project
</a>
</div>
<!-- Project 3 -->
<div class="bg-gray-50 p-6 rounded-xl shadow-md hover:shadow-lg transition-shadow duration-300 flex flex-col text-center">
<i class="fas fa-tasks text-indigo-600 text-5xl mb-4"></i>
<h3 class="text-xl font-semibold text-gray-800 mb-2">CBT Autotest Solution</h3>
<p class="text-gray-600 mb-4 flex-grow">A repository for a CBT (Computer-Based Test) autotesting software solution.</p>
<a
href="https://github.com/Ajxrhaider/Autotest-Solutions" target="_blank"
rel="noopener"
class="mt-auto bg-indigo-600 text-white px-6 py-3 rounded-full hover:bg-indigo-700 transition-colors font-medium"
aria-label="View CBT Autotest Repository"
>
View Repository
</a>
</div>
<!-- Project 4 -->
<div class="bg-gray-50 p-6 rounded-xl shadow-md hover:shadow-lg transition-shadow duration-300 flex flex-col text-center">
<i class="fas fa-code-branch text-indigo-600 text-5xl mb-4"></i>
<h3 class="text-xl font-semibold text-gray-800 mb-2">Trauma Engine</h3>
<p class="text-gray-600 mb-4 flex-grow">A hopeful, open source Game Engine</p>
<a
href="https://github.com/Ajxrhaider/trauma-engine" target="_blank"
rel="noopener"
class="mt-auto bg-indigo-600 text-white px-6 py-3 rounded-full hover:bg-indigo-700 transition-colors font-medium"
aria-label="View Trauma Engine Repository"
>
View Repository
</a>
</div>
<!-- Project 5 - Resume Auditor -->
<div class="bg-gray-50 p-6 rounded-xl shadow-md hover:shadow-lg transition-shadow duration-300 flex flex-col text-center">
<div class="text-indigo-600 text-5xl mb-4">
<i class="fas fa-microchip"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800 mb-2 font-space-grotesk">Resume Auditor</h3>
<p class="text-gray-600 mb-6 flex-grow">
A high-precision intelligence engine that audits professional documents against specific JDs using Gemini 3.0 Flash.
</p>
<a
href="https://www.resumeaudit.hizakilabs.com/"
target="_blank"
rel="noopener"
class="mt-auto bg-indigo-600 text-white px-6 py-3 rounded-full hover:bg-indigo-700 transition-colors font-medium"
aria-label="View Skillpath Guide Project"
>
View Project
</a>
</div>
<!-- Project 6 - Your Next Project -->
<div class="bg-gray-50 p-6 rounded-xl shadow-md hover:shadow-lg transition-shadow duration-300 flex flex-col items-center justify-center text-center">
<div class="text-indigo-600 text-5xl mb-4"><i class="fas fa-code"></i></div>
<h3 class="text-xl font-semibold text-gray-800 mb-2">Your Next Project</h3>
<p class="text-gray-600 mb-4 flex-grow">Coming Soon.</p>
<a href="#contact" class="mt-auto bg-gray-700 text-white px-6 py-3 rounded-full hover:bg-gray-800 transition-colors font-medium">
Get in Touch
</a>
</div>
</div>
</div>
</section>
<!-- ===== ABOUT SECTION ===== -->
<section id="about" class="py-16 md:py-24 bg-gray-50">
<div class="container mx-auto px-4 flex flex-col md:flex-row items-center gap-12">
<div class="md:w-1/2 flex justify-center">
<img src="images/icon.png" onerror="this.onerror=null;this.src='https://placehold.co/400x400/e5e7eb/4f46e5?text=HL';" alt="Hizaki Labs circular logo with indigo border" class="rounded-full shadow-lg border-4 border-indigo-300 w-64 h-64 md:w-80 md:h-80 object-cover">
</div>
<div class="md:w-1/2 text-center md:text-left">
<h2 class="text-4xl font-bold mb-6 section-title md:mx-0 mx-auto">About Hizaki Labs</h2>
<p class="text-lg text-gray-700 leading-relaxed mb-6">
Welcome to Hizaki Labs! I'm a dedicated technician and creative professional passionate about technology and its endless possibilities. My journey began with a strong foundation in IT, specializing in laptop repair, operating system installations, and comprehensive networking solutions. I believe in providing reliable and efficient support to keep your systems running smoothly.
</p>
<p class="text-lg text-gray-700 leading-relaxed mb-6">
Beyond the technical realm, I delve into the creative world, offering expertise in web design, video editing and production, computer graphics, and music production. My passion extends to content creation, where I host an audio Spotify podcast and manage multiple YouTube channels covering gaming, coding, and anime/memes.
</p>
<p class="text-lg text-gray-700 leading-relaxed">
Looking ahead, Hizaki Labs is set to expand into exciting new territories, including game development, cutting-edge AI development, and bespoke PC building services. My goal is to blend technical prowess with creative vision to deliver innovative solutions and engaging experiences.
</p>
</div>
</div>
</section>
<!-- ===== CONTACT SECTION ===== -->
<section id="contact" class="py-16 md:py-24 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-4xl font-bold text-center mb-12 section-title mx-auto">Get in Touch</h2>
<div class="max-w-3xl mx-auto bg-gray-50 p-8 rounded-xl shadow-lg">
<p class="text-lg text-gray-700 text-center mb-8">
Have a project in mind or need technical assistance? Feel free to reach out!
</p>
<!-- Contact Form -->
<form id="contact-form" class="space-y-6" action="https://formspree.io/f/xldlwynl" method="POST">
<div>
<label for="name" class="block text-gray-700 text-sm font-semibold mb-2">Your Name</label>
<input type="text" id="name" name="name" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-indigo-500 transition-all" placeholder="Your Name" required>
</div>
<div>
<label for="email" class="block text-gray-700 text-sm font-semibold mb-2">Your Email</label>
<input type="email" id="email" name="email" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-indigo-500 transition-all" placeholder="your.email@example.com" required>
</div>
<div>
<label for="subject" class="block text-gray-700 text-sm font-semibold mb-2">Subject</label>
<input type="text" id="subject" name="subject" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-indigo-500 transition-all" placeholder="Service Inquiry, Collaboration, etc." required>
</div>
<div>
<label for="message" class="block text-gray-700 text-sm font-semibold mb-2">Your Message</label>
<textarea id="message" name="message" rows="5" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-indigo-500 transition-all resize-y" placeholder="Tell me about your project or inquiry..." required></textarea>
</div>
<div class="text-center">
<button type="submit" class="w-full sm:w-auto bg-indigo-600 text-white px-8 py-4 rounded-full font-semibold text-lg hover:bg-indigo-700 transition-colors shadow-lg transform hover:scale-105 duration-300">
Send Message
</button>
</div>
</form>
<div id="form-message" class="hidden"></div>
<div class="mt-10 text-center">
<p class="text-lg text-gray-700 font-semibold mb-4">Or connect directly:</p>
<p class="text-gray-600 mb-2"><i class="fas fa-envelope text-indigo-500 mr-2"></i> Email: <a href="mailto:info@hizakilabs.com" class="text-indigo-600 hover:underline">info@hizakilabs.com</a></p>
<p class="text-gray-600"><i class="fas fa-phone-alt text-indigo-500 mr-2"></i> Phone: <a href="tel:+2349047287304" class="text-indigo-600 hover:underline">+234 904-728-7304</a></p>
</div>
</div>
</div>
</section>
<!-- ===== SOCIALS SECTION ===== -->
<section id="socials" class="py-16 md:py-24 bg-gray-50">
<div class="container mx-auto px-4 text-center">
<h2 class="text-4xl font-bold mb-12 section-title mx-auto">Connect With Me</h2>
<div class="flex justify-center flex-wrap gap-6 text-5xl">
<a href="https://open.spotify.com/artist/3k6Cy1fgDhQtNqc8AmayGD?si=b1Hr_N5xSfq28WBL1MWsOw" target="_blank" rel="noopener" class="text-gray-600 hover:text-green-500 transition-colors transform hover:scale-110" aria-label="Spotify Music"><i class="fab fa-spotify"></i></a>
<a href="https://twitter.com/asura_java" target="_blank" rel="noopener" class="text-gray-600 hover:text-blue-500 transition-colors transform hover:scale-110" aria-label="Twitter"><i class="fab fa-twitter"></i></a>
<a href="https://linkedin.com/in/inimfon-abasi-ekpenyong-b05518240" target="_blank" rel="noopener" class="text-gray-600 hover:text-blue-700 transition-colors transform hover:scale-110" aria-label="LinkedIn"><i class="fab fa-linkedin"></i></a>
<a href="https://github.com/Ajxrhaider" target="_blank" rel="noopener" class="text-gray-600 hover:text-gray-900 transition-colors transform hover:scale-110" aria-label="GitHub"><i class="fab fa-github"></i></a>
<a href="https://youtube.com/@Asura.j" target="_blank" rel="noopener" class="text-gray-600 hover:text-red-600 transition-colors transform hover:scale-110" aria-label="YouTube"><i class="fab fa-youtube"></i></a>
<a href="https://open.spotify.com/show/5kWl29kyLskkNsVgwmkfQ0?si=c826f7587da242cd" target="_blank" rel="noopener" class="text-gray-600 hover:text-purple-500 transition-colors transform hover:scale-110" aria-label="Spotify Podcast"><i class="fab fa-spotify"></i></a>
</div>
</div>
</section>
<!-- ===== MODAL FOR PROJECT PREVIEW ===== -->
<div id="preview-modal" aria-hidden="true" class="fixed inset-0 bg-gray-900 bg-opacity-75 p-4 z-50 hidden">
<div class="bg-white rounded-lg shadow-xl w-full max-w-6xl h-full max-h-[90vh] flex flex-col">
<div class="flex justify-between items-center p-4 border-b">
<h3 id="modal-title" class="text-xl font-semibold text-gray-800">Live Preview</h3>
<button id="close-modal-button" class="text-gray-500 hover:text-gray-900 text-3xl font-bold">×</button>
</div>
<div class="flex-grow p-1">
<iframe id="preview-iframe" src="" class="w-full h-full border-0" title="Project Live Preview"></iframe>
</div>
</div>
</div>
</main>
<!-- ================= FOOTER ================= -->
<footer class="bg-gray-800 text-white py-10 rounded-t-lg shadow-inner">
<div class="container mx-auto px-4 text-center">
<div class="flex flex-col md:flex-row justify-between items-center mb-6">
<div class="mb-4 md:mb-0">
<h3 class="text-2xl font-bold text-indigo-300 font-space-grotesk">Hizaki Labs</h3>
<p class="text-gray-400 text-sm mt-1">Innovation & Expertise</p>
</div>
<nav class="flex flex-wrap justify-center space-x-4 md:space-x-6 text-gray-300">
<a href="#home" class="hover:text-white transition-colors">Home</a>
<a href="#services" class="hover:text-white transition-colors">Services</a>
<a href="cook.html" class="hover:text-white transition-colors">Portfolio</a>
<a href="#about" class="hover:text-white transition-colors">About</a>
<a href="#contact" class="hover:text-white transition-colors">Contact</a>
<a href="#socials" class="hover:text-white transition-colors">Socials</a>
</nav>
</div>
<div class="border-t border-gray-700 pt-6 text-gray-400 text-sm">
© <span id="current-year"></span> Hizaki Labs. All rights reserved.
</div>
</div>
</footer>
</body>
</html>