-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1274 lines (1216 loc) · 58.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
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!--
Template: Nui - Creative Portfolio Showcase HTML Website Template
Author: Themetorium
URL: https://themetorium.net/
-->
<html lang="en">
<head>
<!-- Title -->
<title>SamDev</title>
<!-- Meta -->
<meta charset="utf-8" />
<meta
name="description"
content="Download Nui - Creative Portfolio Showcase HTML Website Template that comes with rich features and well-commented code. Made by Themetorium."
/>
<meta name="author" content="themetorium.net" />
<!-- Mobile Meta -->
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<!-- Favicon (http://www.favicon-generator.org/) -->
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<!-- Google Analytics -->
<!-- Paste your Google Analytics code here (go to http://www.google.com/analytics/ for more information). -->
<!-- Google fonts (https://www.google.com/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=Poppins:wght@300;400;500;600;700;800;900&display=swap"
rel="stylesheet"
/>
<!-- Body font -->
<link
href="https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&display=swap"
rel="stylesheet"
/>
<!-- Secondary/Alter font -->
<!-- Libs and Plugins CSS -->
<link rel="stylesheet" href="assets/vendor/normalize/normalize.min.css" />
<!-- Normalize CSS (https://necolas.github.io/normalize.css/) -->
<link
rel="stylesheet"
href="assets/vendor/fontawesome/css/fontawesome-all.min.css"
/>
<!-- Font Icons CSS (https://fontawesome.com) Free version! -->
<link
rel="stylesheet"
href="assets/vendor/swiper/css/swiper-bundle.min.css"
/>
<!-- Swiper CSS (https://swiperjs.com/) -->
<link
rel="stylesheet"
href="assets/vendor/lightgallery/css/lightgallery.min.css"
/>
<!-- lightGallery CSS (http://sachinchoolur.github.io/lightGallery) -->
<!-- Template master CSS -->
<link rel="stylesheet" href="assets/css/helper.css" />
<link rel="stylesheet" href="assets/css/theme.css" />
</head>
<!-- ===========
///// Body /////
================
* Use class "tt-boxed" to enable page boxed layout globally (affects all elements containing class "tt-wrap").
* Use class "tt-smooth-scroll" to enable page smooth scrolling.
* Use class "tt-transition" to enable page transitions.
* Use class "tt-magic-cursor" to enable magic cursor.
* Note: there may be classes that are specific to this page only!
-->
<body
id="body"
class="tt-transition tt-boxed tt-smooth-scroll tt-magic-cursor"
>
<!-- *************************************
*********** Begin body inner *************
************************************** -->
<main id="body-inner">
<!-- Begin page transition (do not remove!!!)
=========================== -->
<div id="page-transition">
<div class="ptr-overlay"></div>
<div class="ptr-preloader">
<div class="ptr-prel-content">
<!-- Hint: You may need to change the img height and opacity to match your logo type. You can do this from the "theme.css" file (find: ".ptr-prel-image"). -->
<img
src="assets/img/logo-light.png"
class="ptr-prel-image tt-logo-light"
alt="Logo"
/>
</div>
<!-- /.ptr-prel-content -->
</div>
<!-- /.ptr-preloader -->
</div>
<!-- End page transition -->
<!-- Begin magic cursor
======================== -->
<div id="magic-cursor">
<div id="ball"></div>
</div>
<!-- End magic cursor -->
<!-- *****************************************
*********** Begin scroll container ***********
****************************************** -->
<div id="scroll-container">
<!-- ===================
///// Begin header /////
========================
* Use class "tt-header-fixed" to set header to fixed position.
-->
<header id="tt-header" class="tt-header-fixed">
<div class="tt-header-inner">
<!-- add/remove class "tt-wrap" to enable/disable element boxed layout (class "tt-boxed" is required in <body> tag!). Note: additionally you can use prepared helper class "max-width-*" to add custom width to "tt-wrap". Example: "max-width-1500" (class "tt-wrap" is still required!). More info about helper classes can be found in the file "helper.css". -->
<div class="tt-header-col">
<!-- Begin logo
================ -->
<div class="tt-logo">
<a href="/">
<!-- Hint: You may need to change the img height to match your logo type. You can do this from the "theme.css" file (find: ".tt-logo img"). -->
<img
src="assets/img/logo-light.png"
class="tt-logo-light magnetic-item"
alt="Logo"
/>
<!-- logo light -->
<img
src="assets/img/logo-dark.png"
class="tt-logo-dark magnetic-item"
alt="Logo"
/>
<!-- logo dark -->
</a>
</div>
<!-- End logo -->
</div>
<!-- /.tt-header-col -->
<div class="tt-header-col">
<!-- Begin overlay menu toggle button -->
<div id="tt-ol-menu-toggle-btn-wrap">
<div class="tt-ol-menu-toggle-btn-text-wrap hide-cursor">
<div class="tt-ol-menu-toggle-btn-text">
<span class="text-menu" data-hover="Open">Menu</span>
<span class="text-close">Close</span>
</div>
<!-- /.tt-ol-menu-toggle-btn-text -->
</div>
<!-- /.tt-ol-menu-toggle-btn-text-wrap -->
<div class="tt-ol-menu-toggle-btn-holder">
<a href="#" class="tt-ol-menu-toggle-btn magnetic-item"
><span></span
></a>
</div>
<!-- /.tt-ol-menu-toggle-btn-holder -->
</div>
<!-- End overlay menu toggle button -->
<!-- Begin overlay menu
========================
* Use class "tt-ol-menu-count" to enable menu counter.
-->
<nav class="tt-overlay-menu tt-ol-menu-count">
<div class="tt-ol-menu-ghost">Explore</div>
<div class="tt-ol-menu-holder">
<div class="tt-ol-menu-inner tt-wrap">
<div class="tt-ol-menu-content">
<!-- Begin menu list -->
<ul class="tt-ol-menu-list">
<li class="active"><a href="/">Home</a></li>
<!-- Begin submenu (submenu master)
==================================== -->
<li class="tt-ol-submenu-wrap">
<div class="tt-ol-submenu-trigger">
<a href="portfolio">Portfolio</a>
<!-- /.tt-ol-submenu-caret-wrap -->
</div>
<!-- /.tt-ol-submenu-trigger -->
<!-- /.tt-ol-submenu -->
</li>
<!-- End submenu (sub-master) -->
<!-- Begin submenu (submenu master)
==================================== -->
<li class="tt-ol-submenu-wrap">
<div class="tt-ol-submenu-trigger">
<a href="about">About</a>
</div>
<!-- /.tt-ol-submenu-trigger -->
</li>
<!-- End submenu (sub-master) -->
<!-- Begin submenu (submenu master)
==================================== -->
<!-- End submenu (sub-master) -->
<!-- Begin submenu (submenu master)
==================================== -->
<li class="tt-ol-submenu-wrap">
<div class="tt-ol-submenu-trigger">
<a href="contact">Contact</a>
</div>
</li>
</ul>
<!-- Begin overlay menu social links
===================================== -->
<ul class="tt-ol-menu-social">
<li>
<h6 class="tt-ol-menu-social-heading">
Social Links:
</h6>
</li>
<li>
<a
href="https://fb.com/adoberich"
target="_blank"
rel="noopener"
>Facebook</a
>
</li>
<li>
<a
href="https://twitter.com/samuellove226"
target="_blank"
rel="noopener"
>Twitter</a
>
</li>
<li>
<a
href="https://www.youtube.com/channel/UC9SxlcEpkHFkG0msmzw1MCA"
target="_blank"
rel="noopener"
>Youtube</a
>
</li>
<li>
<a
href="https://github.com/lilyoo226"
target="_blank"
rel="noopener"
>Github</a
>
</li>
<li>
<a
href="https://instagram.com/adoberich"
target="_blank"
rel="noopener"
>Instagram</a
>
</li>
</ul>
<!-- End overlay menu social links -->
</div>
<!-- /.tt-ol-menu-content -->
</div>
<!-- /.tt-ol-menu-inner -->
</div>
<!-- /.tt-ol-menu-holder -->
</nav>
<!-- End overlay menu -->
</div>
<!-- /.header-col -->
</div>
<!-- /.header-inner -->
</header>
<!-- End header -->
<!-- *************************************
*********** Begin content wrap ***********
************************************** -->
<div id="content-wrap">
<!-- ========================
///// Begin page header /////
=============================
* Use class "ph-full" to enable fullscreen size (no effect on smaller screens!).
* Use class "ph-cap-sm", "ph-cap-lg", "ph-cap-xlg" or "ph-cap-xxlg" to set caption size (no class = default size).
* Use class "ph-center" to enable content center position.
* Use class "ph-image-cropped" to crop image (if image is used). It uses fixed image dimensions (no effect with class "ph-bg-image"!).
* Use class "ph-bg-image" to enable page header background image. Note: "ph-caption-title-ghost" will be disabled if you enable this option!
* Use class "ph-bg-image-is-light" if needed, it makes the elements dark and more visible if you use a very light background image (effect only with class "ph-bg-image").
* Use class "ph-image-cover-*" to set image overlay opacity. For example "ph-image-cover-2" or "ph-image-cover-2-5" (up to "ph-image-cover-9-5").
* Use class "ph-content-parallax" to enable content parallax.
* Use class "ph-stroke" to enable caption title stroke style.
* Use class "ph-ghost-scroll" to enable the scroll effect to caption title ghost (no effect with class "ph-center"!).
-->
<div
id="page-header"
class="ph-full ph-cap-lg ph-ghost-scroll ph-image-cropped ph-content-parallax"
>
<div class="page-header-inner tt-wrap">
<!-- Begin page header image
============================= -->
<!-- <div class="ph-image">
<div class="ph-image-inner">
<img src="assets/img/page-header/ph-1.jpg" alt="Image">
</div>
</div> -->
<!-- End page header image -->
<!-- Begin page header caption
===============================
Use class "max-width-*" to set caption max width if needed. For example "max-width-1000". More info about helper classes can be found in the file "helper.css".
-->
<div class="ph-caption">
<!-- <div class="ph-caption-subtitle">
<div class="ph-appear">Subtitle</div>
</div> -->
<h1 class="ph-caption-title">
<div class="ph-appear">
Hey,<br />
I’m Samuel<br />
Front End <span class="hide-from-sm">→</span>
<em class="text-stroke-light">developer</em><br />
</div>
<!-- You can use <br> to break a text line if needed -->
</h1>
<div class="ph-caption-title-ghost">
<div class="ph-appear">Developer</div>
</div>
</div>
<!-- End page header caption -->
</div>
<!-- /.page-header-inner -->
<!-- Begin scroll down (you can change "data-offset" to set scroll top offset)
======================= -->
<div class="tt-scroll-down">
<a
href="#page-content"
class="tt-sd-inner ph-appear"
data-offset="0"
>
<div class="tt-sd-arrow">
<div class="tt-sd-arrow-inner"></div>
</div>
<div class="tt-sd-text">Scroll</div>
</a>
</div>
<!-- End scroll down -->
</div>
<!-- End page header -->
<!-- *************************************
*********** Begin page content ***********
************************************** -->
<div id="page-content">
<!-- =======================
///// Begin tt-section /////
============================
* You can use padding classes if needed. For example "padding-top-xlg-150", "padding-bottom-xlg-150", "no-padding-top", "no-padding-bottom", etc. Note that each situation may be different and each section may need different classes according to your needs. More info about helper classes can be found in the file "helper.css".
-->
<div class="tt-section">
<div class="tt-section-inner">
<!-- Begin portfolio grid (works combined with tt-Ggrid!)
==========================
* Use class "pgi-hover" to enable portfolio grid item hover effect (behavior depends on "ttgr-gap-*" classes below!).
* Use class "pgi-cap-hover" to enable portfolio grid item caption hover effect (effect only with class "pgi-cap-inside"! Also no effect on mobile devices!).
* Use class "pgi-cap-center" to position portfolio grid item caption to center.
* Use class "pgi-cap-inside" to position portfolio grid item caption to inside.
-->
<div id="portfolio-grid" class="pgi-hover">
<!-- Begin tt-Grid
===================
* Use class "ttgr-layout-2", "ttgr-layout-3", "ttgr-layout-4" to set grid layout (columns). No class = one column.
* Use class "ttgr-layout-1-2", "ttgr-layout-2-1", "ttgr-layout-2-3", "ttgr-layout-3-2", "ttgr-layout-3-4" or "ttgr-layout-4-3" to set grid mixed layout (columns).
* Use class "ttgr-layout-creative-1" or "ttgr-layout-creative-2" to set grid creative mixed layout (no effect with classes "ttgr-portrait", "ttgr-portrait-half", "ttgr-not-cropped" and "ttgr-shifted").
* Use class "ttgr-portrait" or "ttgr-portrait-half" to enable portrait mode (no effect with classes "ttgr-layout-creative-1", "ttgr-layout-creative-2" and "ttgr-not-cropped").
* Use class "ttgr-gap-1", "ttgr-gap-2", "ttgr-gap-3", "ttgr-gap-4", "ttgr-gap-5" or "ttgr-gap-6" to add space between items.
* Use class "ttgr-not-cropped" to enable not cropped mode (effect only with classes "ttgr-layout-2", "ttgr-layout-3" and "ttgr-layout-4").
* Use class "ttgr-shifted" to enable shifted layout (effect only with classes "ttgr-layout-2", "ttgr-layout-3" and "ttgr-layout-4").
-->
<div class="tt-grid ttgr-layout-creative-2 ttgr-gap-4">
<!-- Begin tt-Grid items wrap
============================== -->
<div class="tt-grid-items-wrap isotope-items-wrap">
<!-- Begin tt-Grid item
======================== -->
<div class="tt-grid-item isotope-item people">
<div class="ttgr-item-inner">
<!-- Begin portfolio grid item
===============================
* Use class "pgi-image-is-light" if needed, it makes the caption visible better if you use light image (only effect if "pgi-cap-inside" is enabled on "portfolio-grid"! Also no effect on small screens!).
-->
<div class="portfolio-grid-item">
<a
target="_blank"
rel="noopener"
href="https://homiesapartment.netlify.app"
class="pgi-image-wrap"
data-cursor="View<br>Project"
>
<!-- Use class "cover-opacity-*" to set image overlay if needed. For example "cover-opacity-2". Useful if class "pgi-cap-inside" is enabled on "portfolio-grid". Note: It is individual and depends on the image you use. More info about helper classes in file "helper.css". -->
<div class="pgi-image-holder">
<div class="pgi-image-inner anim-zoomin">
<figure class="pgi-image ttgr-height">
<img
src="assets/img/portfolio/940/portfolio-1.jpg"
alt="image"
/>
</figure>
<!-- /.pgi-image -->
</div>
<!-- /.pgi-image-inner -->
</div>
<!-- /.pgi-image-holder -->
</a>
<!-- /.pgi-image-wrap -->
<div class="pgi-caption">
<div class="pgi-caption-inner">
<h2 class="pgi-title">
<a
target="_blank"
rel="noopener"
href="https://github.com/lilyoo226/homiesApartmentWebsite"
>Homies Apartment</a
>
</h2>
<div class="pgi-categories-wrap">
<div class="pgi-category">React</div>
<!-- <div class="pgi-category">Varia</div> -->
</div>
<!-- /.pli-categories-wrap -->
</div>
<!-- /.pgi-caption-inner -->
</div>
<!-- /.pgi-caption -->
</div>
<!-- End portfolio grid item -->
</div>
<!-- /.ttgr-item-inner -->
</div>
<!-- End tt-Grid item -->
<!-- Begin tt-Grid item
======================== -->
<div class="tt-grid-item isotope-item creative">
<div class="ttgr-item-inner">
<!-- Begin portfolio grid item
===============================
* Use class "pgi-image-is-light" if needed, it makes the caption visible better if you use light image (only effect if "pgi-cap-inside" is enabled on "portfolio-grid"!).
-->
<div class="portfolio-grid-item">
<a
target="_blank"
rel="noopener"
href="https://deckofcardsgame.netlify.app"
class="pgi-image-wrap"
data-cursor="View<br>Project"
>
<!-- Use class "cover-opacity-*" to set image overlay if needed. For example "cover-opacity-2". Useful if class "pgi-cap-inside" is enabled on "portfolio-grid". Note: It is individual and depends on the image you use. More info about helper classes in file "helper.css". -->
<div class="pgi-image-holder">
<div class="pgi-image-inner anim-zoomin">
<figure class="pgi-image ttgr-height">
<img
src="assets/img/portfolio/940/portfolio-8.jpg"
alt="image"
/>
</figure>
<!-- /.pgi-image -->
</div>
<!-- /.pgi-image-inner -->
</div>
<!-- /.pgi-image-holder -->
</a>
<!-- /.pgi-image-wrap -->
<div class="pgi-caption">
<div class="pgi-caption-inner">
<h2 class="pgi-title">
<a
target="_blank"
rel="noopener"
href="https://github.com/lilyoo226/deckOfCard-Game"
>Deck Of Cards Game</a
>
</h2>
<div class="pgi-categories-wrap">
<div class="pgi-category">JS</div>
<!-- <div class="pgi-category">Varia</div> -->
</div>
<!-- /.pli-categories-wrap -->
</div>
<!-- /.pgi-caption-inner -->
</div>
<!-- /.pgi-caption -->
</div>
<!-- End portfolio grid item -->
</div>
<!-- /.ttgr-item-inner -->
</div>
<!-- End tt-Grid item -->
<!-- Begin tt-Grid item
======================== -->
<div class="tt-grid-item isotope-item people">
<div class="ttgr-item-inner">
<!-- Begin portfolio grid item
===============================
* Use class "pgi-image-is-light" if needed, it makes the caption visible better if you use light image (only effect if "pgi-cap-inside" is enabled on "portfolio-grid"!).
-->
<div class="portfolio-grid-item">
<a
target="_blank"
rel="noopener"
href="https://marketplace.visualstudio.com/items?itemName=homie.homie"
class="pgi-image-wrap"
data-cursor="View<br>Project"
>
<!-- Use class "cover-opacity-*" to set image overlay if needed. For example "cover-opacity-2". Useful if class "pgi-cap-inside" is enabled on "portfolio-grid". Note: It is individual and depends on the image you use. More info about helper classes in file "helper.css". -->
<div class="pgi-image-holder">
<div class="pgi-image-inner anim-zoomin">
<figure class="pgi-image ttgr-height">
<img
src="assets/img/portfolio/940/portfolio-5.jpg"
alt="image"
/>
</figure>
<!-- /.pgi-video-wrap -->
</div>
<!-- /.pgi-image-inner -->
</div>
<!-- /.pgi-image-holder -->
</a>
<!-- /.pgi-image-wrap -->
<div class="pgi-caption">
<div class="pgi-caption-inner">
<h2 class="pgi-title">
<a
target="_blank"
rel="noopener"
href="https://marketplace.visualstudio.com/items?itemName=homie.homie"
>VS Code Theme</a
>
</h2>
<div class="pgi-categories-wrap">
<div class="pgi-category">JS</div>
<!-- <div class="pgi-category">Varia</div> -->
</div>
<!-- /.pli-categories-wrap -->
</div>
<!-- /.pgi-caption-inner -->
</div>
<!-- /.pgi-caption -->
</div>
<!-- End portfolio grid item -->
</div>
<!-- /.ttgr-item-inner -->
</div>
<!-- End tt-Grid item -->
<!-- Begin tt-Grid item
======================== -->
<div class="tt-grid-item isotope-item nature">
<div class="ttgr-item-inner">
<!-- Begin portfolio grid item
===============================
* Use class "pgi-image-is-light" if needed, it makes the caption visible better if you use light image (only effect if "pgi-cap-inside" is enabled on "portfolio-grid"!).
-->
<div class="portfolio-grid-item">
<a
target="_blank"
rel="noopener"
href="https://arshirkirportfolio.netlify.app"
class="pgi-image-wrap"
data-cursor="View<br>Project"
>
<!-- Use class "cover-opacity-*" to set image overlay if needed. For example "cover-opacity-2". Useful if class "pgi-cap-inside" is enabled on "portfolio-grid". Note: It is individual and depends on the image you use. More info about helper classes in file "helper.css". -->
<div class="pgi-image-holder">
<div class="pgi-image-inner anim-zoomin">
<figure class="pgi-image ttgr-height">
<img
src="assets/img/portfolio/940/portfolio-2.jpg"
alt="image"
/>
</figure>
<!-- /.pgi-image -->
</div>
<!-- /.pgi-image-inner -->
</div>
<!-- /.pgi-image-holder -->
</a>
<!-- /.pgi-image-wrap -->
<div class="pgi-caption">
<div class="pgi-caption-inner">
<h2 class="pgi-title">
<a
target="_blank"
rel="noopener"
href="https://github.com/lilyoo226/Ar-Shakir-WebSite"
>AR Shirkir Portfolio</a
>
</h2>
<div class="pgi-categories-wrap">
<div class="pgi-category">Html CSS JS</div>
<!-- <div class="pgi-category">Varia</div> -->
</div>
<!-- /.pli-categories-wrap -->
</div>
<!-- /.pgi-caption-inner -->
</div>
<!-- /.pgi-caption -->
</div>
<!-- End portfolio grid item -->
</div>
<!-- /.ttgr-item-inner -->
</div>
<!-- End tt-Grid item -->
</div>
<!-- End tt-Grid items wrap -->
</div>
<!-- End tt-Grid -->
</div>
<!-- End portfolio grid -->
<div class="text-center anim-fadeinup">
<!-- Begin scrolling button (See all works)
============================ -->
<a
target="_blank"
href="portfolio"
class="tt-scrolling-btn all-works-btn"
data-cursor="All<br>Works"
>
<div class="scr-btn-inner ph-appear">
<div class="scr-btn-icon">
<i class="fas fa-arrow-right"></i>
</div>
<div class="scr-btn-spinner">
<svg viewBox="0 0 500 500">
<defs>
<path
d="M50,250c0-110.5,89.5-200,200-200s200,89.5,200,200s-89.5,200-200,200S50,360.5,50,250"
id="textcircle"
></path>
</defs>
<!-- If you change the text, you probably need to adjust the CSS so that it fits correctly. Find ".scr-btn-text" in file "theme.css" and adjust it for your needs. -->
<text dy="30" class="scr-btn-text">
<textPath xlink:href="#textcircle">
See All Works - See All Works -
</textPath>
</text>
</svg>
</div>
</div>
<!-- /.sdc-inner -->
</a>
<!-- End scrolling button -->
</div>
<!-- /.text-center -->
</div>
<!-- /.tt-section-inner -->
</div>
<!-- End tt-section -->
<!-- =======================
///// Begin tt-section /////
============================
* You can use padding classes if needed. For example "padding-top-xlg-150", "padding-bottom-xlg-150", "no-padding-top", "no-padding-bottom", etc. Note that each situation may be different and each section may need different classes according to your needs. More info about helper classes can be found in the file "helper.css".
-->
<div class="tt-section padding-top-xlg-100 padding-bottom-xlg-150">
<div class="tt-section-inner tt-wrap max-width-1700">
<div class="tt-row margin-left-lg-3-p margin-right-lg-3-p">
<div class="tt-col-xl-4">
<!-- Begin tt-Heading
======================
* Use class "tt-heading-xsm", "tt-heading-sm", "tt-heading-lg", "tt-heading-xlg" or "tt-heading-xxlg" to set caption size (no class = default size).
* Use class "tt-heading-stroke" to enable stroke style.
* Use class "tt-heading-center" to align tt-Heading to center.
* Use prepared helper class "max-width-*" to add custom width if needed. Example: "max-width-800". More info about helper classes can be found in the file "helper.css".
-->
<div class="tt-heading tt-heading-xlg anim-fadeinup">
<!-- <h3 class="tt-heading-subtitle">My Services</h3> -->
<h2 class="tt-heading-title">What I Can Do</h2>
<!-- You can use <br> to break a text line if needed -->
</div>
<!-- End tt-Heading -->
<div class="max-width-600 margin-bottom-60 anim-fadeinup">
<h5>
When passion, courage, and craftsmanship are put into
something, positive things will happen.
</h5>
</div>
</div>
<!-- /.tt-col -->
<div class="tt-col-xl-1"></div>
<!-- /.tt-col -->
<div class="tt-col-xl-7">
<!-- Begin accordion
=====================
* Use class "tt-ac-sm", "tt-ac-lg", "tt-ac-xlg" or "tt-ac-xxlg" to set accordion size.
* Use class "tt-ac-borders" to enable borders.
* Note: Add class "is-open" to the "tt-accordion-content" to make this content open by default.
-->
<div class="tt-accordion tt-ac-borders">
<div class="tt-accordion-item anim-fadeinup">
<div class="tt-accordion-heading">
<div class="tt-ac-head cursor-alter">
<h3 class="tt-ac-head-title">FRONTEND APPS</h3>
<!-- <div class="tt-accordion-subtext">Mauris mauris ante</div> -->
</div>
<div class="tt-accordion-caret-wrap">
<div class="tt-accordion-caret-inner magnetic-item">
<div class="tt-accordion-caret"></div>
</div>
</div>
<!-- /.tt-accordion-caret-wrap -->
</div>
<!-- /.tt-accordion-heading -->
<div class="tt-accordion-content max-width-800">
<p>
Build client-side applications with modern features
like SPA and maintain semantic coding style among
other best practices for SEO optimisation. Use
modern tech such as React, TailwindCSS, and GSAP.
</p>
</div>
<!-- /.tt-accordion-content -->
</div>
<!-- /.tt-accordion-item -->
<div class="tt-accordion-item anim-fadeinup">
<div class="tt-accordion-heading">
<div class="tt-ac-head cursor-alter">
<h3 class="tt-ac-head-title">BACKEND APPS</h3>
<!-- <div class="tt-accordion-subtext">Vivamus nisi</div> -->
</div>
<div class="tt-accordion-caret-wrap">
<div class="tt-accordion-caret-inner magnetic-item">
<div class="tt-accordion-caret"></div>
</div>
</div>
<!-- /.tt-accordion-caret-wrap -->
</div>
<!-- /.tt-accordion-heading -->
<div class="tt-accordion-content max-width-800">
<p>
Build scalable and maintainable server applications
using modern technology stacks such as Node.js,
Express, and MongoDB
</p>
</div>
<!-- /.tt-accordion-content -->
</div>
<!-- /.tt-accordion-item -->
<div class="tt-accordion-item anim-fadeinup">
<div class="tt-accordion-heading">
<div class="tt-ac-head cursor-alter">
<h3 class="tt-ac-head-title">NATIVE APPS</h3>
<!-- <div class="tt-accordion-subtext">Nam min proin eget</div> -->
</div>
<div class="tt-accordion-caret-wrap">
<div class="tt-accordion-caret-inner magnetic-item">
<div class="tt-accordion-caret"></div>
</div>
</div>
<!-- /.tt-accordion-caret-wrap -->
</div>
<!-- /.tt-accordion-heading -->
<div class="tt-accordion-content max-width-800">
<p>
Use React Native for building simple native mobile
applications. React Native is modern, fast,
cross-platform, and popular.
</p>
</div>
<!-- /.tt-accordion-content -->
</div>
<!-- /.tt-accordion-item -->
<!-- /.tt-accordion-item -->
</div>
<!-- End accordion -->
</div>
<!-- /.tt-col -->
</div>
<!-- /.tt-row -->
</div>
<!-- /.tt-section-inner -->
</div>
<!-- End tt-section -->
<!-- =======================
///// Begin tt-section /////
============================
* You can use padding classes if needed. For example "padding-top-xlg-150", "padding-bottom-xlg-150", "no-padding-top", "no-padding-bottom", etc. Note that each situation may be different and each section may need different classes according to your needs. More info about helper classes can be found in the file "helper.css".
-->
<div
class="tt-section padding-top-xlg-120 padding-bottom-xlg-120 bg-white-accent-3"
>
<div class="tt-section-inner">
<!-- Begin scrolling text
==========================
Change data-scroll-speed="*" to adjust scrolling speed.
Use class "scr-text-reverse" to reverse scrolling direction.
Use class "scr-text-stroke" to enable text stroke style (no effect on smaller screens!).
-->
<div class="tt-scrolling-text" data-scroll-speed="10">
<div
class="tt-scrolling-text-inner"
data-text="I’m trusted by over 1,000 clients →"
>
I’m trusted by over 1,000 clients →
</div>
<!-- /.tt-scrolling-text-inner -->
</div>
<!-- End scrolling text -->
<!-- Begin scrolling text
==========================
Change data-scroll-speed="*" to adjust scrolling speed.
Use class "scr-text-reverse" to reverse scrolling direction.
Use class "scr-text-stroke" to enable text stroke style (no effect on smaller screens!).
-->
<div
class="tt-scrolling-text scr-text-stroke scr-text-reverse"
data-scroll-speed="10"
>
<div
class="tt-scrolling-text-inner"
data-text="More than 5 year experience →"
>
More than 5 year experience →
</div>
<!-- /.tt-scrolling-text-inner -->
</div>
<!-- End scrolling text -->
</div>
<!-- /.tt-section-inner -->
</div>
<!-- End tt-section -->
<!-- =======================
///// Begin tt-section /////
============================
* You can use padding classes if needed. For example "padding-top-xlg-150", "padding-bottom-xlg-150", "no-padding-top", "no-padding-bottom", etc. Note that each situation may be different and each section may need different classes according to your needs. More info about helper classes can be found in the file "helper.css".
-->
<div class="tt-section padding-top-xlg-150 padding-bottom-xlg-150">
<div class="tt-section-inner tt-wrap">
<!-- Begin logo wall
=====================
* Use class "cl-col-2", "cl-col-3" or "cl-col-4" to change columns.
* Hint: for better results make sure all your images are in the same dimensions!
-->
<ul class="tt-logo-wall anim-fadeinup">
<li>
<a
href="https://www.fiverr.com/"
class="cursor-alter"
target="_blank"
rel="noopener"
>
<img
src="assets/img/clients/client-1-light.png"
class="lv-client-light"
alt="Client"
/>
<img
src="assets/img/clients/client-1-dark.png"
class="lv-client-dark"
alt="Client"
/>
</a>
</li>
<li>
<a
href="https://www.upwork.com/"
class="cursor-alter"
target="_blank"
rel="noopener"
>
<img
src="assets/img/clients/client-2-light.png"
class="lv-client-light"
alt="Client"
/>
<img
src="assets/img/clients/client-2-dark.png"
class="lv-client-dark"
alt="Client"
/>
</a>
</li>
<li>
<a
href="https://www.peopleperhour.com/"
class="cursor-alter"
target="_blank"
rel="noopener"
>
<img
src="assets/img/clients/client-3-light.png"
class="lv-client-light"
alt="Client"
/>
<img
src="assets/img/clients/client-3-dark.png"
class="lv-client-dark"
alt="Client"
/>
</a>
</li>
<li>
<a
href="https://www.freelancer.com/"
class="cursor-alter"
target="_blank"
rel="noopener"
>
<img
src="assets/img/clients/client-4-light.png"
class="lv-client-light"
alt="Client"
/>
<img
src="assets/img/clients/client-4-dark.png"
class="lv-client-dark"
alt="Client"
/>
</a>
</li>
<li>
<a
href="https://www.toptal.com/"
class="cursor-alter"
target="_blank"
rel="noopener"
>
<img
src="assets/img/clients/client-5-light.png"
class="lv-client-light"
alt="Client"
/>
<img
src="assets/img/clients/client-5-dark.png"
class="lv-client-dark"
alt="Client"
/>
</a>
</li>
<!-- <li>
<a href="https://themetorium.net/" class="cursor-alter" target="_blank" rel="noopener">
<img src="assets/img/clients/client-6-light.png" class="lv-client-light" alt="Client">
<img src="assets/img/clients/client-6-dark.png" class="lv-client-dark" alt="Client">
</a>
</li>
<li>
<a href="https://themetorium.net/" class="cursor-alter" target="_blank" rel="noopener">
<img src="assets/img/clients/client-7-light.png" class="lv-client-light" alt="Client">
<img src="assets/img/clients/client-7-dark.png" class="lv-client-dark" alt="Client">
</a>
</li>
<li>
<a href="https://themetorium.net/" class="cursor-alter" target="_blank" rel="noopener">
<img src="assets/img/clients/client-8-light.png" class="lv-client-light" alt="Client">
<img src="assets/img/clients/client-8-dark.png" class="lv-client-dark" alt="Client">
</a>
</li>
<li>
<a href="https://themetorium.net/" class="cursor-alter" target="_blank" rel="noopener">
<img src="assets/img/clients/client-9-light.png" class="lv-client-light" alt="Client">
<img src="assets/img/clients/client-9-dark.png" class="lv-client-dark" alt="Client">
</a>
</li>
<li>
<a href="https://themetorium.net/" class="cursor-alter" target="_blank" rel="noopener">
<img src="assets/img/clients/client-10-light.png" class="lv-client-light" alt="Client">
<img src="assets/img/clients/client-10-dark.png" class="lv-client-dark" alt="Client">
</a>
</li> -->
<!-- Use the below example if you want a list without links -->