-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
616 lines (577 loc) · 36.2 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="title" content="Hamza Zaidi - Full Stack Developer Portfolio">
<meta name="description"
content="Discover Hamza Zaidi's professional portfolio showcasing expertise in full-stack development, web applications, and innovative solutions. Explore projects, skills, and achievements.">
<meta name="keywords"
content="Hamza Zaidi, Full Stack Developer, Portfolio, Web Development, React.js, Frontend, Backend, Software Engineer, Professional Portfolio, Innovative Solutions, syed hamza jaffar zaidi, hamza jaffar, portfolio website, hamza">
<meta name="author" content="Syed Hamza Jaffar Zaidi">
<meta name="robots" content="index, follow">
<meta name="language" content="English">
<meta name="revisit-after" content="7 days">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" href="./assets/img/favicon.png">
<title>Hamza Zaidi Portfolio</title>
<!--=================== Main CSS ====================-->
<link rel="stylesheet" href="main.css">
<!--=================== Google Fonts ====================-->
<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=Space+Grotesk:wght@400;500;600;700&display=swap"
rel="stylesheet">
<!--=================== Remixicons ====================-->
<link href="https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css" rel="stylesheet">
<!--=================== SwiperJS CSS ====================-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@8/swiper-bundle.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.1/css/all.min.css">
</head>
<body>
<!--=================== Header ====================-->
<header id="header" class="header">
<div class="container">
<nav class="nav">
<a href="/" class="nav__brand">
<i class="ri-code-s-slash-line"></i>Hamza<Span>Zaidi</Span>
</a>
<div class="nav__menu" id="nav-menu">
<ul class="nav__list">
<li class="nav__item">
<a href="#hero" class="nav__link">Home</a>
</li>
<li class="nav__item">
<a href="#about" class="nav__link">About</a>
</li>
<li class="nav__item">
<a href="#qualification" class="nav__link">Qualification</a>
</li>
<li class="nav__item">
<a href="#services" class="nav__link">Services</a>
</li>
<li class="nav__item">
<a href="#project" class="nav__link">Projects</a>
</li>
<li class="nav__item">
<a href="https://shjz.hashnode.dev/" class="nav__link">Blogs</a>
</li>
<li class="nav__item">
<a href="#contact" class="nav__link">Contact</a>
</li>
</ul>
</div>
<div class="nav__toggle">
<i id="nav-toggle" class="ri-menu-3-line"></i>
</div>
</nav>
</div>
</header>
<!--=================== main ====================-->
<main class="main">
<!--=================== Hero ====================-->
<section id="hero" class="hero">
<div class="container">
<div class="d-grid hero__wrapper">
<div class="hero__content">
<h1 class="hero__title">Hi, I am Hamza Zaidi</h1>
<h2 id="typewriter"
style="font-size: 25px; font-weight: bold; color: #1e90ff; border-right: 2px solid #1e90ff; white-space: nowrap; overflow: hidden; display: inline-block;">
</h2>
<p style="margin-top:15px;" class="hero__description">🌟 Passionate Certified Web Developer and
Computer Science student
🎓, dedicated to crafting user-centric websites and web apps 💻.
Proficient in many programming languages 👨💻, delivering top-notch, responsive, and
visually stunning websites 🌐. A quick learner and problem-solving enthusiast 🤔, driven by
creativity and strategic thinking 💡. Currently exploring opportunities to contribute skills
and collaborate on dynamic projects 🤝.
</p>
<a href="mailto:shjz.dev@gmail.com" class="btn--primary"
style="padding:1.5rem 4rem;margin-bottom:10px;display:inline-block;">Hire Me!</a>
<div class="hero__info">
<div class="hero__info-wrapper">
<p class="hero__info-number">50+</p>
<h2 class="hero__info-title">Projects<br>Completed</h2>
</div>
</div>
</div>
<img src="assets/img/profile-pic1.png" alt="Hamza" class="hero__img">
</div>
</div>
</section>
<!--=================== About ====================-->
<section id="about" class="section about">
<div class="container">
<div class="section__header">
<h2 class="section__title">About Me</h2>
<span class="section__subtitle">Who am I</span>
</div>
<div class="d-grid about__wrapper">
<div class="about__content">
<h3 class="about__title">I'm a Professional and Experienced Software Developer.</h3>
<p class="about__description">I have a strong focus on creating intuitive and efficient software
solutions to meet the needs of clients and end-users.
When I'm not coding, I love to stay up-to-date with the latest technology trends and
imporiving my skills.
I'm always eager to take new challenges and work with a team to deliver exceptional results.
</p>
<a href="#project" class="btn btn--primary">Know More</a>
</div>
<div class="skills">
<h3 class="skills__title">Technologies I've been working with:</h3>
<div class="skills__wrapper">
<div class="skills__content">
<h4 class="skills__subtitle">Backend</h4>
<ul class="skills__list">
<li class="skills__item"><i class="ri-arrow-right-s-fill"></i>
PHP</li>
<li class="skills__item"><i class="ri-arrow-right-s-fill"></i>
Node.js</li>
<li class="skills__item"><i class="ri-arrow-right-s-fill"></i>
MongoDB</li>
<li class="skills__item"><i class="ri-arrow-right-s-fill"></i>
MySQL</li>
</ul>
</div>
<div class="skills__content">
<h4 class="skills__subtitle">Frontend</h4>
<ul class="skills__list">
<li class="skills__item"><i class="ri-arrow-right-s-fill"></i>
HTML</li>
<li class="skills__item"><i class="ri-arrow-right-s-fill"></i>
CSS</li>
<li class="skills__item"><i class="ri-arrow-right-s-fill"></i>
JavaScript</li>
<li class="skills__item"><i class="ri-arrow-right-s-fill"></i>
Bootstrap</li>
<li class="skills__item"><i class="ri-arrow-right-s-fill"></i>
React</li>
<li class="skills__item"><i class="ri-arrow-right-s-fill"></i>
Next JS</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!--=================== Qualification ====================-->
<section id="qualification" class="section qualification">
<div class="container">
<div class="section__header">
<h2 class="section__title">Qualification</h2>
<span class="section__subtitle">Experience & Education</span>
</div>
<!--============== Professional Experience ============-->
<div class="qualification__wrapper">
<h3 class="qualification__name">
<i class="ri-briefcase-fill"></i>
Professional Experience
</h3>
<div class="d-grid qualification__content">
<!-- Experience 1-->
<div class="qualification__item">
<h3 class="qualification__title">Freelance software Developer</h3>
<p class="qualification__description">As a freelance software developer, I am passionate
about creating innovative and effective software solutions thats meet the unique needs
of my clients.
Whether it's building a custom web application or automating business processes, I bring
expertise and creativity to every project,
and I am always looking for new and challenging projects to tackle.
</p>
<span class="qualification__date">Currently from 2019</span>
</div>
</div>
</div>
<!--============== Education ============-->
<div class="qualification__wrapper">
<h3 class="qualification__name">
<i class="ri-booklet-fill"></i>
Education
</h3>
<div class="d-grid qualification__content">
<!-- Education 1-->
<div class="qualification__item">
<h3 class="qualification__title">Bachelor's in Computer Science</h3>
<h4 class="qualification__title">Iqra University</h4>
<p class="qualification__description">As a computer science student, I have a strong
foundation in object-oriented algorithms, data structures, software design and
Development.
My coursework has provided me with a deep understanding of the principles and practices
of computer science,
and I have honed my programming skills through various projects and assignments.
</p>
<span class="qualification__date">Completed in 2025</span>
</div>
<!-- Education 2-->
<div class="qualification__item">
<h3 class="qualification__title">Intermediate</h3>
<h4 class="qualification__title">Govt. Jinnah Boys College</h4>
<span class="qualification__date">Completed in 2019</span>
</div>
<!-- Education 3-->
<div class="qualification__item">
<h3 class="qualification__title">Matriculation</h3>
<h4 class="qualification__title">Fatimiyah Boys School</h4>
<p class="qualification__description">
</p>
<span class="qualification__date">Completed in 2017</span>
</div>
</div>
</div>
<div class="qualification__footer">
<p class="qualification__footer-text">See my full resume</p>
<a href="./assets/My Resume 1.pdf" download class="btn btn--primary">Resume</a>
</div>
</div>
</section>
<!--=================== services ====================-->
<section id="services" class="section services" style="padding: 80px 0; background-color: inherit;">
<div style="max-width: 1200px; margin: 0 auto; padding: 0 24px;">
<h2 style="font-size: 32px; font-weight: bold; text-align: center; color: white; margin-bottom: 32px;">
Services
</h2>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px;">
<!-- Front-End Development -->
<div
style="background-color: black; padding: 24px; border-radius: 8px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); transition: transform 0.3s, box-shadow 0.3s;">
<div style="display: flex; justify-content: center; margin-bottom: 16px;">
<i class="ri-layout-4-fill" style="font-size: 40px; color: #4299e1;"></i>
</div>
<h3
style="font-size: 20px; font-weight: 600; text-align: center; margin-bottom: 8px; color: white;">
Front-End Development
</h3>
<p style="color: #718096; text-align: center;">Creating responsive and interactive user
interfaces using modern web technologies.</p>
</div>
<!-- UI/UX Design -->
<div
style="background-color: black; padding: 24px; border-radius: 8px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); transition: transform 0.3s, box-shadow 0.3s;">
<div style="display: flex; justify-content: center; margin-bottom: 16px;">
<i class="ri-pen-nib-fill" style="font-size: 40px; color: #9f7aea;"></i>
</div>
<h3
style="font-size: 20px; font-weight: 600; text-align: center; margin-bottom: 8px; color: white;">
UI/UX Design
</h3>
<p style="color: #718096; text-align: center;">Designing intuitive and visually appealing user
experiences for web and mobile applications.</p>
</div>
<!-- Full-Stack Projects -->
<div
style="background-color: black; padding: 24px; border-radius: 8px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); transition: transform 0.3s, box-shadow 0.3s;">
<div style="display: flex; justify-content: center; margin-bottom: 16px;">
<i class="ri-code-s-slash-line" style="font-size: 40px; color: #48bb78;"></i>
</div>
<h3
style="font-size: 20px; font-weight: 600; text-align: center; margin-bottom: 8px; color: white;">
Full-Stack Projects
</h3>
<p style="color: #718096; text-align: center;">Developing end-to-end web applications with both
front-end and back-end functionalities.</p>
</div>
<!-- Mobile App Development -->
<div
style="background-color: black; padding: 24px; border-radius: 8px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); transition: transform 0.3s, box-shadow 0.3s;">
<div style="display: flex; justify-content: center; margin-bottom: 16px;">
<i class="ri-smartphone-line" style="font-size: 40px; color: #319795;"></i>
</div>
<h3
style="font-size: 20px; font-weight: 600; text-align: center; margin-bottom: 8px; color: white;">
Mobile App Development
</h3>
<p style="color: #718096; text-align: center;">Building user-friendly mobile applications for
Android platforms using Flutter and React Native.</p>
</div>
<!-- Social Media Marketing -->
<div
style="background-color: black; padding: 24px; border-radius: 8px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); transition: transform 0.3s, box-shadow 0.3s;">
<div style="display: flex; justify-content: center; margin-bottom: 16px;">
<i class="ri-share-fill" style="font-size: 40px; color: #ecc94b;"></i>
</div>
<h3
style="font-size: 20px; font-weight: 600; text-align: center; margin-bottom: 8px; color: white;">
Social Media Marketing
</h3>
<p style="color: #718096; text-align: center;">Promoting and managing businesses on platforms
like Facebook, Instagram, Twitter, and LinkedIn.</p>
</div>
<!-- MS Office Services -->
<div
style="background-color: black; padding: 24px; border-radius: 8px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); transition: transform 0.3s, box-shadow 0.3s;">
<div style="display: flex; justify-content: center; margin-bottom: 16px;">
<i class="ri-file-fill" style="font-size: 40px; color: #5a67d8;"></i>
</div>
<h3
style="font-size: 20px; font-weight: 600; text-align: center; margin-bottom: 8px; color: white;">
MS Office Services
</h3>
<p style="color: #718096; text-align: center;">Expertise in MS Word, Excel, PowerPoint, and
Power BI for business productivity solutions.</p>
</div>
<!-- Graphic Designing Services -->
<div
style="background-color: black; padding: 24px; border-radius: 8px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); transition: transform 0.3s, box-shadow 0.3s;">
<div style="display: flex; justify-content: center; margin-bottom: 16px;">
<i class="ri-palette-line" style="font-size: 40px; color: #d45757;"></i>
</div>
<h3
style="font-size: 20px; font-weight: 600; text-align: center; margin-bottom: 8px; color: white;">
Graphic Designing Services
</h3>
<p style="color: #718096; text-align: center;">Delivering innovative designs to elevate your
brand and captivate your audience using Adobe software, Canva, and AI tools.</p>
</div>
<!-- Other Miscellaneous Services -->
<div
style="background-color: black; padding: 24px; border-radius: 8px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); transition: transform 0.3s, box-shadow 0.3s;">
<div style="display: flex; justify-content: center; margin-bottom: 16px;">
<i class="ri-lightbulb-flash-fill" style="font-size: 40px; color: #00ccff;"></i>
</div>
<h3
style="font-size: 20px; font-weight: 600; text-align: center; margin-bottom: 8px; color: white;">
Other Miscellaneous Services
</h3>
<p style="color: #718096; text-align: center;">Providing tailored solutions and custom services
for any unique requirements. You name it, we’ll make it happen!</p>
</div>
</div>
</div>
</section>
<!--=================== Projects ====================-->
<section id="project" class="section project">
<div class="container">
<div class="section__header">
<h2 class="section__title">Projects</h2>
<span class="section__subtitle">My recent work</span>
</div>
<div class="d-grid project__wrapper">
<!--============== project 1 =============-->
<div class="project__content">
<img src="assets/img/project1.png" alt="Agency Website" class="project__img">
<a href="https://cryptoverse2x.netlify.app/" class="project__link">
<h3 class="project__title">Cryptoverse</h3>
</a>
<p class="project__description">Cryptoverse is a React app using the CoinGecko API to display
real-time cryptocurrency data, allowing users to search coins, view details, and explore the
top 100 by market cap in multiple currencies. 💰</p>
<a href="https://github.com/HamzaZaidiX/Cryptoverse" class="project__link">View Project
<i class="ri-arrow-right-line"></i></a>
</div>
<!--============== project 2 =============-->
<div class="project__content">
<img src="assets/img/project2.png" alt="Cryptoverse " class="project__img">
<a href="https://play-hangman-shjz.netlify.app/" class="project__link">
<h3 class="project__title">Hangman Game</h3>
</a>
<p class="project__description">Hangman Game using Vite JS, Typescript and some CSS styling so
Play the Hangman and Guess the Words with friends!</p>
<a href="https://github.com/HamzaZaidiX/Hangman-Game" class="project__link">View Project
<i class="ri-arrow-right-line"></i></a>
</div>
<!--============== project 3 =============-->
<div class="project__content">
<img src="assets/img/project3.png" alt="Nike Landing Page" class="project__img">
<a href="https://nike-shjz.netlify.app/" class="project__link">
<h3 class="project__title">Nike Landing Page</h3>
</a>
<p class="project__description">Nike landing page built using React.js and Tailwind CSS a
responsive and visually appealing website.</p>
<a href="https://github.com/HamzaZaidiX/Nike-Landing-Page" class="project__link">View Project
<i class="ri-arrow-right-line"></i></a>
</div>
<!-- ============== project 4 ============= -->
<div class="project__content">
<img src="assets/img/project4.png" alt="linktree clone" class="project__img">
<a href="https://github.com/HamzaZaidiX/Linktree-Clone" class="project__link">
<h3 class="project__title">Linktree Clone</h3>
</a>
<p class="project__description">Linktree Clone using Next JS, MongoDb and Tailwind CSS so you
can give your all Social Links in One place and Share with your friends!</p>
<a href="https://github.com/HamzaZaidiX/Linktree-Clone" class="project__link">View Project
<i class="ri-arrow-right-line"></i></a>
</div>
<!-- ============== project 5 ============= -->
<div class="project__content">
<img src="assets/img/project5.png" alt="Gemini Ai clone" class="project__img">
<a href="https://gemini-clone-shjz.netlify.app/" class="project__link">
<h3 class="project__title">Gemini AI Clone</h3>
</a>
<p class="project__description">Gemini Clone is a project aimed at replicating the functionality
of Gemini AI, powered by the Google Gemini API, using React JS, Vite JS and some CSS styling
🤖💻</p>
<a href="https://github.com/HamzaZaidiX/Gemini-Clone" class="project__link">View Project
<i class="ri-arrow-right-line"></i></a>
</div>
<!-- ============== project 6 ============= -->
<div class="project__content">
<img src="assets/img/project6.png" alt="News 4U" class="project__img">
<a href="https://github.com/HamzaZaidiX/News-4-U" class="project__link">
<h3 class="project__title">News 4U</h3>
</a>
<p class="project__description">News 4 U is the Quickest News Platform which gives to News when
you want inspired to build in Next JS, Typescript and using NEWS API to get latest news for
you! 📰😄</p>
<a href="https://github.com/HamzaZaidiX/News-4-U" class="project__link">View Project
<i class="ri-arrow-right-line"></i></a>
</div>
</div>
<div style="align-items: center;justify-content: center;display: flex; margin-top:10px;"><a
href="https://github.com/HamzaZaidiX?tab=repositories" class="btn--primary"
style="padding:1.5rem 4rem;margin-top:10px;display: inline-block;align-items:center;text-align:center;justify-content:center;">View
More Projects
<i style="text-align:center;" class="fa-solid fa-angle-down fa-bounce"></i></a></div>
</div>
</section>
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</section>
<!--=================== Contact ====================-->
<section id="contact" class="section contact">
<div class="container">
<div class="d-grid contact__wrapper">
<div class="contact__content">
<h2 class="contact__title">Interested in working together? Let's talk</h2>
<p class="contact__description">
Ready to work together on your next software project? I'd love to hear from you!
Feel free to get in touch using the contact information below.
Whether uou have a specific project in mind or just want to chat about your software
development needs , I am here to help.
I will respond to your message as quickly as possible and look forward to connecting with
you soon.
</p>
</div>
<div class="contact__btn">
<a style="align-items:center; gap:10px; text-align:center;"
href="https://www.linkedin.com/in/shjz" class="btn btn--secondary">Get in touch
<i class="fa-solid fa-handshake"></i></a>
</div>
</div>
<!-- Contact Form -->
<div
style="display: flex; min-height: 100vh; font-family: 'Montserrat', sans-serif; font-weight: 700; letter-spacing: 1.4px; margin-top: 10px;">
<div style="flex: 0 1 700px; margin: auto; padding: 10px; width: 100%;">
<div
style="position: relative; background: #3e3e3e; border-radius: 15px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); width: 100%;">
<div
style="display: flex; align-items: center; padding: 10px 20px; background: #4d4d4f; border-top-left-radius: 15px; border-top-right-radius: 15px;">
<div style="margin-right: auto;">
<div
style="display: inline-block; width: 8px; height: 8px; margin-right: 3px; border-radius: 8px; background: #ed1c6f;">
</div>
<div
style="display: inline-block; width: 8px; height: 8px; margin-right: 3px; border-radius: 8px; background: #e8e925;">
</div>
<div
style="display: inline-block; width: 8px; height: 8px; border-radius: 8px; background: #74c54f;">
</div>
</div>
</div>
<div style="display: flex; flex-wrap: wrap; flex-direction: column; padding: 20px;">
<div style="flex: 1; padding: 20px; color: #32a852;">
<div style="font-size: 26px; margin-bottom: 10px;">
<span>CONTACT ME</span>
</div>
</div>
<div style="">
<!-- Embed Google Form -->
<iframe
src="https://docs.google.com/forms/d/e/1FAIpQLScEgPBHT_SO-kOkbiZ_-qinQ5Oxl3ByqMWKsocY7SscN0eK8w/viewform?embedded=true"
width="100%" height="500" frameborder="0" marginheight="0" marginwidth="0">
</iframe>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
<!--=================== footer ====================-->
<footer id="footer" class="footer">
<div class="container">
<div class="d-grid footer__wrapper"
style="display:flex;justify-content:center; align-items:center; text-align:center;">
<div class="footer__content">
<h4 class="footer__title">Follow Me</h4>
<ul class="footer__social-list">
<li class="footer__social-item">
<a href="mailto:shjz.dev@gmail.com" target="_blank" class="footer__social-link">
<i class="fa-regular fa-envelope fa-beat-fade"></i>
</a>
</li>
<li class="footer__social-item">
<a href="https://api.whatsapp.com/send?phone=923352851947&app=facebook&entry_point=page_cta&fbclid=IwY2xjawGy26kBHUhVHIUy2pIkHelXuOqxRbDCgRi-MgHY7s7Ca9QM4aTeZvJRiN2J9FbU5Q"
target="_blank" class="footer__social-link">
<i class="fa-brands fa-whatsapp fa-beat-fade"></i>
</a>
</li>
<li class="footer__social-item">
<a href="https://www.instagram.com/hamza_zaidi_x" target="_blank"
class="footer__social-link">
<i class="fa-brands fa-instagram fa-beat-fade"></i>
</a>
</li>
<li class="footer__social-item">
<a href="https://www.linkedin.com/in/shjz/" target="_blank" class="footer__social-link">
<i class="fa-brands fa-linkedin-in fa-beat-fade"></i>
</a>
</li>
<li class="footer__social-item">
<a href="https://github.com/HamzaZaidiX" target="_blank" class="footer__social-link">
<i class="fa-brands fa-github fa-fade"></i>
</a>
</li>
<li class="footer__social-item">
<a href="https://twitter.com/hamzajzaidi" target="_blank" class="footer__social-link">
<i class="fa-brands fa-square-x-twitter fa-fade"></i>
</a>
</li>
</ul>
</div>
</div>
<p class="footer__copyright">© 2024 Hamza Zaidi. All Rights Reserved</p>
</div>
</footer>
<!--=================== SwiperJS ====================-->
<script src="https://cdn.jsdelivr.net/npm/swiper@8/swiper-bundle.min.js"></script>
<!--=================== ScrollReveal ==================-->
<script src="https://unpkg.com/scrollreveal"></script>
<!--=================== Main JS ====================-->
<script src="assets/js/main.js"></script>
</body>
</html>
<script>
const typewriterTexts = [
"Frontend Web Developer",
"Software Engineer",
"Full Stack Developer",
"Creative Problem Solver",
];
let currentTextIndex = 0;
let charIndex = 0;
const typewriterElement = document.getElementById("typewriter");
function typeEffect() {
// Get the current text
const currentText = typewriterTexts[currentTextIndex];
// Update the text content with the next character
typewriterElement.textContent = currentText.slice(0, charIndex);
// Increment the character index
charIndex++;
// If the full text has been typed, pause and then switch to the next text
if (charIndex > currentText.length) {
setTimeout(() => {
charIndex = 0; // Reset character index
currentTextIndex = (currentTextIndex + 1) % typewriterTexts.length; // Move to next text
}, 2000); // Pause before switching
}
// Continue typing every 100ms
setTimeout(typeEffect, 100);
}
// Start the typewriter effect
typeEffect();
</script>