-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
714 lines (669 loc) · 26.8 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
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
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
<!DOCTYPE html>
<html lang="en" data-bs-theme="auto">
<head>
<script src="js/color-modes.js"></script>
<meta charset="UTF-8" />
<meta http-equiv="“Pragma”" content="”no-cache”" />
<meta http-equiv="“Expires”" content="”-1″" />
<meta http-equiv="“CACHE-CONTROL”" content="”NO-CACHE”" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Hervé Bakongo, Fullstack web Developer" />
<!-- Favicons -->
<link
rel="apple-touch-icon"
href="images/app-development.png"
sizes="180x180"
/>
<link
rel="icon"
href="images/app-development.png"
sizes="32x32"
type="image/png"
/>
<link
rel="icon"
href="images/app-development.png"
sizes="16x16"
type="image/png"
/>
<link rel="manifest" href="manifest.json" />
<link rel="mask-icon" href="images/app-development.png" color="#712cf9" />
<link rel="icon" href="images/app-development.png" />
<meta name="theme-color" content="#712cf9" />
<!-- CSS Stylesheets -->
<link href="assets/aos/aos.css" rel="stylesheet" />
<!-- <link href="assets/bootstrap/css/bootstrap.min.css" rel="stylesheet" /> -->
<!-- <link rel="stylesheet" href="css/master.css" /> -->
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/cover.css" />
<link href="assets/swiper/swiper-bundle.min.css" rel="stylesheet" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
/>
<link href="assets/bootstrap-icons/bootstrap-icons.css" rel="stylesheet" />
<link href="assets/boxicons/css/boxicons.min.css" rel="stylesheet" />
<title>Herve Portfolio</title>
</head>
<body>
<!-- Theme changing -->
<svg xmlns="http://www.w3.org/2000/svg" class="d-none">
<symbol id="check2" viewBox="0 0 16 16">
<path
d="M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z"
/>
</symbol>
<symbol id="circle-half" viewBox="0 0 16 16">
<path d="M8 15A7 7 0 1 0 8 1v14zm0 1A8 8 0 1 1 8 0a8 8 0 0 1 0 16z" />
</symbol>
<symbol id="moon-stars-fill" viewBox="0 0 16 16">
<path
d="M6 .278a.768.768 0 0 1 .08.858 7.208 7.208 0 0 0-.878 3.46c0 4.021 3.278 7.277 7.318 7.277.527 0 1.04-.055 1.533-.16a.787.787 0 0 1 .81.316.733.733 0 0 1-.031.893A8.349 8.349 0 0 1 8.344 16C3.734 16 0 12.286 0 7.71 0 4.266 2.114 1.312 5.124.06A.752.752 0 0 1 6 .278z"
/>
<path
d="M10.794 3.148a.217.217 0 0 1 .412 0l.387 1.162c.173.518.579.924 1.097 1.097l1.162.387a.217.217 0 0 1 0 .412l-1.162.387a1.734 1.734 0 0 0-1.097 1.097l-.387 1.162a.217.217 0 0 1-.412 0l-.387-1.162A1.734 1.734 0 0 0 9.31 6.593l-1.162-.387a.217.217 0 0 1 0-.412l1.162-.387a1.734 1.734 0 0 0 1.097-1.097l.387-1.162zM13.863.099a.145.145 0 0 1 .274 0l.258.774c.115.346.386.617.732.732l.774.258a.145.145 0 0 1 0 .274l-.774.258a1.156 1.156 0 0 0-.732.732l-.258.774a.145.145 0 0 1-.274 0l-.258-.774a1.156 1.156 0 0 0-.732-.732l-.774-.258a.145.145 0 0 1 0-.274l.774-.258c.346-.115.617-.386.732-.732L13.863.1z"
/>
</symbol>
<symbol id="sun-fill" viewBox="0 0 16 16">
<path
d="M8 12a4 4 0 1 0 0-8 4 4 0 0 0 0 8zM8 0a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2A.5.5 0 0 1 8 0zm0 13a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2A.5.5 0 0 1 8 13zm8-5a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h2a.5.5 0 0 1 .5.5zM3 8a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h2A.5.5 0 0 1 3 8zm10.657-5.657a.5.5 0 0 1 0 .707l-1.414 1.415a.5.5 0 1 1-.707-.708l1.414-1.414a.5.5 0 0 1 .707 0zm-9.193 9.193a.5.5 0 0 1 0 .707L3.05 13.657a.5.5 0 0 1-.707-.707l1.414-1.414a.5.5 0 0 1 .707 0zm9.193 2.121a.5.5 0 0 1-.707 0l-1.414-1.414a.5.5 0 0 1 .707-.707l1.414 1.414a.5.5 0 0 1 0 .707zM4.464 4.465a.5.5 0 0 1-.707 0L2.343 3.05a.5.5 0 1 1 .707-.707l1.414 1.414a.5.5 0 0 1 0 .708z"
/>
</symbol>
</svg>
<div
class="dropdown position-fixed bottom-0 end-0 mb-3 me-3 bd-mode-toggle"
>
<button
class="btn btn-bd-primary py-2 dropdown-toggle d-flex align-items-center"
id="bd-theme"
type="button"
aria-expanded="false"
data-bs-toggle="dropdown"
aria-label="Toggle theme (auto)"
>
<svg class="bi my-1 theme-icon-active" width="1em" height="1em">
<use href="#circle-half"></use>
</svg>
<span class="visually-hidden" id="bd-theme-text">Toggle theme</span>
</button>
<ul
class="dropdown-menu dropdown-menu-end shadow"
aria-labelledby="bd-theme-text"
>
<li>
<button
type="button"
class="dropdown-item d-flex align-items-center"
data-bs-theme-value="light"
aria-pressed="false"
>
<svg class="bi me-2 opacity-50 theme-icon" width="1em" height="1em">
<use href="#sun-fill"></use>
</svg>
Light
<svg class="bi ms-auto d-none" width="1em" height="1em">
<use href="#check2"></use>
</svg>
</button>
</li>
<li>
<button
type="button"
class="dropdown-item d-flex align-items-center"
data-bs-theme-value="dark"
aria-pressed="false"
>
<svg class="bi me-2 opacity-50 theme-icon" width="1em" height="1em">
<use href="#moon-stars-fill"></use>
</svg>
Dark
<svg class="bi ms-auto d-none" width="1em" height="1em">
<use href="#check2"></use>
</svg>
</button>
</li>
<li>
<button
type="button"
class="dropdown-item d-flex align-items-center active"
data-bs-theme-value="auto"
aria-pressed="true"
>
<svg class="bi me-2 opacity-50 theme-icon" width="1em" height="1em">
<use href="#circle-half"></use>
</svg>
Auto
<svg class="bi ms-auto d-none" width="1em" height="1em">
<use href="#check2"></use>
</svg>
</button>
</li>
</ul>
</div>
<!-- End Theme changing -->
<!-- ======= Mobile nav toggle button ======= -->
<!-- <button type="button" class="mobile-nav-toggle d-xl-none"><i class="bi bi-list mobile-nav-toggle"></i></button> -->
<i class="bi bi-list mobile-nav-toggle d-lg-none"></i>
<!-- ======= Header ======= -->
<header id="header" class="d-flex flex-column justify-content-center">
<!-- Language Select -->
<nav id="navbar" class="navbar nav-menu">
<ul>
<li>
<a href="#hero" class="nav-link scrollto active">
<i class="bx bx-home"></i> <span class="home-nav">Home</span>
</a>
</li>
<li>
<a href="#about" class="nav-link scrollto"
><i class="bx bx-user"></i>
<span class="about-nav">About Me</span></a
>
</li>
<li>
<a href="#skills" class="nav-link scrollto"
><i class="bx bx-file-blank"></i>
<span class="skills-nav">skills</span></a
>
</li>
<li>
<a href="#projects" class="nav-link scrollto"
><i class="bx bx-server"></i>
<span class="projects-nav">Projects</span></a
>
</li>
<li>
<a href="#contact" class="nav-link scrollto"
><i class="bx bx-envelope"></i>
<span class="contact-nav">Contact</span></a
>
</li>
</ul>
</nav>
<!-- .nav-menu -->
</header>
<!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero" class="d-flex flex-column justify-content-center">
<div class="langs ms-md-auto me-3" style="z-index: 100">
<a href="#" data-lang="anglais" class="linked active"> ENG </a>
<a href="#" data-lang="français" class="linked"> FRA</a>
</div>
<div class="container" data-aos="zoom-in" data-aos-delay="100">
<h1>Hervé Bakongo</h1>
<p>
<span class="iam">I'm</span>
<span
class="typed"
data-typed-items="Fullstack Web Developer, Web Master"
></span>
</p>
<div class="social-links">
<a href="https://github.com/Herve97" target="_blank" class="github"
><i class="bx bxl-github"></i
></a>
<a
href="https://twitter.com/herve_diams"
target="_blank"
class="twitter"
><i class="bx bxl-twitter"></i
></a>
<a
href="https://www.linkedin.com/in/herve-bakongo/"
target="_blank"
class="linkedin"
><i class="bx bxl-linkedin"></i
></a>
</div>
</div>
</section>
<!-- End Hero -->
<main id="main">
<!-- ======= About Section ======= -->
<section id="about" class="about">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2 class="about-title">About Me</h2>
</div>
<div class="row">
<div class="col-lg-4">
<img
src="https://scontent.ffih1-2.fna.fbcdn.net/v/t39.30808-6/275088357_3863787870511965_7822443796535910993_n.jpg?_nc_cat=107&ccb=1-7&_nc_sid=5f2048&_nc_eui2=AeHSkWX-ObA_CvDA16cpsp6LS2rLpBYjhtlLasukFiOG2fA2iATG5phCt0E7AhIHQuHUV7X6VrHLT0S24A7J2KjQ&_nc_ohc=4AFc0hEcEe4AX9E8BqQ&_nc_zt=23&_nc_ht=scontent.ffih1-2.fna&oh=00_AfCp0JZj2hk-INvwvLfWJq_E7Fe_woqI-OOkV0QsifgJGA&oe=65564EB1"
class="img-fluid"
alt="Hervé Bakongo photo"
/>
</div>
<div class="col-lg-8 pt-4 pt-lg-0 content">
<h3>Fullstack Web Developer.</h3>
<p class="fst-italic"></p>
<div class="row">
<div class="col-lg-6">
<ul>
<li>
<i class="bi bi-chevron-right"></i>
<strong>Whatsapp:</strong>
<span>+243 829 057 466</span>
</li>
<li>
<i class="bi bi-chevron-right"></i>
<strong>Phone:</strong>
<span>+243 892 378 711</span>
</li>
<li>
<i class="bi bi-chevron-right"></i>
<strong class="about-city">City:</strong>
<span>Kinshasa, DRC</span>
</li>
</ul>
</div>
<div class="col-lg-6">
<ul>
<li>
<i class="bi bi-chevron-right"></i>
<strong class="degree">Degree:</strong>
<span class="bachelor">Bachelor</span>
</li>
<li>
<i class="bi bi-chevron-right"></i>
<strong>Email:</strong>
<span>[email protected]</span>
</li>
<li>
<i class="bi bi-chevron-right"></i>
<strong>Freelance:</strong>
<span class="available">Available</span>
</li>
</ul>
</div>
<!-- <div class="col-lg-10"> -->
<p class="d-flex justify-content start flex-wrap about-text">
I am fullstack web developer with 3 years of experience in
Node.js, 1.5 year in Angular and 2 years with WordPress. I am
qualified and experienced professional capable of developing
complete web applications, from design to production. My
skills and knowledge make me an ideal candidate for full-stack
web developer positions in companies of all sizes. In addition
to my technical skills, I also have basic knowledge of
computer networking. I am able to understand and resolve
problems related to communication between the different
components of a web application. I am capable of designing,
developing, and maintaining complex web applications, using a
variety of technologies and tools. I am a valuable asset for
any company that wants to develop quality web applications. I
am able to work independently or in a team and adapt to
projects of different sizes and complexities.
</p>
<!-- </div> -->
</div>
</div>
</div>
</div>
</section>
<!-- End About Section -->
<!-- ======= Skills Section ======= -->
<section id="skills" class="skills section-bg">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2 class="skills-title">Skills</h2>
</div>
<div class="row skills-content">
<div class="col-lg-6">
<div class="progress">
<span class="skill">HTML <i class="val">100%</i></span>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="100"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
<div class="progress">
<span class="skill">CSS <i class="val">65%</i></span>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="65"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
<div class="progress">
<span class="skill">JavaScript <i class="val">90%</i></span>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="85"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="progress">
<span class="skill">Typescript <i class="val">90%</i></span>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="90"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
<div class="progress">
<span class="skill">WordPress/CMS <i class="val">70%</i></span>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="70"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
<div class="progress">
<span class="skill"
>NodeJs/ExpressJs/NestJs <i class="val">80%</i></span
>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="80"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="progress">
<span class="skill">Docker <i class="val">55%</i></span>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="55"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
<div class="progress">
<span class="skill">Databases <i class="val">80%</i></span>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="80"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="progress">
<span class="skill">Git <i class="val">70%</i></span>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="70"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
<div class="progress">
<span class="skill">
API Integration
<i class="val">100%</i>
</span>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="100"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="progress">
<span class="skill">Angular <i class="val">60%</i></span>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="60"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="progress">
<span class="skill">
Cloud Computing
<i class="val">60%</i>
</span>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="60"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Skills Section -->
<!-- ======= Resume Section ======= -->
<section id="projects" class="resume">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2 class="projects-title">Recents Projects</h2>
<p class="projects-desc">
Here is the list of the recents projects I worked on. The rest you
can see on my
<a
href="https://www.linkedin.com/in/herve-bakongo/"
target="_blank"
>
LinkedIn
</a>
profile or my
<a href="https://github.com/Herve97" target="_blank">Github</a>
repositories.
</p>
</div>
<div class="row">
<div class="col-lg-6">
<!-- <h3 class="resume-title">Sumary</h3> -->
<div class="resume-item">
<h4>Bulk Sms</h4>
<p class="bulk-desc">
This project involves sending SMS Bulk using its own contact
list while filter which may or may not receive a specific SMS
and make SMS marketing campaigns using large Emergence SARL
database. THE Backend project was created with NodeJs
(ExpressJs) and a MySQL database.
</p>
</div>
<!-- <h3 class="resume-title">Education</h3> -->
<div class="resume-item">
<h4>Smart Insurance Control</h4>
<p class="smart-desc">
This project consists of alerting insurers of the passage of
an insured person in their various partner centers and the
system notifies the service provider by SMS whether or not he
should receive the insured person in front of him. We created
the project's RESTAPI in Nodejs (ExpressJs), a MySQL database,
cached with Redis and Pusher for realtime.
</p>
</div>
<div class="resume-item">
<h4>Lilia communication Website</h4>
<p class="lilia-desc">
A one page website created using Wordpress for
<a href="https://lilia-communication.com/" target="_blank">
lilia-communication communication </a
>. We used Elementor to build this site, while modifying the
template purchased in order to adapt it to the client's needs.
</p>
</div>
</div>
<div class="col-lg-6">
<div class="resume-item">
<h4>Emergence Sarl Website</h4>
<p class="emergence-desc">
A showcase website created using Wordpress for
<a href="https://emergence-rdc.com/" target="_blank">
Emergence Sarl </a
>. We used Elementor to build this site, while modifying the
template purchased in order to adapt it to the client's needs.
In order to allow the company to demonstrate its services to
gain visibility at the international level.
</p>
</div>
<div class="resume-item">
<h4>Proxilab Website</h4>
<p class="proxi-desc">
A website for a medical testing center created using Wordpress
for
<a href="https://proxilab.org/" target="_blank"> Proxilab </a
>. We used Elementor to build this site, while modifying the
template purchased in order to adapt it to the client's needs.
In order to allow Proxilab to demonstrate its medical
services.
</p>
</div>
<div class="resume-item">
<h4>Gnioos Portails</h4>
<p class="gnioos-desc">
A backend application created with Nestjs using the monorepo
for the 4 modules selected according to the monolithic
architecture. In this application we used Mongo Atlas as
database server, Prisma as ODM and Docker
</p>
</div>
</div>
</div>
</div>
</section>
<!-- End Resume Section -->
<!-- ======= Contact Section ======= -->
<section id="contact" class="contact">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Contact</h2>
</div>
<div class="row mt-1">
<div class="col-lg-4">
<div class="info">
<div class="address">
<i class="bi bi-geo-alt"></i>
<h4 class="location-title">Address:</h4>
<p>5 Miao, Gombele, Kinshasa/Lemba</p>
</div>
</div>
</div>
<div class="col-lg-4 mt-0">
<div class="info">
<div class="email">
<i class="bi bi-envelope"></i>
<h4>Email:</h4>
<p>[email protected]</p>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="info">
<div class="phone">
<i class="bi bi-phone"></i>
<h4>Whatsapp:</h4>
<p>+243 829 057 466</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Contact Section -->
</main>
<!-- End #main -->
<!-- ======= Footer ======= -->
<footer id="footer">
<div class="container">
<h3>Hervé Bakongo</h3>
<div class="social-links">
<a href="https://github.com/Herve97" target="_blank" class="github"
><i class="bx bxl-github"></i
></a>
<a
href="https://twitter.com/herve_diams"
target="_blank"
class="twitter"
><i class="bx bxl-twitter"></i
></a>
<a
href="https://www.linkedin.com/in/herve-bakongo/"
target="_blank"
class="linkedin"
><i class="bx bxl-linkedin"></i
></a>
</div>
<div class="copyright">
© Copyright 2023 <strong><span> Hervé Bakongo</span></strong
>. All Rights Reserved
</div>
</div>
</footer>
<!-- End Footer -->
<div id="preloader"></div>
<a
href="#"
class="back-to-top d-flex align-items-center justify-content-center mb-5"
><i class="bi bi-arrow-up-short"></i
></a>
<!-- JS FILE -->
<script src="assets/purecounter/purecounter_vanilla.js"></script>
<script src="assets/aos/aos.js"></script>
<!-- <script src="assets/bootstrap/js/bootstrap.bundle.min.js"></script> -->
<script
src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"
integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-BBtl+eGJRgqQAUMxJ7pMwbEyER4l1g+O15P+16Ep7Q9Q+zqX6gSbd85u4mG4QzX+"
crossorigin="anonymous"
></script>
<script src="assets/glightbox/js/glightbox.min.js"></script>
<script src="assets/isotope-layout/isotope.pkgd.min.js"></script>
<script src="assets/swiper/swiper-bundle.min.js"></script>
<script src="assets/typed.js/typed.umd.js"></script>
<script src="assets/waypoints/noframework.waypoints.js"></script>
<script src="js/main.js"></script>
<script src="js/lang.js"></script>
</body>
<!-- Our codes -->
</html>