-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.html
926 lines (920 loc) · 34.7 KB
/
project.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./project.css" />
<!-- aos linked -->
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet" />
<title>Projects | Trisha Das | Portfolio</title>
</head>
<body>
<header>
<nav>
<a href="./index.html" style="font-size: 22px; font-weight: 700"
>Trisha Das | <span class="auto-type">Frontend Developer</span></a
>
<ul class="links">
<li><a href="./aboutMe.html">About Me</a></li>
<li><a href="./project.html">Project</a></li>
<li><a href="./contactMe.html">Contact Me</a></li>
</ul>
<i class="fa-solid fa-bars bar"></i>
</nav>
<div class="responsive-navbar animate__animated animate__fadeInDown">
<ul class="responsive-links">
<a href="./aboutMe.html"><li>Experience</li></a>
<a href="./aboutMe.html"><li>Education</li></a>
<a href="./project.html"><li>Projects</li></a>
<a href="./skill.html"><li>Skills</li></a>
<a href="./contactMe.html"><li>Contact Me</li></a>
</ul>
</div>
</header>
<main>
<a href="#" class="navigation">
<svg
width="64"
height="64"
viewBox="0 0 512 512"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill="#ef900b"
d="M8 256C8 119 119 8 256 8s248 111 248 248s-111 248-248 248S8 393 8 256zm231-113.9L103.5 277.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L256 226.9l101.6 101.6c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L273 142.1c-9.4-9.4-24.6-9.4-34 0z"
/>
</svg>
</a>
<!-- project container for js -->
<h1 class="heading react">React</h1>
<div class="projectJS">
<!-- project 1 -->
<div class="projectCard" data-aos="flip-left">
<img src="./assets/react1.jpg" alt="" />
<div class="overlay">
<div class="text">
<p>
Created a minimalist notepad app with React, enabling users to
jot down thoughts and to-do lists seamlessly.
</p>
<div class="btns">
<a
href="https://6592e4857632d6d877eb6f05--clinquant-taffy-179416.netlify.app/"
target="_blank"
><button>View Page</button></a
>
<a
href="https://github.com/trishaDas13/Notepad-React"
target="_blank"
><button>Source Code</button></a
>
</div>
</div>
</div>
<h2>Text Editor</h2>
<h5>React</h5>
</div>
<!-- project 2 -->
<div class="projectCard" data-aos="flip-left">
<img src="./assets/react2.jpg" alt="" />
<div class="overlay">
<div class="text">
<p>
Crafted an Education Planner utilizing React, empowering users
to input syllabus names and desired study hours.
</p>
<div class="btns">
<a
href="https://education-planner-zeta.vercel.app/"
target="_blank"
><button>View Page</button></a
>
<a
href="https://github.com/trishaDas13/educationPlanner-react"
target="_blank"
><button>Source Code</button></a
>
</div>
</div>
</div>
<h2>Education Planner</h2>
<h5>React</h5>
</div>
<!-- project 3 -->
<div class="projectCard" data-aos="flip-left">
<img src="./assets/react3.jpg" alt="" />
<div class="overlay">
<div class="text">
<p>
Developed an Article Generator using React, enabling users to specify the desired number of articles. Implemented algorithms to generate unique and engaging content based on user preferences.
</p>
<div class="btns">
<a
href="https://article-generator-react.vercel.app/"
target="_blank"
><button>View Page</button></a
>
<a
href="https://github.com/trishaDas13/articleGenerator-react"
target="_blank"
><button>Source Code</button></a
>
</div>
</div>
</div>
<h2>Article Generator</h2>
<h5>React</h5>
</div>
<!-- project 4 -->
<div class="projectCard" data-aos="flip-left">
<img src="./assets/react4.jpg" alt="" />
<div class="overlay">
<div class="text">
<p>
Created a Home Loan Calculator using React, allowing users to input loan amount, interest rate, and loan term to calculate monthly payments and total repayment. Implemented intuitive interface for easy data entry and instant calculation.
</p>
<div class="btns">
<a href="https://loan-calculation-react.vercel.app/" target="_blank"
><button>View Page</button></a
>
<a href="https://github.com/trishaDas13/loanCalculation-react" target="_blank"
><button>Source Code</button></a
>
</div>
</div>
</div>
<h2>Loan Calculation</h2>
<h5>React</h5>
</div>
<!-- project 5 -->
<div class="projectCard" data-aos="flip-left">
<img src="./assets/react5.jpg" alt="" />
<div class="overlay">
<div class="text">
<p>
Designed a Password Generator application with React, enabling users to generate strong and secure passwords tailored to their specifications. Implemented customizable options such as password length, character types, and inclusion of special symbols.
</p>
<div class="btns">
<a
href="https://password-generate-react.vercel.app/"
target="_blank"
><button>View Page</button></a
>
<a
href="https://github.com/trishaDas13/passwordGenerate-react"
target="_blank"
><button>Source Code</button></a
>
</div>
</div>
</div>
<h2>Password generator</h2>
<h5>React</h5>
</div>
<!-- project 6 -->
<div class="projectCard" data-aos="flip-left">
<img src="./assets/react6.jpg" alt="" />
<div class="overlay">
<div class="text">
<p>
Developed an Infinite Scroller component using React, allowing users to seamlessly browse through large datasets or content. Implemented lazy loading techniques to fetch and display data dynamically as the user scrolls.
</p>
<div class="btns">
<a
href="https://infinite-scrolling-iota.vercel.app/"
target="_blank"
><button>View Page</button></a
>
<a
href="https://github.com/trishaDas13/infiniteScrolling-react"
target="_blank"
><button>Source Code</button></a
>
</div>
</div>
</div>
<h2>Infinite scroller</h2>
<h5>React</h5>
</div>
<!-- project 7 -->
<div class="projectCard" data-aos="flip-left">
<img src="./assets/react7.jpg" alt="" />
<div class="overlay">
<div class="text">
<p>
Created a Text Translator application using React, enabling users to translate text between multiple languages with ease. Integrated with translation APIs to provide accurate and efficient translation services.
</p>
<div class="btns">
<a
href="https://translator-react-three.vercel.app/"
target="_blank"
><button>View Page</button></a
>
<a
href="https://github.com/trishaDas13/Translator-react"
target="_blank"
><button>Source Code</button></a
>
</div>
</div>
</div>
<h2>Text translator</h2>
<h5>Reat</h5>
</div>
<!-- project 8 -->
<div class="projectCard" data-aos="flip-left">
<img src="./assets/react8.jpg" alt="" />
<div class="overlay">
<div class="text">
<p>
Presenting my text utility: streamline text analysis with word/character counts, reading time, case conversion, space removal, and dark/light mode for a seamless user experience.
</p>
<div class="btns">
<a
href="https://text-utils-react-delta.vercel.app/"
target="_blank"
><button>View Page</button></a
>
<a
href="https://github.com/trishaDas13/textUtils-react"
target="_blank"
><button>Source Code</button></a
>
</div>
</div>
</div>
<h2>Text Utilities</h2>
<h5>React</h5>
</div>
<!-- project 9 -->
<div class="projectCard" data-aos="flip-left">
<img src="./assets/react9.jpg" alt="" />
<div class="overlay">
<div class="text">
<p>
Introducing a user-friendly webpage: simply input your GitHub username to instantly access your follower list, simplifying your GitHub network exploration.
</p>
<div class="btns">
<a
href="https://github-follower-list-react.vercel.app/"
target="_blank"
><button>View Page</button></a
>
<a
href="https://github.com/trishaDas13/GitHub-Follower-list-react"
target="_blank"
><button>Source Code</button></a
>
</div>
</div>
</div>
<h2>Github Follower List</h2>
<h5>React</h5>
</div>
<!-- project 10 -->
<div class="projectCard" data-aos="flip-left">
<img src="./assets/react10.jpg" alt="" />
<div class="overlay">
<div class="text">
<p>
Effortlessly store and organize contact details including names, phone numbers, and Aadhar numbers. Seamlessly search contacts by name or Aadhar number for quick access and efficient management.
</p>
<div class="btns">
<a
href="https://phonebook-react-alpha.vercel.app/"
target="_blank"
><button>View Page</button></a
>
<a
href="https://github.com/trishaDas13/phonebook-react"
target="_blank"
><button>Source Code</button></a
>
</div>
</div>
</div>
<h2>Phone-book Directory</h2>
<h5>React</h5>
</div>
<!-- project 11 -->
<div class="projectCard" data-aos="flip-left">
<img src="./assets/react11.jpg" alt="" />
<div class="overlay">
<div class="text">
<p>
Effortlessly manage your finances with customizable categories, expenditure tracking, and insightful visualizations, empowering you to make informed financial decisions.
</p>
<div class="btns">
<a
href="https://my-budget-planner-puce.vercel.app/"
target="_blank"
><button>View Page</button></a
>
<a
href="https://github.com/trishaDas13/budgetPlanner-react"
target="_blank"
><button>Source Code</button></a
>
</div>
</div>
</div>
<h2>Budget Planner</h2>
<h5>React</h5>
</div>
<!-- project 12 -->
<div class="projectCard" data-aos="flip-left">
<img src="./assets/react12.jpg" alt="" />
<div class="overlay">
<div class="text">
<p>
Welcome to our seamless movie browsing webpage, where you can effortlessly explore a vast array of categories and genres, ensuring you find the perfect film for every mood and occasion.
</p>
<div class="btns">
<a
href="https://movie-page-jade.vercel.app/"
target="_blank"
><button>View Page</button></a
>
<a
href="https://github.com/trishaDas13/moviePage"
target="_blank"
><button>Source Code</button></a
>
</div>
</div>
</div>
<h2>Movie Application</h2>
<h5>React</h5>
</div>
<!-- project 13 -->
<div class="projectCard" data-aos="flip-left">
<img src="./assets/react13.jpg" alt="" />
<div class="overlay">
<div class="text">
<p>
Introducing a delightful memory card matching game: embark on a fun-filled journey of matching pairs while challenging your memory and concentration skills.
</p>
<div class="btns">
<a
href="https://memory-game-theta-ten.vercel.app/"
target="_blank"
><button>View Page</button></a
>
<a
href="https://github.com/trishaDas13/memoryGame-TS"
target="_blank"
><button>Source Code</button></a
>
</div>
</div>
</div>
<h2>Memory Game</h2>
<h5>React</h5>
</div>
<!-- project 14 -->
<div class="projectCard" data-aos="flip-left">
<img src="./assets/react14.jpg" alt="" />
<div class="overlay">
<div class="text">
<p>
Presenting a LinkedIn clone: a professional networking platform where users can connect, engage, and explore career opportunities. Seamlessly replicate LinkedIn's features such as profiles, connections, job postings, and messaging for a familiar yet innovative experience.
</p>
<div class="btns">
<a
href="https://linkedin-five-eta.vercel.app"
target="_blank"
><button>View Page</button></a
>
<a
href="https://github.com/trishaDas13/Linkedin"
target="_blank"
><button>Source Code</button></a
>
</div>
</div>
</div>
<h2>Linked in clone</h2>
<h5>React</h5>
</div>
<!-- project 15 -->
<div class="projectCard" data-aos="flip-left">
<img src="./assets/react15.jpg" alt="" />
<div class="overlay">
<div class="text">
<p>
Introducing an engaging quiz game: test your knowledge across various topics with challenging questions, compete with friends, and unlock achievements as you progress.
</p>
<div class="btns">
<a
href="https://quiz-game-react-kappa.vercel.app/"
target="_blank"
><button>View Page</button></a
>
<a
href="https://github.com/trishaDas13/quizGame-react"
target="_blank"
><button>Source Code</button></a
>
</div>
</div>
</div>
<h2>Quiz app</h2>
<h5>React</h5>
</div>
</div>
<h1 class="heading js">JavaScript</h1>
<div class="projectJS">
<!-- project 1 -->
<div class="projectCard" data-aos="flip-left">
<img src="./assets/js8.jpg" alt="" />
<div class="overlay">
<div class="text">
<p>
Dive into the classic gaming world with my creation, MineSweeper
Challenge. This engaging project, offers users a thrilling
gaming experience. Navigate through three progressively
challenging stages, showcasing your strategic prowess. Uncover
mines, avoid pitfalls, and aim for victory in this timeless
game.
</p>
<div class="btns">
<a
href="https://trishadas13.github.io/minesweeper/"
target="_blank"
><button>View Page</button></a
>
<a
href="https://github.com/trishaDas13/minesweeper"
target="_blank"
><button>Source Code</button></a
>
</div>
</div>
</div>
<h2>Minesweeper</h2>
<h5>HTML/CSS/JS</h5>
</div>
<!-- project 2 -->
<div class="projectCard" data-aos="flip-left">
<img src="./assets/js2.jpg" alt="" />
<div class="overlay">
<div class="text">
<p>
Discover and review films effortlessly with CineReview. Search
movies, share your thoughts, and make lasting contributions—your
reviews are permanent. Your cinematic journey, your words,
forever celebrated.
</p>
<div class="btns">
<a
href="https://trishadas13.github.io/reviewCorner/"
target="_blank"
><button>View Page</button></a
>
<a
href="https://github.com/trishaDas13/reviewCorner"
target="_blank"
><button>Source Code</button></a
>
</div>
</div>
</div>
<h2>Movie Review</h2>
<h5>HTML/CSS/JS</h5>
</div>
<!-- project 3 -->
<div class="projectCard" data-aos="flip-left">
<img src="./assets/js3.jpg" alt="" />
<div class="overlay">
<div class="text">
<p>
Embark on a visual journey with ImageFinder, my project built
with HTML, CSS, and JavaScript. Simply use the search bar to
discover a world of captivating images.
</p>
<div class="btns">
<a
href="https://trishadas13.github.io/imageFinder/"
target="_blank"
><button>View Page</button></a
>
<a
href="https://github.com/trishaDas13/imageFinder"
target="_blank"
><button>Source Code</button></a
>
</div>
</div>
</div>
<h2>Image Finder</h2>
<h5>HTML/CSS/JS</h5>
</div>
<!-- project 4 -->
<div class="projectCard" data-aos="flip-left">
<img src="./assets/js4.jpg" alt="" />
<div class="overlay">
<div class="text">
<p>
Immerse yourself in a sleek and functional digital payment
experience with my GPay replica. Crafted using HTML, CSS, and
JavaScript, this project mirrors the elegance of genuine
transactions.
</p>
<div class="btns">
<a href="https://trishadas13.github.io/Gpay/" target="_blank"
><button>View Page</button></a
>
<a href="https://github.com/trishaDas13/Gpay" target="_blank"
><button>Source Code</button></a
>
</div>
</div>
</div>
<h2>Google pay replica</h2>
<h5>HTML/CSS/JS</h5>
</div>
<!-- project 5 -->
<div class="projectCard" data-aos="flip-left">
<img src="./assets/js5.jpg" alt="" />
<div class="overlay">
<div class="text">
<p>
Experience a novel way to express yourself with EmojiSearch.
Using HTML, CSS, and JavaScript, this project lets you tap words
in the search bar to effortlessly discover and use the perfect
emoji.
</p>
<div class="btns">
<a
href="https://trishadas13.github.io/emojiFinder/"
target="_blank"
><button>View Page</button></a
>
<a
href="https://github.com/trishaDas13/emojiFinder"
target="_blank"
><button>Source Code</button></a
>
</div>
</div>
</div>
<h2>Emoji Finder</h2>
<h5>HTML/CSS/JS</h5>
</div>
<!-- project 6 -->
<div class="projectCard" data-aos="flip-left">
<img src="./assets/js6.jpg" alt="" />
<div class="overlay">
<div class="text">
<p>
Challenge accepted! Introducing SecureLogin, a login page where
resilience meets security. No matter how many attempts,
unauthorized access is kept at bay. Your data, your fortress.
</p>
<div class="btns">
<a
href="https://trishadas13.github.io/Catch_me-_if_You_Can/"
target="_blank"
><button>View Page</button></a
>
<a
href="https://github.com/trishaDas13/Catch_me-_if_You_Can"
target="_blank"
><button>Source Code</button></a
>
</div>
</div>
</div>
<h2>Catch me if you can</h2>
<h5>HTML/CSS/JS</h5>
</div>
<!-- project 7 -->
<div class="projectCard" data-aos="flip-left">
<img src="./assets/js7.jpg" alt="" />
<div class="overlay">
<div class="text">
<p>
Step into the world of international dining with TipMaster, a
dynamic tips calculator. Experience the ease of calculating tips
not just in INR, but also in dollars, baht, and beyond. Your
perfect companion for diverse dining experiences.
</p>
<div class="btns">
<a
href="https://trishadas13.github.io/tipsCalculator/"
target="_blank"
><button>View Page</button></a
>
<a
href="https://github.com/trishaDas13/tipsCalculator"
target="_blank"
><button>Source Code</button></a
>
</div>
</div>
</div>
<h2>Tips calculator</h2>
<h5>HTML/CSS/JS</h5>
</div>
<!-- project 8 -->
<div class="projectCard" data-aos="flip-left">
<img src="./assets/js1.jpg" alt="" />
<div class="overlay">
<div class="text">
<p>
This web application lets users search for real-time data on
their preferred cryptocurrencies, providing live updates on
prices, market caps, and volumes.
</p>
<div class="btns">
<a
href="https://trishadas13.github.io/cryptoFinder/"
target="_blank"
><button>View Page</button></a
>
<a
href="https://github.com/trishaDas13/cryptoFinder"
target="_blank"
><button>Source Code</button></a
>
</div>
</div>
</div>
<h2>Crypto Finder</h2>
<h5>HTML/CSS/JS</h5>
</div>
<!-- project 9 -->
<div class="projectCard" data-aos="flip-left">
<img src="./assets/js9.jpg" alt="" />
<div class="overlay">
<div class="text">
<p>
Revolutionize your YouTube experience with TimeStampSync, a
Chrome extension. Effortlessly mark and manage timestamps in
live videos. Navigate to marked points or delete them at your
convenience. Streamline your viewing, your way.
</p>
<div class="btns">
<a
href="https://github.com/trishaDas13/chromeExtention"
target="_blank"
><button>Source Code</button></a
>
</div>
</div>
</div>
<h2>Chrome extention for youtube</h2>
<h5>HTML/CSS/JS</h5>
</div>
</div>
<h1 class="heading css">HTML5 & CSS3</h1>
<div class="projectJS">
<!-- project 10 -->
<div class="projectCard" data-aos="flip-left">
<img src="./assets/html1.jpg" alt="" />
<div class="overlay">
<div class="text">
<p>
Dedicated and innovative developer passionate about crafting
dynamic web solutions. Proficient in HTML, CSS, and JavaScript,
with a flair for creating user-friendly interfaces and immersive
digital experiences.
</p>
<div class="btns">
<a
href="https://trishadas13.github.io/aria_css-html_project/"
target="_blank"
><button>View Page</button></a
>
<a
href="https://github.com/trishaDas13/aria_css-html_project"
target="_blank"
><button>Source Code</button></a
>
</div>
</div>
</div>
<h2>Aria page clone</h2>
<h5>HTML/CSS</h5>
</div>
<!-- project 11 -->
<div class="projectCard" data-aos="flip-left">
<img src="./assets/html2.jpg" alt="" />
<div class="overlay">
<div class="text">
<p>
Dedicated and innovative developer passionate about crafting
dynamic web solutions. Proficient in HTML, CSS, and JavaScript,
with a flair for creating user-friendly interfaces and immersive
digital experiences.
</p>
<div class="btns">
<a
href="https://trishadas13.github.io/campingPage/"
target="_blank"
><button>View Page</button></a
>
<a
href="https://github.com/trishaDas13/campingPage"
target="_blank"
><button>Source Code</button></a
>
</div>
</div>
</div>
<h2>Camping page clone</h2>
<h5>HTML/CSS</h5>
</div>
<!-- project 12 -->
<div class="projectCard" data-aos="flip-left">
<img src="./assets/html3.jpg" alt="" />
<div class="overlay">
<div class="text">
<p>
Successfully replicated Amazon's home section using HTML and
CSS. A dedicated developer adept at crafting pixel-perfect,
responsive designs, bringing user-friendly interfaces to life
with precision and creativity.
</p>
<div class="btns">
<a
href="https://trishadas13.github.io/cryptoFinder/"
target="_blank"
><button>View Page</button></a
>
<a
href="https://github.com/trishaDas13/amazonClone"
target="_blank"
><button>Source Code</button></a
>
</div>
</div>
</div>
<h2>Amazon clone</h2>
<h5>HTML/CSS</h5>
</div>
<!-- project 13 -->
<div class="projectCard" data-aos="flip-left">
<img src="./assets/html4.jpg" alt="" />
<div class="overlay">
<div class="text">
<p>
Recreated YouTube's homepage with precision using HTML and CSS.
Demonstrated expertise in responsive design, showcasing a
commitment to creating immersive user experiences.
</p>
<div class="btns">
<a href="https://trishadas13.github.io/youtube/" target="_blank"
><button>View Page</button></a
>
<a href="https://github.com/trishaDas13/youtube" target="_blank"
><button>Source Code</button></a
>
</div>
</div>
</div>
<h2>Youtube Clone</h2>
<h5>HTML/CSS</h5>
</div>
<!-- project 14 -->
<div class="projectCard" data-aos="flip-left">
<img src="./assets/html5.jpg" alt="" />
<div class="overlay">
<div class="text">
<p>
Successfully replicated Myntra's webpage using HTML and CSS. A
skilled developer with an eye for detail, specializing in
crafting visually appealing and responsive designs to enhance
user experiences
</p>
<div class="btns">
<a href="https://trishadas13.github.io/myntra/" target="_blank"
><button>View Page</button></a
>
<a href="https://github.com/trishaDas13/myntra" target="_blank"
><button>Source Code</button></a
>
</div>
</div>
</div>
<h2>Myntra Clone</h2>
<h5>HTML/CSS</h5>
</div>
</div>
<h1 class="heading tailwind">Tailwind CSS</h1>
<div class="projectJS">
<!-- project 15 -->
<div class="projectCard" data-aos="flip-left">
<img src="./assets/tailwind1.jpg" alt="" />
<div class="overlay">
<div class="text">
<p>
Crafted a captivating landing page using Tailwind CSS,
showcasing proficiency in modern front-end technologies.
</p>
<div class="btns">
<a
href="https://trishadas13.github.io/tailwind-majorProject/dist/"
target="_blank"
><button>View Page</button></a
>
<a
href="https://github.com/trishaDas13/tailwind-majorProject"
target="_blank"
><button>Source Code</button></a
>
</div>
</div>
</div>
<h2>Landing page</h2>
<h5>Tailwind CSS</h5>
</div>
</div>
<h1 class="heading figma">Figma</h1>
<div class="projectJS">
<!-- project 16 -->
<div class="projectCard" data-aos="flip-left">
<img src="./assets/figma1.jpg" alt="" />
<div class="overlay">
<div class="text">
<p>
I cloned the Geekster page using Figma, showcasing my attention
to detail and design skills. A passionate UI/UX developer,
committed to creating visually appealing and functional web
experiences.
</p>
<div class="btns">
<a
href="https://www.figma.com/proto/JfS8zXINcuoyoG2eJjoyuR/Geekster?type=design&node-id=1-3&t=PqcenwQOUwZ322YS-0&scaling=min-zoom&page-id=0%3A1"
target="_blank"
><button>View Page</button></a
>
</div>
</div>
</div>
<h2>Geekster UI clone</h2>
<h5>Figma</h5>
</div>
<!-- project 17 -->
<div class="projectCard" data-aos="flip-left">
<img src="./assets/figma2.jpg" alt="" />
<div class="overlay">
<div class="text">
<p>
I cloned the Leetcode page using Figma, showcasing my attention
to detail and design skills. A passionate UI/UX developer,
committed to creating visually appealing and functional web
experiences.
</p>
<div class="btns">
<a
href="https://www.figma.com/proto/uzoajdDK6OJJIWjq5IS60b/Leetcode?node-id=1-2&scaling=scale-down-width"
target="_blank"
><button>View Page</button></a
>
</div>
</div>
</div>
<h2>Leetcode homepage clone</h2>
<h5>Figma</h5>
</div>
<!-- project 18 -->
<div class="projectCard" data-aos="flip-left">
<img src="./assets/figma3.jpg" alt="" />
<div class="overlay">
<div class="text">
<p>
I cloned the Netflix page using Figma, showcasing my attention
to detail and design skills. A passionate UI/UX developer,
committed to creating visually appealing and functional web
experiences.
</p>
<div class="btns">
<a
href="https://www.figma.com/proto/pJGvozhqrctpvCZKali0hh/Netflix?type=design&node-id=1-14&t=w1Cl3qRszXdafQ9w-0&scaling=scale-down&page-id=0%3A1"
target="_blank"
><button>View Page</button></a
>
</div>
</div>
</div>
<h2>Netflix clone</h2>
<h5>Figma</h5>
</div>
</div>
</main>
<!-- script file -->
<script src="./aboutMe.js"></script>
<!-- font awesome -->
<script
src="https://kit.fontawesome.com/bfe5da5748.js"
crossorigin="anonymous"
></script>
<!-- aos file attached -->
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<!-- aos initialize -->
<script>
AOS.init();
</script>
</body>
</html>