forked from Slipperybara/Portfolio-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
643 lines (606 loc) · 27.9 KB
/
index.html
File metadata and controls
643 lines (606 loc) · 27.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Mingyang's website</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="" name="keywords">
<meta content="" name="description">
<!-- Favicons -->
<link href="img/favicon.png" rel="icon">
<link href="img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Bootstrap CSS File -->
<link href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Libraries CSS Files -->
<link href="lib/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="lib/animate/animate.min.css" rel="stylesheet">
<link href="lib/ionicons/css/ionicons.min.css" rel="stylesheet">
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<!-- Main Stylesheet File -->
<link href="css/style.css" rel="stylesheet">
<style>
@media (min-width: 800px) {
.photos-container {
display: grid;
grid-template-columns: repeat(3, 1fr);
/* 3 columns */
grid-template-rows: repeat(2, 1fr);
/* 2 rows */
gap: 10px;
/* Add spacing between grid items if needed */
justify-content: space-around;
}
}
@media (max-width: 799px) {
.photos-container {
display: flex;
flex-direction: column;
gap: 20px;
/* Add spacing between grid items if needed */
justify-content: space-around;
margin-right: 30px;
margin-left: 30px;
}
}
.photos-wrapper {
display: flex;
flex: center;
margin-left: 20px;
margin-right: 20px;
}
.card-img {
padding: 10px;
}
.card-blog p {
position: relative;
left: 5px;
}
.btn-subtle {
background: none;
border: none;
color: #0078ff;
font-size: 0.85em;
text-transform: lowercase;
letter-spacing: 1px;
padding: 10px 0;
margin-top: 15px;
display: flex;
align-items: center;
gap: 8px;
cursor: pointer;
opacity: 0.8;
transition: all 0.3s ease;
}
.btn-subtle:hover {
opacity: 1;
transform: translateX(5px);
}
.btn-subtle i {
font-size: 0.7em;
transition: transform 0.3s ease;
}
.btn-subtle.active i {
transform: rotate(180deg);
}
.work-img img {
width: 100%;
height: 100%;
object-fit: cover;
}
</style>
<!-- =======================================================
Credits to: https://www.free-css.com/free-css-templates/page253/devfolio
Author: BootstrapMade.com
License: https://bootstrapmade.com/license/
======================================================= -->
</head>
<body id="page-top">
<!--/ Nav Star /-->
<nav class="navbar navbar-b navbar-trans navbar-expand-md fixed-top" id="mainNav">
<div class="container">
<a class="navbar-brand js-scroll" href="#page-top">Mingyang's website</a>
<button class="navbar-toggler collapsed" type="button" data-toggle="collapse" data-target="#navbarDefault"
aria-controls="navbarDefault" aria-expanded="false" aria-label="Toggle navigation">
<span></span>
<span></span>
<span></span>
</button>
<div class="navbar-collapse collapse justify-content-end" id="navbarDefault">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link js-scroll active" href="#home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll" href="#work">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll" href="#company">Organisations</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll" href="#contact">Contact Me</a>
</li>
</ul>
</div>
</div>
</nav>
<!--/ Nav End /-->
<!--/ Intro Skew Star /-->
<div id="home" class="intro route bg-image" style="background-image: url(img/background.png);">
<div class="overlay-itro"></div>
<div class="intro-content display-table">
<div class="table-cell">
<div class="container">
<!--<p class="display-6 color-d">Hello, world!</p>-->
<h1 class="intro-title mb-4">Hi, I am Mingyang</h1>
<p class="intro-subtitle"><span class="text-slider-items">Software Engineer, Cybersecurity enthusiast, Fuelled
by wanderlust, Lifelong learner</span><strong class="text-slider"></strong></p>
<!-- <p class="pt-3"><a class="btn btn-primary btn js-scroll px-4" href="#about" role="button">Learn More</a></p> -->
</div>
</div>
</div>
</div>
<!--/ Intro Skew End /-->
<section id="about" class="about-mf sect-pt4 route">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="box-shadow-full">
<div class="row">
<div class="col-md-12">
<!-- Skills Section -->
<div class="title-box-2">
<h5 class="title-left">
About
<a href="https://drive.google.com/file/d/1NH-9U6kbbKfTiEA9b2p_FVnvpxkNyX4f/view?usp=drive_link"
class="resume-link" onclick="window.open(this.href, '_blank'); return false;">
<i class="fa fa-download"></i> Resume
</a>
</h5>
</div>
<div class="skill-mf">
<!-- Languages -->
<div class="skill" data-category="language">Java</div>
<div class="skill" data-category="language">JavaScript</div>
<div class="skill" data-category="language">TypeScript</div>
<div class="skill" data-category="language">Python</div>
<div class="skill" data-category="language">C</div>
<div class="skill" data-category="language">C#</div>
<div class="skill" data-category="language">SQL</div>
<div class="skill" data-category="language">HTML</div>
<div class="skill" data-category="language">CSS</div>
<!-- Frameworks -->
<div class="skill" data-category="framework">React</div>
<div class="skill" data-category="framework">Node.js</div>
<div class="skill" data-category="framework">Angular</div>
<div class="skill" data-category="framework">JavaFX</div>
<div class="skill" data-category="framework">Express</div>
<!-- Tools -->
<div class="skill" data-category="tool">Git</div>
<div class="skill" data-category="tool">Github</div>
<div class="skill" data-category="tool">Docker</div>
<div class="skill" data-category="tool">PostgreSQL</div>
<div class="skill" data-category="tool">MongoDB</div>
<div class="skill" data-category="tool">Firebase</div>
</div>
<!-- About Text -->
<p class="lead">
Hello there! I’m Mingyang, and welcome to my website. I am an aspiring software engineer currently
studying at NUS. One thing about me is that I thrive on setting clear goals and seeing them through.
Once I decide to achieve something, I stay committed no matter how tough the challenge. I believe in
perseverance. I will sit down, grind it out, and figure things out no matter how many setbacks I face.
</p>
<div id="additional-content" style="display: none;">
<h5>Problem Solver</h5>
<p class="lead">
My passion for software engineering comes from its ability to turn ideas into reality. I enjoy the
process of breaking down complex problems and building functional solutions that work. For me, every
challenge is an opportunity to learn, improve, and grow. I take pride in tackling obstacles head-on
and finding creative ways to solve problems through code.
</p>
<h5>Security Enthusiast</h5>
<p class="lead">
I have a strong interest in computer security. It fascinates me how vulnerabilities like buffer
overflows, XSS, or SQL injection can exist in systems that were designed with usability in mind but
without proper consideration for security. This is why I advocate for a security by design mindset.
I believe systems should be built securely from the ground up, not fixed only after flaws are
exposed.
</p>
<h5>Explorer</h5>
<p class="lead">
Outside of tech, I love traveling. Exploring new places, cultures, and experiences gives me a sense
of freedom and curiosity. It reminds me that there is always something new to learn beyond the
screen and motivates me to keep growing as a person.
</p>
</div>
<button id="know-more-btn" class="btn-subtle">
<span>read more</span>
<i class="fa fa-chevron-down"></i>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--/ Section Portfolio Star /-->
<section id="work" class="portfolio-mf sect-pt4 route">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="title-box text-center">
<h3 class="title-a">
Projects
</h3>
<p class="subtitle-a">
Recent Projects
</p>
<div class="line-mf"></div>
</div>
</div>
</div>
<div class="work-container">
<div class="work-box">
<a href="https://github.com/TEAMMATES/teammates" class="project-link"
onclick="window.open(this.href, '_blank'); return false;">
<div class="work-img">
<img src="img/TEAMMATES.png" alt="" class="img-fluid">
</div>
<div class="work-content">
<div class="row">
<div class="col-sm-11">
<h2 class="w-title">TEAMMATES</h2>
<div class="w-more">
<p> TEAMMATES is a free online tool for managing peer evaluations and other feedback paths of your
students. It is provided as a cloud-based service for educators/students and is currently used by
hundreds of universities across the world.</p>
<span class="w-ctegory">Web Application</span> / <span class="w-ctegory">Java</span> / <span
class="w-ctegory">Typescript</span>/ <span class="w-ctegory">Angular</span> / <span
class="w-ctegory">HTML</span> / <span class="w-ctegory">SCSS</span> / <span
class="w-ctegory">PostgreSQL</span> / <span class="w-ctegory">Google Cloud Datastore</span> /
<span class="w-ctegory">Docker</span> / <span class="w-ctegory">Gradle</span> /
</div>
</div>
</div>
</div>
</a>
</div>
<div class="work-box">
<a href="https://github.com/AY2425S1-CS2103T-F08-1a/tp" class="project-link"
onclick="window.open(this.href, '_blank'); return false;">
<div class="work-img">
<img src="img/volunTier.png" alt="" class="img-fluid">
</div>
<div class="work-content">
<div class="row">
<div class="col-sm-11">
<h2 class="w-title">VolunTier</h2>
<div class="w-more">
<p> VolunTier is a top Tier solution for volunteer organisations specializing in teaching students
and managing a growing clientele efficiently. Designed for those comfortable with the Command Line
Interface (CLI) and quick typing, VolunTier is ideal for Singapore-based users with extensive
tutor and tutee data to manage across three subjects. It streamlines the process of adding,
editing, and deleting records for volunteers, students, and shared lessons.</p>
<span class="w-ctegory">Desktop Application</span> / <span class="w-ctegory">Java</span> / <span
class="w-ctegory">JavaFX</span>
</div>
</div>
</div>
</div>
</a>
</div>
<div class="work-box">
<a href="https://github.com/mingyang143/Frontend-final" class="project-link"
onclick="window.open(this.href, '_blank'); return false;">
<div class="work-img">
<img src="img/Producity.png" alt="" class="img-fluid">
</div>
<div class="work-content">
<div class="row">
<div class="col-sm-11">
<h2 class="w-title">Producity</h2>
<div class="w-more">
<p>Producity is a gamified habit-building web application that helps users stay consistent and curb
procrastination. As users complete tasks, they earn gold to build and grow a dynamic 3D pixel-art
city, which evolves as a reflection of their effort and progress.</p>
<span class="w-ctegory">Web application</span> / <span class="w-ctegory">Unity</span> / <span
class="w-ctegory">C#</span> / <span class="w-ctegory">Typescript</span> / <span
class="w-ctegory">React</span> / <span class="w-ctegory">Node.js</span> / <span
class="w-ctegory">MongoDB</span>
</div>
</div>
</div>
</div>
</a>
</div>
<div class="work-box">
<a href="https://github.com/mingyang143/ip" class="project-link"
onclick="window.open(this.href, '_blank'); return false;">
<div class="work-img">
<img src="img/friday.png" alt="" class="img-fluid">
</div>
<div class="work-content">
<div class="row">
<div class="col-sm-11">
<h2 class="w-title">Friday — Task Management Desktop Application</h2>
<div class="w-more">
<p>Friday is a simple and efficient desktop application that helps users manage their tasks through
a chatbox interface. It supports adding, deleting, sorting, and searching tasks, with features
like automatic saving and task status updates. Designed with a clean GUI and CLI option, Friday
makes task management easy, systematic, and organised.
</p>
<span class="w-ctegory">Desktop Application</span> / <span class="w-ctegory">Java</span> / <span
class="w-ctegory">Javafx</span>
</div>
</div>
</div>
</div>
</a>
</div>
<div class="work-box">
<a href="#" class="project-link" onclick="return false;">
<div class="work-img">
<img src="img/biolab.svg" alt="" class="img-fluid">
</div>
<div class="work-content">
<div class="row">
<div class="col-sm-11">
<h2 class="w-title">NUS Biolab Bug</h2>
<div class="w-more">
<p>A centralized logging and debugging solution developed to resolve a non-deterministic bug in the
NUS Biolab authentication system. Implemented full-stack logging framework to trace activity
across all components, identified a race condition within a Kotlin coroutine controlling the timer
loop, and enforced deterministic coroutine cancellation to eliminate duplicate entries and improve
session reliability.</p>
<span class="w-ctegory">Full-Stack Application</span> / <span class="w-ctegory">Android</span> /
<span class="w-ctegory">Kotlin</span> / <span class="w-ctegory">Jetpack Compose</span> / <span
class="w-ctegory">Node.js</span> / <span class="w-ctegory">Next.js</span> / <span
class="w-ctegory">Docker</span> / <span class="w-ctegory">MQTT</span>
</div>
</div>
</div>
</div>
</a>
</div>
<div class="work-box">
<a href="#" class="project-link" onclick="return false;">
<div class="work-img">
<img src="img/onvif.svg" alt="" class="img-fluid">
</div>
<div class="work-content">
<div class="row">
<div class="col-sm-11">
<h2 class="w-title">ONVIF RTSP Streaming</h2>
<div class="w-more">
<p>Implemented ONVIF Profile M support within an open-source media server to enable real-time
transmission of license plate metadata through RTSP video streams. Extended a C-based ONVIF Simple
Server to handle Profile M operations, developed proof-of-concept event streaming, and created an
RTSP stream with overlaid license plate metadata for cross-vendor interoperability in surveillance
systems.</p>
<span class="w-ctegory">Systems Programming</span> / <span class="w-ctegory">C</span> / <span
class="w-ctegory">FFmpeg</span> / <span class="w-ctegory">GStreamer</span> / <span
class="w-ctegory">ONVIF</span> / <span class="w-ctegory">RTSP</span> / <span
class="w-ctegory">MediaMTX</span> / <span class="w-ctegory">Wireshark</span>
</div>
</div>
</div>
</div>
</a>
</div>
<div class="work-box">
<a href="#" class="project-link" onclick="return false;">
<div class="work-img">
<img src="img/resume-rag.svg" alt="" class="img-fluid">
</div>
<div class="work-content">
<div class="row">
<div class="col-sm-11">
<h2 class="w-title">Resume-RAG System</h2>
<div class="w-more">
<p>An AI-assisted resume analysis system built on Qwen2.5 LLM to streamline hiring workflows.
Designed and implemented an end-to-end RAG-powered pipeline that ingests bulk resumes, auto-tags
skills based on job descriptions, enables precise candidate filtering and ranking, and features a
chatbot interface for resume summaries and automated candidate communication.</p>
<span class="w-ctegory">AI Application</span> / <span class="w-ctegory">Python</span> / <span
class="w-ctegory">Streamlit</span> / <span class="w-ctegory">PostgreSQL</span> / <span
class="w-ctegory">Qwen2.5</span> / <span class="w-ctegory">RAG</span> / <span
class="w-ctegory">LLM</span>
</div>
</div>
</div>
</div>
</a>
</div>
<div class="work-box">
<a href="#" class="project-link" onclick="return false;">
<div class="work-img">
<img src="img/triple-s.svg" alt="" class="img-fluid">
</div>
<div class="work-content">
<div class="row">
<div class="col-sm-11">
<h2 class="w-title">Triple S — Security Alert Platform</h2>
<div class="w-more">
<p>An end-to-end security alert management system integrating with the Senstar server. Built a
full-stack MERN web portal with a decoupled middleware layer that communicates with the Senstar
server via REST API. Designed for AWS cloud deployment with containerized 3-tier architecture,
featuring interactive graphs and a management dashboard for alert approval and rejection.</p>
<span class="w-ctegory">Web Application</span> / <span class="w-ctegory">MongoDB</span> / <span
class="w-ctegory">Express.js</span> / <span class="w-ctegory">React</span> / <span
class="w-ctegory">Node.js</span> / <span class="w-ctegory">AWS</span> / <span
class="w-ctegory">Docker</span> / <span class="w-ctegory">Python</span> / <span
class="w-ctegory">REST API</span>
</div>
</div>
</div>
</div>
</a>
</div>
</div>
</div>
</section>
<!--/ Section Portfolio End /-->
<!--/ Section Company Star /-->
<section id="company" class="portfolio-mf sect-pt4 route">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="title-box text-center">
<h3 class="title-a">
Organisations
</h3>
<p class="subtitle-a">
Organisations I've contributed to
</p>
<div class="line-mf"></div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="work-box">
<a href="https://drive.google.com/file/d/1NH-9U6kbbKfTiEA9b2p_FVnvpxkNyX4f/view?usp=drive_link"
class="org-link" onclick="window.open(this.href, '_blank'); return false;">
<div class="work-img">
<img src="img/TEAMMATES.png" alt="" class="img-fluid">
</div>
<div class="work-content">
<div class="row">
<div class="col-sm-11">
<h2 class="w-title">TEAMMATES</h2>
<div class="w-more">
<p>Manage and review pull requests from university students worldwide, ensuring code quality and
smooth contributions. Lead the migration from Google Datastore to PostgreSQL, refactoring unit
tests and integration tests to support the transition (~5KLoC).</p> <span class="w-date">Jan
20225 - Present</span>
</div>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="col-md-4">
<div class="work-box">
<a href="#" class="org-link" onclick="window.open(this.href, '_blank'); return false;">
<div class="work-img">
<img src="img/pensees.png" alt="" class="img-fluid">
</div>
<div class="work-content">
<div class="row">
<div class="col-sm-11">
<h2 class="w-title">Pensees Systems Pte. Ltd.</h2>
<div class="w-more">
<p>Completed 4 full-stack software engineering projects spanning AI-powered biometric systems,
video surveillance protocols, LLM-based automation, and cloud-native web applications. Delivered
production-ready solutions involving Android development, systems programming in C, MERN stack
architecture, and AI integration with RAG pipelines. Gained hands-on experience in debugging
complex distributed systems, implementing industry protocols (ONVIF, RTSP), and deploying
containerized applications on AWS.</p>
<span class="w-date">Apr 2025 - Dec 2025</span>
</div>
</div>
</div>
</div>
</a>
</div>
</div>
</div>
</div>
</section>
<!--/ Section Portfolio End /-->
<!--/ Section Contact-Footer Star /-->
<section class="paralax-mf footer-paralax sect-mt4 route" style="background-color: #1a1a1a;">
<div class="overlay-mf"></div>
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="contact-mf">
<div id="contact" class="box-shadow-full">
<div class="row">
<div class="col-md-6">
<div class="title-box-2">
<h5 class="title-left">
Contact me
</h5>
</div>
</div>
<div class="col-md-6">
<div class="more-info">
<ul class="list-ico">
<li><span class="ion-ios-location"></span> Residential College 4, 2 College Drive, NUS, Singapore
</li>
<li><span class="ion-ios-telephone"></span> (+65) 9189 2869</li>
<li><span class="ion-email"></span> mingyangli@u.nus.edu</li>
</ul>
</div>
<div class="socials">
<ul>
<li><a href="https://github.com/mingyang143"><span class="ico-circle"><i
class="ion-social-github"></i></span></a></li>
<li><a href="https://www.linkedin.com/in/mingyang143/"><span class="ico-circle"><i
class="ion-social-linkedin"></i></span></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<footer>
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="copyright-box">
<div class="credits">
<!--
All the links in the footer should remain intact.
You can delete the links only if you purchased the pro version.
Licensing information: https://bootstrapmade.com/license/
Purchase the pro version with working PHP/AJAX contact form: https://bootstrapmade.com/buy/?theme=DevFolio
-->
Made by Li Mingyang
</div>
</div>
</div>
</div>
</div>
</footer>
</section>
<!--/ Section Contact-footer End /-->
<a href="#" class="back-to-top"><i class="fa fa-chevron-up"></i></a>
<div id="preloader"></div>
<!-- JavaScript Libraries -->
<script src="lib/jquery/jquery.min.js"></script>
<script src="lib/jquery/jquery-migrate.min.js"></script>
<script src="lib/popper/popper.min.js"></script>
<script src="lib/bootstrap/js/bootstrap.min.js"></script>
<script src="lib/easing/easing.min.js"></script>
<script src="lib/counterup/jquery.waypoints.min.js"></script>
<script src="lib/counterup/jquery.counterup.js"></script>
<script src="lib/owlcarousel/owl.carousel.min.js"></script>
<script src="lib/typed/typed.min.js"></script>
<!-- Contact Form JavaScript File -->
<script src="contactform/contactform.js"></script>
<!-- Template Main Javascript File -->
<script src="js/main.js"></script>
<script>
document.getElementById('know-more-btn').addEventListener('click', function () {
document.getElementById('additional-content').style.display = 'block';
});
</script>
<!-- Add this right before the closing </body> tag -->
<div class="modal-overlay" id="modal">
<div class="modal-content">
<h2>Tempio Project</h2>
<p>This project is currently under development. Please check back later!</p>
<button class="close-btn" id="closeModal">Close</button>
</div>
</div>
</body>
</html>