-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
962 lines (894 loc) · 44.7 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
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<!-- Google Tag Manager -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-NCBSL9KVQS"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-NCBSL9KVQS");
</script>
<!-- Basic Meta Tags -->
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>IDRIS CHAALEL - Portfolio</title>
<meta name="description"
content="Explore the portfolio of Idris Chaalel, a Systems Engineering student with a passion for technology and innovation." />
<!-- Open Graph metadata -->
<meta property="og:site_name" content="Idris Chaalel Portfolio" />
<meta property="og:image" content="assets/img/social.jpg" />
<meta property="og:title" content="IDRIS CHAALEL - Portfolio" />
<meta property="og:description"
content="Explore the portfolio of Idris Chaalel, a Systems Engineering student with a passion for technology and innovation." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.yourportfolio.com" />
<meta property="og:locale" content="en_US" />
<!-- Twitter Card metadata -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@YourTwitterHandle" />
<meta name="twitter:title" content="IDRIS CHAALEL - Portfolio" />
<meta name="twitter:description"
content="Explore the portfolio of Idris Chaalel, a Systems Engineering student with a passion for technology and innovation." />
<meta name="twitter:image" content="assets/img/social.jpg" />
<!-- Page Keywords -->
<meta name="keywords" content="Systems Engineering, Portfolio, Technology, Innovation, Web Development" />
<!-- Favicon -->
<link rel="icon" type="image/png" href="/assets/img/favicon.png" />
<!-- Theme color -->
<meta name="theme-color" content="#5540af" />
<!-- Preconnect for external resources -->
<link href="https://fonts.gstatic.com" rel="preconnect" crossorigin />
<!-- Boxicons stylesheet -->
<link href="https://unpkg.com/[email protected]/css/boxicons.min.css" rel="stylesheet" />
<!-- Required Core Stylesheet -->
<link rel="stylesheet" href="assets/styles/glide.core.min.css" />
<!-- Optional Theme Stylesheet -->
<link rel="stylesheet" href="assets/styles/glide.theme.min.css" />
<!-- Tailwind CSS -->
<link rel="stylesheet" href="assets/styles/main.min.css" media="screen" />
<!-- Canonical link tag -->
<link rel="canonical" href="https://www.idrischaalel.tech/" />
<!-- Schema.org markup -->
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Person",
"name": "Idris Chaalel",
"url": "https://www.idrischaalel.tech/",
"sameAs": [
"https://www.linkedin.com/in/idrischaalel/",
"https://github.com/idrischaalel",
"https://twitter.com/idrischaalel"
],
"jobTitle": "Full Stack Developer",
"alumniOf": {
"@type": "CollegeOrUniversity",
"name": "ESI-SBA - Ecole Supérieure en Informatique 08-MAI-1945"
},
"worksFor": {
"@type": "",
"name": "",
"url": ""
},
"image": "https://idrischaalel.tech/assets/img/profile-author-1.png",
"email": "",
"telephone": "",
"address": {
"@type": "PostalAddress",
"streetAddress": "",
"addressLocality": "",
"addressRegion": "",
"postalCode": "",
"addressCountry": ""
}
}
</script>
</head>
<body x-data="{ mobileMenu: false }" class="relative" :class="{ 'overflow-hidden max-h-screen': mobileMenu }">
<!-- Header & Mobile menu -->
<header>
<div
x-data="{ triggerNavItem(id) {$scroll(id)},triggerMobileNavItem(id) {mobileMenu = false;this.triggerNavItem(id)}}">
<div id="header"
class="fixed top-4 left-4 right-4 z-50 mx-auto w-11/12 rounded-full bg-opacity-80 py-2 transition-all duration-500">
<div class="container flex items-center justify-between px-6 xl:px-16">
<div>
<span @click="triggerNavItem('#home')">
<img src="assets/img/logo_ic.svg" class="w-10 cursor-pointer lg:w-14" alt="logo idris chaalel" />
</span>
</div>
<nav class="hidden lg:block">
<ul class="flex items-center">
<li class="group pl-6">
<a @click="triggerNavItem('#home')"
class="cursor-pointer pt-0.5 font-header font-semibold uppercase text-white transition-all hover:text-xl">
Home
</a>
</li>
<li class="group pl-6">
<a @click="triggerNavItem('#about')"
class="cursor-pointer pt-0.5 font-header font-medium uppercase text-white transition-all hover:text-xl">
About</a>
</li>
<li class="group pl-6">
<a @click="triggerNavItem('#work')"
class="cursor-pointer pt-0.5 font-header font-medium uppercase text-white transition-all hover:text-xl">
Work</a>
</li>
<li class="group pl-6">
<a @click="triggerNavItem('#portfolio')"
class="cursor-pointer pt-0.5 font-header font-medium uppercase text-white transition-all hover:text-xl">
Portfolio
</a>
</li>
<li class="group pl-6">
<a @click="triggerNavItem('#services')"
class="cursor-pointer pt-0.5 font-header font-medium uppercase text-white transition-all hover:text-xl">
Services</a>
</li>
<li class="group pl-6">
<a @click="triggerNavItem('#statistics')"
class="cursor-pointer pt-0.5 font-header font-medium uppercase text-white transition-all hover:text-xl">
Statistics</a>
</li>
<li class="group pl-6">
<a @click="triggerNavItem('#contact')"
class="cursor-pointer pt-0.5 font-header font-medium uppercase text-white transition-all hover:text-xl">
Contact</a>
</li>
<li class="group pl-6">
<a @click="triggerNavItem('#certificates')"
class="cursor-pointer pt-0.5 font-header font-medium uppercase text-white transition-all hover:text-xl">
Certificates</a>
</li>
</ul>
</nav>
<div class="block lg:hidden">
<button @click="mobileMenu = true">
<i class="bx bx-menu text-4xl text-white"></i>
</button>
</div>
</div>
</div>
<!-- mobileMenu -->
<div
class="pointer-events-none fixed inset-0 z-70 min-h-screen bg-black bg-opacity-70 opacity-0 transition-opacity lg:hidden"
:class="{ 'opacity-100 pointer-events-auto': mobileMenu }">
<div class="sticky right-0 min-h-screen w-2/3 bg-primary py-4 px-8 shadow md:w-1/3">
<button class="absolute top-0 right-0 mt-4 mr-4" @click="mobileMenu = false">
<img src="assets/img/icon-close.svg" class="h-10 w-auto" alt="close" />
</button>
<ul class="mt-8 flex flex-col">
<li class="py-2">
<span @click="triggerMobileNavItem('#home')"
class="cursor-pointer pt-0.5 font-header font-semibold uppercase text-white">Home</span>
</li>
<hr class="opacity-20" />
<li class="py-2">
<span @click="triggerMobileNavItem('#about')"
class="cursor-pointer pt-0.5 font-header font-semibold uppercase text-white">About</span>
</li>
<hr class="opacity-20" />
<li class="py-2">
<span @click="triggerMobileNavItem('#work')"
class="cursor-pointer pt-0.5 font-header font-semibold uppercase text-white">Work</span>
</li>
<hr class="opacity-20" />
<li class="py-2">
<span @click="triggerMobileNavItem('#portfolio')"
class="cursor-pointer pt-0.5 font-header font-semibold uppercase text-white">Portfolio</span>
</li>
<hr class="opacity-20" />
<li class="py-2">
<span @click="triggerMobileNavItem('#services')"
class="cursor-pointer pt-0.5 font-header font-semibold uppercase text-white">Services</span>
</li>
<hr class="opacity-20" />
<li class="py-2">
<span @click="triggerMobileNavItem('#statistics')"
class="cursor-pointer pt-0.5 font-header font-semibold uppercase text-white">Statistics</span>
</li>
<hr class="opacity-20" />
<li class="py-2">
<span @click="triggerMobileNavItem('#contact')"
class="cursor-pointer pt-0.5 font-header font-semibold uppercase text-white">Contact</span>
</li>
<hr class="opacity-20" />
<li class="py-2">
<span @click="triggerMobileNavItem('#certificates')"
class="cursor-pointer pt-0.5 font-header font-semibold uppercase text-white">Certificates</span>
</li>
<hr class="opacity-20" />
<li class="py-2">
<a target="_blank" href="assets/pdf/idris-chaalel-resume.pdf"
class="cursor-pointer pt-0.5 font-header font-bold uppercase text-yellow">Resume</a>
</li>
</ul>
</div>
</div>
</div>
</header>
<main id="main" class="relative">
<!-- Header Section -->
<header id="home" class="relative min-h-screen bg-primary bg-cover bg-center bg-no-repeat py-8 bg-blend-multiply"
style="background-image: url(assets/img/bg-cta.jpg)">
<!-- Gradient -->
<div class="absolute inset-0 z-20 bg-cover backdrop-blur-lg"></div>
<!-- Profile Sub-Header -->
<header class="sm:pt-58 container relative z-30 px-0 pt-20 pb-12 sm:pb-48 lg:pt-60 lg:pb-48">
<div class="flex flex-col items-center justify-center lg:flex-row">
<div id="profile-pic"
class="translate-y-18 rounded-full bg-gradient-to-tr from-primary to-yellow p-2 opacity-0 shadow-xl delay-75 duration-1000 ease-out">
<img src="assets/img/profile-author-1.png" class="h-44 rounded-full sm:h-56" alt="author" />
</div>
<div class="pt-8 sm:pt-10 lg:pl-8 lg:pt-0">
<h1 id="profile-title"
class="translate-y-18 text-center font-header text-4xl font-extrabold uppercase text-white opacity-0 delay-300 duration-1000 ease-out md:text-6xl lg:text-7xl">
Idris Chaalel
</h1>
<h2 id="profile-subtitle"
class="mt-4 translate-y-14 text-center font-body text-xl uppercase text-white/80 opacity-0 delay-500 duration-1000 ease-out md:text-2xl lg:text-left">
Software Engineer.
</h2>
<div id="profile-connect"
class="flex translate-y-18 flex-col justify-center pt-3 opacity-0 delay-700 duration-1000 ease-out sm:flex-row sm:pt-5 lg:justify-start">
<div class="flex items-center justify-center pl-0 sm:justify-start md:pl-1">
<p class="font-body text-lg uppercase text-white">
Let's connect
</p>
<div class="hidden sm:block">
<i class="bx bx-chevron-right text-3xl text-yellow"></i>
</div>
</div>
<div class="flex items-center justify-center pt-5 pl-2 sm:justify-start sm:pt-0">
<a target="_blank" href="https://www.facebook.com/idrischaalel/">
<i class="bx bxl-facebook-square text-4xl text-white hover:text-yellow"></i>
</a>
<a target="_blank" href="https://twitter.com/chaalel_idris" class="pl-4">
<i class="bx bxl-twitter text-4xl text-white hover:text-yellow"></i>
</a>
<a target="_blank" href="https://github.com/chaalelidris" class="pl-4">
<i class="bx bxl-github text-4xl text-white hover:text-yellow"></i>
</a>
<a target="_blank" href="https://www.linkedin.com/in/chaalel-idris" class="pl-4">
<i class="bx bxl-linkedin text-4xl text-white hover:text-yellow"></i>
</a>
<a target="_blank" href="https://www.instagram.com/idris_chaalel/" class="pl-4">
<i class="bx bxl-instagram text-4xl text-white hover:text-yellow"></i>
</a>
</div>
</div>
<div id="profile-button"
class="flex translate-y-14 items-center justify-center pt-5 opacity-0 delay-1000 duration-1000 ease-out lg:justify-start">
<a href="assets/pdf/idris-chaalel-resume.pdf" target="_blank"
class="cursor-pointer border-2 border-white bg-transparent py-2 px-10 text-lg font-semibold uppercase tracking-widest text-white transition duration-300 hover:border-transparent hover:bg-yellow hover:text-primary">Preview
my resume</a>
</div>
</div>
</div>
</header>
</header>
<!-- About Section -->
<section id="about" class="scroll-mt-8 bg-grey-50">
<div class="container mx-auto flex flex-col items-center py-16 md:py-20 lg:w-11/12 lg:flex-row">
<div class="w-full text-center lg:text-left">
<h2 class="font-header text-4xl font-semibold uppercase text-primary sm:text-5xl lg:text-6xl">
Who am I?
</h2>
<h4 class="pt-6 font-header text-xl font-medium text-black sm:text-2xl lg:text-3xl">
I'm Idris Chaalel, Software Engineer | WEB3.0 enthusiast
</h4>
<p class="pt-6 text-justify font-body leading-relaxed text-grey-20">
Hi there! My name is Idris, and I'm a software engineer with a
passion for creating innovative and practical solutions to
real-world problems. With my strong background in computer
science, I have a deep understanding of software development and
design principles. My goal is to use my skills to help businesses
and individuals achieve their objectives and make their mark in
the digital world. I specialize in Backend development
(server-side languages such as Python, PHP, Java, JavaScript,
etc.), Database design and management, Technical problem-solving
and debugging, and I'm always eager to take on new challenges and
learn new skills.
</p>
<div class="flex flex-col justify-center pt-6 sm:flex-row lg:justify-start">
<div class="flex items-center justify-center sm:justify-start">
<p class="font-body text-lg font-semibold uppercase text-grey-20">
Connect with me
</p>
<div class="hidden sm:block">
<i class="bx bx-chevron-right text-2xl text-primary"></i>
</div>
</div>
<div class="flex items-center justify-center pt-5 pl-2 sm:justify-start sm:pt-0">
<a target="_blank" href="https://www.facebook.com/idrischaalel/">
<i class="bx bxl-facebook-square text-4xl text-primary hover:text-yellow"></i>
</a>
<a target="_blank" href="https://twitter.com/chaalel_idris" class="pl-4">
<i class="bx bxl-twitter text-4xl text-primary hover:text-yellow"></i>
</a>
<a target="_blank" href="https://github.com/chaalelidris" class="pl-4">
<i class="bx bxl-github text-4xl text-primary hover:text-yellow"></i>
</a>
<a target="_blank" href="https://www.linkedin.com/in/chaalel-idris" class="pl-4">
<i class="bx bxl-linkedin text-4xl text-primary hover:text-yellow"></i>
</a>
<a target="_blank" href="https://www.instagram.com/idris_chaalel/" class="pl-4">
<i class="bx bxl-instagram text-4xl text-primary hover:text-yellow"></i>
</a>
</div>
</div>
</div>
<!-- tech stack -->
<section class="mx-8 mb-28 scroll-mt-28 text-center sm:mb-40">
<h4 class="py-6 font-header text-xl font-medium text-black sm:text-2xl lg:text-3xl">
Tech stack
</h4>
<ul class="flex flex-wrap justify-center gap-2 text-lg text-primary md:justify-start">
<!-- Additional skills -->
<li class="rounded-xl border bg-white px-5 py-3 hover:cursor-pointer hover:bg-slate-100">
HTML
</li>
<li class="rounded-xl border bg-white px-5 py-3 hover:cursor-pointer hover:bg-slate-100">
CSS
</li>
<li class="rounded-xl border bg-white px-5 py-3 hover:cursor-pointer hover:bg-slate-100">
JavaScript
</li>
<li class="rounded-xl border bg-white px-5 py-3 hover:cursor-pointer hover:bg-slate-100">
TypeScript
</li>
<li class="rounded-xl border bg-white px-5 py-3 hover:cursor-pointer hover:bg-slate-100">
React
</li>
<li class="rounded-xl border bg-white px-5 py-3 hover:cursor-pointer hover:bg-slate-100">
Next.js
</li>
<li class="rounded-xl border bg-white px-5 py-3 hover:cursor-pointer hover:bg-slate-100">
Node.js
</li>
<li class="rounded-xl border bg-white px-5 py-3 hover:cursor-pointer hover:bg-slate-100">
Git
</li>
<li class="rounded-xl border bg-white px-5 py-3 hover:cursor-pointer hover:bg-slate-100">
Tailwind
</li>
<li class="rounded-xl border bg-white px-5 py-3 hover:cursor-pointer hover:bg-slate-100">
Prisma
</li>
<li class="rounded-xl border bg-white px-5 py-3 hover:cursor-pointer hover:bg-slate-100">
MongoDB
</li>
<li class="rounded-xl border bg-white px-5 py-3 hover:cursor-pointer hover:bg-slate-100">
Redux
</li>
<li class="rounded-xl border bg-white px-5 py-3 hover:cursor-pointer hover:bg-slate-100">
REST API
</li>
<li class="rounded-xl border bg-white px-5 py-3 hover:cursor-pointer hover:bg-slate-100">
Express
</li>
<li class="rounded-xl border bg-white px-5 py-3 hover:cursor-pointer hover:bg-slate-100">
PostgreSQL
</li>
<li class="rounded-xl border bg-white px-5 py-3 hover:cursor-pointer hover:bg-slate-100">
Python
</li>
<li class="rounded-xl border bg-white px-5 py-3 hover:cursor-pointer hover:bg-slate-100">
Django
</li>
<li class="rounded-xl border bg-white px-5 py-3 hover:cursor-pointer hover:bg-slate-100">
Docker
</li>
</ul>
</section>
</div>
</section>
<!-- Work Section -->
<section id="work" class="container py-16 md:py-20">
<h2 class="text-center font-header text-4xl font-semibold uppercase text-primary sm:text-5xl lg:text-6xl">
My work experience
</h2>
<h3 class="pt-6 text-center font-header text-xl font-medium text-black sm:text-2xl lg:text-3xl">
Here's what I did before
</h3>
<div class="relative mx-auto mt-12 flex w-full flex-col lg:w-2/3">
<!-- Divider -->
<span class="absolute top-8 bottom-0 left-2/5 ml-10 hidden w-2 rounded-full bg-grey-40 md:block"></span>
<!-- Fifth Work Experience (Tripnest) -->
<article class="mt-8 flex flex-col text-center md:flex-row md:text-left">
<div class="md:w-2/5">
<div class="flex justify-center md:justify-start">
<span class="shrink-0">
<img src="assets/img/logos/logo-tripnest.png" class="h-auto w-32" alt="Tripnest Company Logo" />
</span>
<div class="relative ml-3 hidden w-full rounded-full md:block">
<span class="absolute inset-x-0 top-1/2 h-0.5 -translate-y-1/2 transform bg-grey-70"></span>
</div>
<div
class="absolute left-2/5 ml-6 hidden h-10 w-10 rounded-full border-4 border-white bg-grey-40 md:block">
</div>
</div>
</div>
<div class="md:w-3/5">
<div class="relative flex md:pl-18">
<div class="mt-1 flex">
<i class="bx bxs-right-arrow hidden text-2xl text-primary md:block"></i>
<div class="md:-mt-1 md:pl-8">
<time class="block font-body font-bold text-grey-40" datetime="2023-01-01">Jan 2023 - Present</time>
<h4 class="block pt-2 font-header text-xl font-bold uppercase text-primary">
Full Stack Developer
</h4>
<div class="pt-2">
<p class="block text-justify font-body text-black">
Full stack developer of the
<strong><a href="https://www.tripnest.me/"><i
class="bx bx-link text-lg text-primary"></i>Tripnest</a></strong>
project, a platform for real estate rental services.
Tripnest is built using the latest modern web
technologies including Next.js 13, Prisma ORM, MongoDB,
and more. It provides features for property listing,
search, booking, and payment integration.
</p>
</div>
</div>
</div>
</div>
</div>
</article>
<!-- First Work Experience -->
<article class="mt-8 flex flex-col text-center md:flex-row md:text-left">
<div class="md:w-2/5">
<div class="flex justify-center md:justify-start">
<span class="shrink-0">
<img src="assets/img/logo-cmsgu.svg" class="h-auto w-32" alt="committees management system logo" />
</span>
<div class="relative ml-3 hidden w-full rounded-full md:block">
<span class="absolute inset-x-0 top-1/2 h-0.5 -translate-y-1/2 transform bg-grey-70"></span>
</div>
<div
class="absolute left-2/5 ml-6 hidden h-10 w-10 rounded-full border-4 border-white bg-grey-40 md:block">
</div>
</div>
</div>
<div class="md:w-3/5">
<div class="relative flex md:pl-18">
<div class="mt-1 flex">
<i class="bx bxs-right-arrow hidden w-8 text-2xl text-primary md:block"></i>
<div class="md:-mt-1 md:pl-8">
<time class="block font-body font-bold text-grey-40" datetime="2020-04-01">Apr 2020 - Sep 2020</time>
<h4 class="block pt-2 font-header text-xl font-bold uppercase text-primary">
Web Developer | Backend & Frontend
</h4>
<div class="pt-2">
<p class="block text-justify font-body text-black">
Web developer of
<strong><a target="_blank"
href="https://github.com/chaalelidris/educational-committee-management-system">“Educational
committee management system - ECMS”</a></strong>, a project that involves the study, design,
and
implementation of a platform for managing committees
within the Guelma University departments. It enables
effective administration and control of course leaders
while collecting and tracking educational activity
progress from teachers and student delegates.
</p>
</div>
</div>
</div>
</div>
</div>
</article>
<!-- Second Work Experience (SIHATE) -->
<article class="mt-8 flex flex-col text-center md:flex-row md:text-left">
<div class="md:w-2/5">
<div class="flex justify-center md:justify-start">
<span class="shrink-0">
<img src="assets/img/logo-sihate.svg" class="h-16 w-auto" alt="Sihate project logo" />
</span>
<div class="relative ml-3 hidden w-full rounded-full md:block">
<div class="absolute inset-x-0 top-1/2 h-0.5 -translate-y-1/2 transform bg-grey-70"></div>
</div>
<div
class="absolute left-2/5 ml-6 hidden h-10 w-10 rounded-full border-4 border-white bg-grey-40 md:block">
</div>
</div>
</div>
<div class="md:w-3/5">
<div class="relative flex md:pl-18">
<div class="mt-1 flex">
<i class="bx bxs-right-arrow hidden text-2xl text-primary md:block"></i>
<div class="md:-mt-1 md:pl-8">
<time class="block font-body font-bold text-grey-40" datetime="2021-04-01">Apr 2021 - Sep 2021</time>
<h4 class="block pt-2 font-header text-xl font-bold uppercase text-primary">
Project Manager & Web Developer
</h4>
<div class="pt-2">
<p class="block text-justify font-body text-black">
Project Manager and web developer of
<strong><a
href="https://github.com/chaalelidris/SIHATE-HEALTHCARE-PROJECT-DJANGO.git">“Sihate”</a></strong>,
a medical records management system that allows
patients to make appointments and enables doctors to
generate medical records and prescriptions. It was
developed using Django Python framework, HTML5, CSS3,
Bootstrap 5, and JavaScript.
</p>
</div>
</div>
</div>
</div>
</div>
</article>
<!-- Third Work Experience -->
<article class="mt-8 flex flex-col text-center md:flex-row md:text-left">
<div class="md:w-2/5">
<div class="flex justify-center md:justify-start">
<span class="shrink-0">
<img src="assets/img/logo-gr.svg" class="h-auto w-14" alt="Gesture recognition logo" />
</span>
<div class="relative ml-3 hidden w-full rounded-full md:block">
<span class="absolute inset-x-0 top-1/2 h-0.5 -translate-y-1/2 transform bg-grey-70"></span>
</div>
<div
class="absolute left-2/5 ml-6 hidden h-10 w-10 rounded-full border-4 border-white bg-grey-40 md:block">
</div>
</div>
</div>
<div class="md:w-3/5">
<div class="relative flex md:pl-18">
<div class="mt-1 flex">
<i class="bx bxs-right-arrow hidden text-2xl text-primary md:block"></i>
<div class="md:-mt-1 md:pl-8">
<time class="block font-body font-bold text-grey-40" datetime="2022-05-01">May 2022 - Jul 2022</time>
<h4 class="block pt-2 font-header text-xl font-bold uppercase text-primary">
Machine Learning Developer
</h4>
<div class="pt-2">
<p class="block text-justify font-body text-black">
Machine learning developer of the "Dynamic Hand Gesture
Recognition" project using 2D & 3D CNN.
</p>
</div>
</div>
</div>
</div>
</div>
</article>
<!-- Fourth Work Experience -->
<article class="mt-8 flex flex-col text-center md:flex-row md:text-left">
<div class="md:w-2/5">
<div class="flex justify-center md:justify-start">
<span class="shrink-0">
<img src="assets/img/logo-newsize.svg" class="h-auto w-32" alt="Newsize project logo" />
</span>
<div class="relative ml-3 hidden w-full rounded-full md:block">
<span class="absolute inset-x-0 top-1/2 h-0.5 -translate-y-1/2 transform bg-grey-70"></span>
</div>
<div
class="absolute left-2/5 ml-6 hidden h-10 w-10 rounded-full border-4 border-white bg-grey-40 md:block">
</div>
</div>
</div>
<div class="md:w-3/5">
<div class="relative flex md:pl-18">
<div class="mt-1 flex">
<i class="bx bxs-right-arrow hidden text-2xl text-primary md:block"></i>
<div class="md:-mt-1 md:pl-8">
<time class="block font-body font-bold text-grey-40" datetime="2022-08-01">Aug 2022 - Present</time>
<h4 class="block pt-2 font-header text-xl font-bold uppercase text-primary">
Django Web Developer
</h4>
<div class="pt-2">
<p class="block text-justify font-body text-black">
Django web developer of
<strong><a target="_blank" href="https://github.com/chaalelidris/newsizedz">“Newsize - Ecom
Website”</a></strong>, an e-commerce website built using the Django
framework. Newsize offers various features such as user
authentication, product management, and Stripe payment
gateway.
</p>
</div>
</div>
</div>
</div>
</div>
</article>
</div>
</section>
<!-- End Work Section -->
<!-- Portfolio Section -->
<section id="portfolio" class="container py-16 md:py-20">
<h2 class="text-center font-header text-4xl font-semibold uppercase text-primary sm:text-5xl lg:text-6xl">
Check out my Portfolio
</h2>
<h3 class="pt-6 text-center font-header text-xl font-medium text-black sm:text-2xl lg:text-3xl">
Here's what I have done in the past
</h3>
<p class="pt-6 text-center font-body text-sm font-medium text-gray-400 sm:text-2xl lg:text-3xl">
All project details are available on my
<a target="_blank" href="https://github.com/chaalelidris" class="pl-4">
<i class="bx bxl-github text-4xl text-black hover:text-yellow"></i>
GitHub
</a>
</p>
<div class="mx-auto grid w-full grid-cols-1 gap-6 pt-12 md:grid-cols-3 lg:grid-cols-4">
<div class="mx-auto transform transition-all hover:scale-105 md:mx-0 aspect-video">
<a target="_blank" href="https://www.tripnest.me">
<img src="assets/img/portfolio-tripnest.png" class="h-56 w-100 rounded-2xl object-cover shadow"
alt="portfolio tripnest image" />
</a>
</div>
<div class="mx-auto transform transition-all hover:scale-105 md:mx-0">
<a target="_blank" href="https://chaalelidris.github.io/">
<img src="assets/img/portfolio-idris-chaalel.png"
class="h-56 w-100 overflow-hidden rounded-2xl object-cover shadow" alt="portfolio idris chaalel image" />
</a>
</div>
<div class="mx-auto transform transition-all hover:scale-105 md:mx-0">
<a target="_blank"
href="https://www.figma.com/proto/YwLXHzmytLkwGt53ljS6mW/Mig-farm-project?page-id=0%3A1&node-id=6%3A6&viewport=468%2C149%2C0.21&scaling=min-zoom">
<img src="assets/img/portfolio-migfarm-project.png"
class="h-56 w-100 overflow-hidden rounded-2xl object-cover shadow"
alt="portfolio mig farme project image" />
</a>
</div>
<div class="mx-auto transform transition-all hover:scale-105 md:mx-0">
<a target="_blank" href="https://github.com/chaalelidris/educational-committee-management-system.git">
<img src="assets/img/portfolio-comite-managment-system.png"
class="h-56 w-100 rounded-2xl object-cover shadow" alt="portfolio image" />
</a>
</div>
<div class="mx-auto transform transition-all hover:scale-105 md:mx-0">
<a target="_blank" href="https://github.com/chaalelidris/SIHATE-HEALTHCARE-PROJECT-DJANGO.git">
<img src="assets/img/portfolio-sihate-healthcare.png" class="h-56 w-100 rounded-2xl object-cover shadow"
alt="portfolio image" />
</a>
</div>
<div class="mx-auto transform transition-all hover:scale-105 md:mx-0">
<a target="_blank" href="https://github.com/chaalelidris/newsizedz.git">
<img src="assets/img/logo-newsize.png" class="h-56 w-100 rounded-2xl object-cover shadow"
alt="portfolio image" />
</a>
</div>
</div>
</section>
<!-- Review -->
<section id="review" class="container py-16 md:py-20">
<h2 class="text-center font-header text-4xl font-semibold uppercase text-primary sm:text-5xl lg:text-6xl">
Client Review
</h2>
<section class="relative isolate overflow-hidden bg-white px-6 lg:px-8">
<div
class="bg-[radial-gradient(45rem_50rem_at_top,theme(colors.indigo.100),white)] absolute inset-0 -z-10 opacity-20">
</div>
<div
class="absolute inset-y-0 right-1/2 -z-10 mr-16 w-[200%] origin-bottom-left skew-x-[-30deg] bg-white shadow-xl shadow-indigo-600/10 ring-1 ring-indigo-50 sm:mr-28 lg:mr-0 xl:mr-16 xl:origin-center">
</div>
<div class="mx-auto max-w-2xl lg:max-w-4xl">
<figure class="mt-10">
<blockquote class="text-center text-xl font-semibold leading-8 text-gray-900 sm:text-2xl sm:leading-9">
<p>
“The code is very clean, the work is beautiful, delivered
before the deadline, I recommend dealing with idris”
</p>
</blockquote>
<figcaption class="mt-10">
<img class="mx-auto h-10 w-10 rounded-full"
src="https://www.pngfind.com/pngs/m/610-6104451_image-placeholder-png-user-profile-placeholder-image-png.png"
alt="profile placeholder" />
<div class="mt-4 flex items-center justify-center space-x-3 text-base">
<div class="font-semibold text-gray-900">Ali Khalid</div>
<svg viewBox="0 0 2 2" width="3" height="3" aria-hidden="true" class="fill-gray-900">
<circle cx="1" cy="1" r="1" />
</svg>
</div>
</figcaption>
</figure>
</div>
</section>
<div class="mx-auto mt-10 flex justify-center text-center">
<a href="https://mostaql.com/u/chaalel_idris24/reviews/5230882" target="_blank">
<img src="assets/img/Reviews/review-1.png" alt="review" class="cursor-pointer rounded-3xl" />
</a>
</div>
</section>
<!-- Statistics Section -->
<section id="statistics" class="mt-10 bg-cover bg-top bg-no-repeat pt-36 pb-12 lg:pt-52"
style="background-image: url(assets/img/experience-figure.svg)">
<div
class="mx-auto w-11/12 rounded-2xl border border-gray-400 bg-white/5 py-16 shadow-2xl shadow-slate-900 lg:py-20 xl:py-24">
<div class="grid grid-cols-1 gap-5 md:grid-cols-2 md:gap-8">
<div
class="flex flex-col items-center justify-center border-r border-gray-400 text-center md:flex-row md:text-left">
<div>
<img src="assets/img/icon-project-white.svg" class="mx-auto h-12 w-auto md:h-20" alt="icon project" />
</div>
<div class="pt-5 md:pl-5 md:pt-0">
<p class="font-body text-2xl font-bold text-yellow md:text-4xl">
5
</p>
<p class="font-header text-base font-medium leading-loose text-grey-50 md:text-xl">
Finished Projects
</p>
</div>
</div>
<div
class="mt-6 flex flex-col items-center justify-center text-center md:mt-10 md:flex-row md:text-left lg:mt-0">
<div>
<img src="assets/img/icon-puzzle-white.svg" class="mx-auto h-12 w-auto md:h-20" alt="icon puzzle" />
</div>
<div class="pt-5 md:pl-5 md:pt-0">
<p class="font-body text-2xl font-bold text-yellow md:text-4xl">
5
</p>
<h4 class="font-header text-base font-medium leading-loose text-grey-50 md:text-xl">
Years Experience
</h4>
</div>
</div>
</div>
</div>
<!-- Certificates -->
<section id="certificates" class="mx-auto mt-10 w-5/6 bg-transparent">
<div class="images glide">
<div class="glide__track" data-glide-el="track">
<ul class="glide__slides">
<li class="glide__slide">
<img src="assets/img/certificates/IDRIS CHAALEL - Intro to Machine Learning.png"
alt="Intro to Machine Learning Certificate" />
</li>
<li class="glide__slide">
<img src="assets/img/certificates/UC-6768e143-ded3-4063-8139-925c3647d050.jpg" alt="Certificate 1" />
</li>
<li class="glide__slide">
<img src="assets/img/certificates/UC-5d3f3617-e326-4be8-a76b-a070bc77ce26.jpg" alt="Certificate 2" />
</li>
<li class="glide__slide">
<img src="assets/img/certificates/Coursera 7J5R6HWC9FRD.jpg" alt="Certificate 3" />
</li>
<li class="glide__slide">
<img src="assets/img/certificates/Coursera-version-control-with-git.png" alt="Certificate 4" />
</li>
<li class="glide__slide">
<img src="assets/img/certificates/Server-side Development with NodeJS, Express and MongoDB.jpeg"
alt="Certificate 5" />
</li>
<li class="glide__slide">
<img src="assets/img/certificates/CERTIFICATE_Work_Smarter_Not_Harder.jpeg" alt="Certificate 6" />
</li>
</ul>
</div>
<!-- Controls -->
<div class="glide__arrows" data-glide-el="controls">
<button class="glide__arrow left-2 rounded-full bg-white text-gray-900" data-glide-dir="<">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"
stroke="currentColor" class="h-6 w-6">
<path stroke-linecap="round" stroke-linejoin="round" d="M15.75 19.5L8.25 12l7.5-7.5" />
</svg>
</button>
<button class="glide__arrow right-2 rounded-full bg-white text-gray-900" data-glide-dir=">">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"
stroke="currentColor" class="h-6 w-6">
<path stroke-linecap="round" stroke-linejoin="round" d="M8.25 4.5l7.5 7.5-7.5 7.5" />
</svg>
</button>
</div>
</div>
</section>
</section>
</main>
<!-- Contact & Footer Section -->
<footer>
<div class="relative bg-primary bg-cover bg-center bg-no-repeat bg-blend-multiply"
style="background-image: url(assets/img/bg-hero.jpg)">
<!-- Contact Section -->
<section id="contact" class="py-16 lg:py-24">
<h2 class="text-center font-header text-4xl font-semibold uppercase text-white sm:text-5xl lg:text-6xl">
Here's a contact form
</h2>
<h4 class="pt-6 text-center font-header text-xl font-medium text-white sm:text-2xl lg:text-3xl">
Have Any Questions?
</h4>
<div class="mx-auto w-full pt-5 text-center sm:w-2/3 lg:pt-6">
<p class="font-body text-grey-10">
<!-- todo -->
</p>
</div>
<form class="mx-auto w-5/6 pt-10" method="post" action="https://formspree.io/f/maykdobp">
<div class="flex flex-col md:flex-row">
<input
class="mr-3 w-full rounded border-2 border-grey-50 bg-transparent px-4 py-3 font-body text-white placeholder-gray-400 hover:border-yellow focus:border-yellow focus:outline-0 md:w-1/2 lg:mr-5"
name="fullname" placeholder="Full name" type="text" id="name" required />
<input
class="mt-6 w-full rounded border-2 border-grey-50 bg-transparent px-4 py-3 font-body text-white placeholder-gray-400 hover:border-yellow focus:border-yellow focus:outline-0 md:mt-0 md:ml-3 md:w-1/2 lg:ml-5"
name="email" placeholder="Your email" type="email" id="contact-email" required />
</div>
<textarea name="content"
class="mt-6 w-full rounded border-2 border-grey-50 bg-transparent px-4 py-3 font-body text-white placeholder-gray-400 hover:border-yellow focus:border-yellow focus:outline-0 md:mt-8"
placeholder="Message" id="message" cols="30" rows="10" required></textarea>
<button type="submit"
class="mt-6 flex w-full items-center justify-center rounded bg-primary px-8 py-3 font-header text-lg font-bold uppercase text-white placeholder-gray-400 transition-all hover:bg-yellow hover:text-primary">
Send
<i class="bx bx-chevron-right relative -right-2 text-3xl"></i>
</button>
</form>
<div class="mx-auto flex w-5/6 flex-col justify-between pt-16 lg:flex-row">
<div class="w-full border-l-2 border-t-2 border-r-2 border-b-2 border-grey-60 px-6 py-6 sm:py-8 lg:w-1/3">
<div class="flex items-center">
<i class="bx bx-phone text-2xl text-grey-40"></i>
<p class="pl-2 font-body font-bold uppercase text-grey-40 lg:text-lg">
My Phone
</p>
</div>
<p class="pt-2 text-left font-body font-bold text-yellow hover:text-white lg:text-lg">
<a href="tel:+213781878274">(+213) 781 878 274</a>
</p>
</div>
<div
class="w-full border-l-2 border-t-0 border-r-2 border-b-2 border-grey-60 px-6 py-6 sm:py-8 lg:w-1/3 lg:border-l-2 lg:border-t-2">
<div class="flex items-center">
<i class="bx bx-envelope text-2xl text-grey-40"></i>
<p class="pl-2 font-body font-bold uppercase text-grey-40 lg:text-lg">
My Email
</p>
</div>
<p class="pt-2 text-left font-body font-bold text-yellow hover:text-white lg:text-lg">
<a href="mailto:[email protected]">[email protected]</a>
</p>
</div>
</div>
</section>
<hr class="mx-auto my-20 w-3/4" />
<!-- Footer Section -->
<section class="mx-auto flex w-3/4 flex-col justify-between pb-12 md:flex-row">
<p class="text-center font-body text-white md:text-left">
© 2022. All rights reserved, Idris CHAALEL.
</p>
<div class="flex items-center justify-center pt-6 md:justify-start md:pt-0">
<a target="_blank" href="https://www.facebook.com/idrischaalel/">
<i class="bx bxl-facebook-square text-4xl text-white hover:text-yellow"></i>
</a>
<a target="_blank" href="https://twitter.com/chaalel_idris" class="pl-4">
<i class="bx bxl-twitter text-4xl text-white hover:text-yellow"></i>
</a>
<a target="_blank" href="https://github.com/chaalelidris" class="pl-4">
<i class="bx bxl-github text-4xl text-white hover:text-yellow"></i>
</a>
<a target="_blank" href="https://www.linkedin.com/in/chaalel-idris" class="pl-4">
<i class="bx bxl-linkedin text-4xl text-white hover:text-yellow"></i>
</a>
<a target="_blank" href="https://www.instagram.com/idris_chaalel/" class="pl-4">
<i class="bx bxl-instagram text-4xl text-white hover:text-yellow"></i>
</a>
</div>
</section>
</div>
</footer>
<script src="assets/js/dist/cdn.min.js" defer></script>
<script src="assets/js/cdn.min.js" defer></script>
<script src="assets/js/main.js"></script>
<script src="assets/js/glide.min.js"></script>
<script>
const glideConfig = {
type: "carousel",
focusAt: "2",
autoplay: 2500,
perView: 2,
breakpoints: {
1024: {
perView: 2,
},
600: {
perView: 1,
},
},
};
new Glide(".glide", glideConfig).mount();
</script>
</body>
</html>