-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1396 lines (1308 loc) · 56.3 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>
<html lang="en" data-random-animation="false" data-animation="11">
<head>
<!--Meta Tags-->
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="keywords"
content="vcard, resume, personal, portfolio, cv, card, responsive"
/>
<meta name="description" content="vCard / Resume / Personal Template" />
<meta name="author" content="cosmos-themes" />
<!--Page Title-->
<title>Suyama Daiju - vCard / Resume/ CV </title>
<!--Plugins Css-->
<link rel="stylesheet" href="css/plugins.css" />
<!--Main Styles Css-->
<link rel="stylesheet" href="css/style-dark.css" />
<link rel="stylesheet" href="css/style-demo.css" />
<!--Color Css-->
<link class="site-color" rel="stylesheet" href="css/blue-color.css" />
<!--Modernizr Js-->
<script src="js/modernizr.js"></script>
<!--Favicons-->
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon" />
</head>
<body>
<div class="theme-options dark">
<div class="toggle-btn">
<span><i class="fas fa-cog"></i></span>
</div>
<div class="theme-menu">
<div class="page-transitions">
<h4>Page Animation</h4>
<select class="demo-select form-control" id="anim-type">
<option>Choose</option>
<option value="0">Random</option>
</select>
</div>
<div class="theme-color">
<h4 class="mt-20">Colors</h4>
<ul>
<li>
<a
href="css/blue-color.css"
style="background-color: #00a3e1"
></a>
</li>
<li>
<a href="css/red-color.css" style="background-color: #e82a2a"></a>
</li>
<li>
<a
href="css/green-color.css"
style="background-color: #6ac045"
></a>
</li>
<li>
<a
href="css/yellow-color.css"
style="background-color: #d1a71d"
></a>
</li>
<li>
<a
href="css/pink-color.css"
style="background-color: #ff1493"
></a>
</li>
<li>
<a
href="css/purple-color.css"
style="background-color: #5078ff"
></a>
</li>
</ul>
</div>
</div>
</div>
<!--Preloader Start-->
<div class="preloader">
<div class="loader">
<!--Your Name-->
<h4>Suyama Daiju</h4>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</div>
<!--Preloader End-->
<div id="page">
<!--Header Start-->
<header>
<div class="header-content">
<!--Mobile Header-->
<div class="header-mobile">
<a class="header-toggle"><i class="fas fa-bars"></i></a>
<h2>Suyama Daiju</h2>
</div>
<!--Main Header-->
<div class="header-main" data-simplebar="">
<div class="image-container">
<h3 class="header-name">Suyama Daiju</h3>
<img src="img/profile-img.jpg" alt="profile-pic" />
</div>
<!--Nav Menus-->
<nav class="nav-menu">
<ul>
<li>
<a href="#home" class="pt-link active"
><span class="nav-menu-icon"
><i class="lnr lnr-home"></i></span
>Home
</a>
</li>
<li>
<a href="#about" class="pt-link"
><span class="nav-menu-icon"
><i class="lnr lnr-user"></i></span
>About Me</a
>
</li>
<li>
<a href="#resume" class="pt-link"
><span class="nav-menu-icon"
><i class="lnr lnr-license"></i></span
>Resume</a
>
</li>
<li>
<a href="#portfolio" class="pt-link"
><span class="nav-menu-icon"
><i class="lnr lnr-briefcase"></i></span
>Portfolio</a
>
</li>
<li>
<a href="#contact" class="pt-link"
><span class="nav-menu-icon"
><i class="lnr lnr-envelope"></i></span
>Contact</a
>
</li>
</ul>
</nav>
<!--Nav Footer-->
<div class="nav-footer">
<!-- Social Links
<ul class="social">
<li><a href="#"><i class="fab fa-facebook-square"></i></a></li>
<li><a href="#"><i class="fab fa-twitter-square"></i></a></li>
<li><a href="#"><i class="fab fa-youtube-square"></i></a></li>
<li><a href="#"><i class="fab fa-dribbble-square"></i></a></li>
<li><a href="#"><i class="fab fa-behance-square"></i></a></li>
</ul> -->
<!--Copyright Text-->
<div class="copy">
<p>2021 © Cosmos-Themes.<br />All Right Reserved.</p>
</div>
</div>
</div>
</div>
</header>
<!--Header End-->
<!--Main Start-->
<div id="main" class="site-main">
<!--Banner Section Start-->
<section
id="home"
class="banner-section pt-page"
style="background-image: url('img/background/home-bg.jpg')"
>
<div class="banner-content">
<!--Banner Text-->
<h1 class="mb-20">Suyama <span>Daiju</span></h1>
<!--Animated Text-->
<p class="cd-headline clip is-full-width">
<span>I am a </span>
<span class="cd-words-wrapper">
<b class="is-visible">Blockchain Engineer</b>
<b>Graphic Designer</b>
</span>
</p>
</div>
</section>
<!--Banner Section End-->
<!--About Section Start-->
<section id="about" class="about-section pt-page">
<div class="section-container">
<!--Page Heading-->
<div class="page-heading">
<span class="icon"><i class="lnr lnr-user"></i></span>
<h2>About Me.</h2>
</div>
<!-- About Info Row Start-->
<div class="row about mb-70">
<div class="col-lg-8">
<!--Personal Intro-->
<h3 class="mb-20">Blockchain Engineer</h3>
<p>
Hello, I'm Hiroshi, a seasoned Blockchain Engineer With 8
years of experience in blockchain development, I've had the
privilege of working on several projects involving smart
contracts, decentralized finance (DeFi), and crypto trading
bots. I are passionate about leveraging blockchain technology
to create innovative solutions that empower investors and
contribute to the growth of the crypto ecosystem.
</p>
<p>
Latest developing :<br />
- Stockpile v2(Funding Without Barriers):Stockpile is a
decentralized funding engine for the open-internet<br />
- Classy-Dogs-NFT-Project:A complete NFT project from start to
finish with +10000 ClassyDogs collection created with an art
generator, development and testing of the ERC721 contract and
a minting dapp which enables whitelisting, presale and nfts
reveal.<br />
<!--Signature Image-->
</p>
<div class="signature mt-20">
<img src="img/signature-white.png" alt="" />
</div>
</div>
<!--Personal Info-->
<div class="col-lg-4">
<div class="about-info">
<h3 class="mb-20">Personal Information</h3>
<ul>
<li>
<span class="title">Name</span
><span class="value">Suyama Daiju</span>
</li>
<li>
<span class="title">Age</span
><span class="value">28 Years</span>
</li>
<li>
<span class="title">Residence</span
><span class="value"
><br />
No.552 Harcourt Road,Central and Western District Hong
Kong</span
>
</li>
<li>
<span class="title">Available Work Time</span
><span class="value">8 hours/d</span>
</li>
</ul>
</div>
</div>
</div>
<!-- About Info Row End-->
<!--Services Row Start-->
<div class="row services mb-30">
<div class="col-md-12">
<div class="subheading">
<h3>Services</h3>
</div>
</div>
<!--Service Item-->
<div class="col-lg-3 col-sm-6">
<div class="service-item">
<div class="icon"><i class="lnr lnr-cog"></i></div>
<h4>Decentralized Applications (DApps) Development</h4>
<p>
Design and deploy DApps that leverage blockchain for
decentralized operations, offering transparency and security
in various sectors such as finance, supply chain, and
healthcare
</p>
</div>
</div>
<!--Service Item-->
<div class="col-lg-3 col-sm-6">
<div class="service-item">
<div class="icon"><i class="lnr lnr-database"></i></div>
<h4>Smart Contract Engineering</h4>
<p>
Create smart contracts using Solidity or similar languages,
tailored to specific business needs, ensuring legal
compliance and operational efficiency.
</p>
</div>
</div>
<!--Service Item-->
<div class="col-lg-3 col-sm-6">
<div class="service-item">
<div class="icon"><i class="lnr lnr-laptop-phone"></i></div>
<h4>Cryptocurrency and Tokenization Services</h4>
<p>
Offer consulting and development services for cryptocurrency
projects, including token creation, ICO/IEO setup, and smart
contract auditing.
</p>
</div>
</div>
<!--Service Item-->
<div class="col-lg-3 col-sm-6">
<div class="service-item">
<div class="icon"><i class="lnr lnr-code"></i></div>
<h4>Machine Learning Model Deployment on Blockchain</h4>
<p>
Host machine learning models on blockchain platforms,
enabling decentralized access and execution of AI-powered
functionalities.
</p>
</div>
</div>
<!--Service Item-->
<div class="col-lg-3 col-sm-6">
<div class="service-item">
<div class="icon"><i class="lnr lnr-picture"></i></div>
<h4>Graphic Design</h4>
<p>
Specialize in Graphic design using Figma,XD ensuring
seamless user experiences across platforms that align with
your brand identity.
</p>
</div>
</div>
</div>
<!--Services Row End-->
<!--Clients Row Start-->
<div class="row clients mb-70">
<div class="col-md-12">
<div class="subheading">
<h3>Clients</h3>
</div>
</div>
<div class="owl-carousel owl-theme">
<!--Client Logo-->
<div class="client-logo">
<a href="#">
<img src="img/clients/client-01.png" alt="" />
</a>
</div>
<!--Client Logo-->
<div class="client-logo">
<a href="#">
<img src="img/clients/client-02.png" alt="" />
</a>
</div>
<!--Client Logo-->
<div class="client-logo">
<a href="#">
<img src="img/clients/client-03.png" alt="" />
</a>
</div>
<!--Client Logo-->
<div class="client-logo">
<a href="#">
<img src="img/clients/client-04.png" alt="" />
</a>
</div>
<!--Client Logo-->
<div class="client-logo">
<a href="#">
<img src="img/clients/client-05.png" alt="" />
</a>
</div>
<!--Client Logo-->
<div class="client-logo">
<a href="#">
<img src="img/clients/client-06.png" alt="" />
</a>
</div>
<!--Client Logo-->
<div class="client-logo">
<a href="#">
<img src="img/clients/client-07.png" alt="" />
</a>
</div>
<!--Client Logo-->
<div class="client-logo">
<a href="#">
<img src="img/clients/client-08.png" alt="" />
</a>
</div>
<!--Client Logo-->
<div class="client-logo">
<a href="#">
<img src="img/clients/client-09.png" alt="" />
</a>
</div>
</div>
</div>
<!--Clients Row End-->
<!--Testimonials Row Start-->
<div class="row testimonials mb-50">
<div class="col-md-12">
<div class="subheading">
<h3>Testimonials</h3>
</div>
<div class="owl-carousel owl-theme">
<!--Testimonail Item-->
<div class="testimonial-item">
<div class="testimonial-content">
<p>
He is a developer I have never seen before. To be
honest, it was a difficult task to complete, but he
completed it perfectly in a short period of time. It is
truly amazing.
</p>
</div>
<div class="testimonial-meta">
<img src="img/testimonials/author-2.jpg" alt="" />
<div class="meta-info">
<h4>Emma Jones</h4>
<p>Creative Director</p>
</div>
</div>
</div>
<!--Testimonail Item-->
<div class="testimonial-item">
<div class="testimonial-content">
<p>
Quick and sincere response to customers. This is his
great strength.
</p>
</div>
<div class="testimonial-meta">
<img src="img/testimonials/author-2.jpg" alt="" />
<div class="meta-info">
<h4>Emma Jones</h4>
<p>Creative Director</p>
</div>
</div>
</div>
<!--Testimonail Item-->
<div class="testimonial-item">
<div class="testimonial-content">
<p>
I really didn't know he was such an innovative
developer. He was a developer and lecturer. Through him,
I, who only specialized in marketing, learned a lot
about current blockchain technology and amazing
achievements.
</p>
</div>
<div class="testimonial-meta">
<img src="img/testimonials/author-3.jpg" alt="" />
<div class="meta-info">
<h4>Jack Smith</h4>
<p>Marketing Director</p>
</div>
</div>
</div>
<!--Testimonail Item-->
<div class="testimonial-item">
<div class="testimonial-content">
<p>
The contract period between us are awesome. Investing in
Hiroshi's blockchain has proven to be a strategic move.
Their deep understanding of both fields and the ability
to merge them into groundbreaking solutions has not only
yielded significant returns but also positioned us at
the forefront of technological innovation.
</p>
</div>
<div class="testimonial-meta">
<img src="img/testimonials/author-4.jpg" alt="" />
<div class="meta-info">
<h4>Mark Lee</h4>
<p>Coin enthusiasm and investor</p>
</div>
</div>
</div>
<!--Testimonail Item-->
<div class="testimonial-item">
<div class="testimonial-content">
<p>
Beyond his technical prowess in blockchain and AI,
Hiroshi has shown an admirable ability to maintain a
healthy work-life balance. Their innovative solutions
have not only propelled our projects forward but also
allowed for flexible work arrangements, enhancing team
morale and productivity.
</p>
</div>
<div class="testimonial-meta">
<img src="img/testimonials/author-5.jpg" alt="" />
<div class="meta-info">
<h4>Chome</h4>
<p>Marketing Director</p>
</div>
</div>
</div>
<!--Testimonail Item-->
<div class="testimonial-item">
<div class="testimonial-content">
<p>
Working under Hiroshi's leadership has been
transformative. Their ability to guide our team through
complex AI projects has fostered an environment of
continuous learning and innovation. They inspire us not
just professionally but personally, encouraging us to
pursue our passions outside of work.
</p>
</div>
<div class="testimonial-meta">
<img src="img/testimonials/author-6.jpg" alt="" />
<div class="meta-info">
<h4>Harumi Tanaka</h4>
<p>HR in TAMLO IT company</p>
</div>
</div>
</div>
</div>
</div>
<!--Testimonials Row End-->
</div>
</div>
</section>
<!--About Section Start-->
<!--Resume Section Start-->
<section id="resume" class="resume-section pt-page">
<div class="section-container">
<div class="page-heading">
<span class="icon"><i class="lnr lnr-license"></i></span>
<h2>My Resume.</h2>
</div>
<!--Education & Experience Row Start-->
<div class="row mb-20">
<!--Experience Column Start-->
<div class="col-lg-6">
<div class="subheading">
<h3>Experience</h3>
</div>
<ul class="experience">
<!--Experience Item-->
<li>
<span class="line-left"></span>
<div class="content">
<h4>Senior Blockchain Engineer & Project Manager</h4>
<h5>TAMLO</h5>
<p class="info">
✔ Technical Leadership: Provided technical
direction and oversight for the development of
blockchain applications, including smart contract
development, DApp architecture, and integration of
blockchain protocols ( Ethereum, Binance Smart
Chain).<br />
✔ Blockchain Solution Architecture: Designed
and implemented scalable blockchain architectures,
utilizing Ethereum and Binance Smart Chain platforms, to
support clients' business requirements and drive
operational efficiencies.<br />
✔ Client Engagement: Actively engaged with
clients to understand their requirements, translating
them into actionable project plans and technical
specifications. Fostered strong client relationships,
resulting in repeat business and referrals.<br />
</p>
</div>
<span class="year">
<span class="to">2024</span>
<span class="from">2021</span>
</span>
</li>
<!--Experience Item-->
<li>
<span class="line-left"></span>
<div class="content">
<h4>Senior Blockchain Engineer</h4>
<h5>Scaling Your Company</h5>
<p class="info">
✔ Smart Contract Development: Spearheaded the
design and implementation of smart contracts using
Solidity for Ethereum-based projects, resulting in a 90%
increase in transaction efficiency and security.<br />
✔ Decentralized Application (DApp)
Architecture: Designed and optimized DApp architectures,
leading to a 80% improvement in system performance and
scalability, supporting over 500 concurrent users
seamlessly.<br />
✔ Tokenization & DeFi Projects: Implemented
proof-of-concept (PoC) projects for tokenization of
real-world assets and decentralized finance (DeFi) smart
contracts, unlocking liquidity worth $5M and driving
investment opportunities.<br />
</p>
</div>
<span class="year">
<span class="to">2020</span>
<span class="from">2017</span>
</span>
</li>
<!--Experience Item-->
<li>
<span class="line-left"></span>
<div class="content">
<h4>Full-stack engineer</h4>
<h5>Scaling Your Company</h5>
<p class="info">
✔ Web Application Development: Led the design
and implementation of responsive web applications using
ReactJS for the front-end and Node.js for the back-end,
enhancing user experience and improving site performance
by 80%.<br />
✔ Performance Optimization: Optimized
application performance by implementing efficient
algorithms and database queries, resulting in a 90%
reduction in load times and improved overall
efficiency<br />
✔ Blockchain Integration: Spearheaded the
integration of blockchain technology into existing
systems to secure transactions and data integrity,
leveraging Ethereum smart contracts and IPFS for
decentralized storage solutions.<br />
✔ Engineered scalable server-side solutions
with Node.js, Express.js, and managed databases like
MongoDB or PostgreSQL.
</p>
</div>
<span class="year">
<span class="to">2017</span>
<span class="from">2015</span>
</span>
</li>
</ul>
</div>
<!--Experience Column End-->
<!--Education Column Start-->
<div class="col-lg-6">
<div class="subheading">
<h3>Education</h3>
</div>
<ul class="education">
<!--Education Item-->
<li>
<span class="line-left"></span>
<div class="content">
<h4>Bachelor of Science in Blockchain Development</h4>
<h5>Okayama University of Science, Okayama, Japan</h5>
<p class="info">
Specialized in Blockchain Development and Computer
Security. Graduated with honors, demonstrating a strong
foundation in blockchain principles, smart contract
development, and cryptographic security measures.
</p>
</div>
<span class="year">
<span class="to">2015</span>
<span class="from">2013</span>
</span>
</li>
<!--Education Item-->
<li>
<span class="line-left"></span>
<div class="content">
<h4>Bachelor degree of Computer Science,</h4>
<h5>Okayama University of Science, Okayama, Japan</h5>
<p class="info">
Blockchain Technology and Cryptocurrencies<br />
Data Structures and Algorithms<br />
Computer Networks<br />
Operating Systems<br />
Database Management Systems
</p>
</div>
<span class="year">
<span class="to">2013</span>
<span class="from">2011</span>
</span>
</li>
</ul>
</div>
<!--Education Column End-->
</div>
<!--Education & Experience Row End-->
<!--Skills Row Start-->
<div class="row">
<!--Languages Column Start-->
<div class="col-lg-4 skills">
<div class="subheading">
<h3>Languages</h3>
</div>
<!--Languages Item-->
<div class="skill-item">
<h4 class="progress-title">Solidity</h4>
<div class="progress">
<div class="progress-bar" data-progress-value="91">
<div class="progress-value">91%</div>
</div>
</div>
</div>
<!--Languages Item-->
<div class="skill-item">
<h4 class="progress-title">Rust</h4>
<div class="progress">
<div class="progress-bar" data-progress-value="95">
<div class="progress-value">95%</div>
</div>
</div>
</div>
<!--Languages Item-->
<div class="skill-item">
<h4 class="progress-title">Python</h4>
<div class="progress">
<div class="progress-bar" data-progress-value="82">
<div class="progress-value">82%</div>
</div>
</div>
</div>
<!--Languages Item-->
<div class="skill-item">
<h4 class="progress-title">Javascript</h4>
<div class="progress">
<div class="progress-bar" data-progress-value="94">
<div class="progress-value">94%</div>
</div>
</div>
</div>
<!--Languages Item-->
<div class="skill-item">
<h4 class="progress-title">Typescript</h4>
<div class="progress">
<div class="progress-bar" data-progress-value="99">
<div class="progress-value">99%</div>
</div>
</div>
</div>
<!--Languages Item-->
<div class="skill-item">
<h4 class="progress-title">C,C++</h4>
<div class="progress">
<div class="progress-bar" data-progress-value="90">
<div class="progress-value">90%</div>
</div>
</div>
</div>
</div>
<!--Languages Column End-->
<!--Coding Skills Column Start-->
<div class="col-lg-4 skills">
<div class="subheading">
<h3>Frameworks/Libraries</h3>
</div>
<!--Coding Skill Item-->
<div class="skill-item">
<h4 class="progress-title">Etherium</h4>
<div class="progress">
<div class="progress-bar" data-progress-value="93">
<div class="progress-value">93%</div>
</div>
</div>
</div>
<!--Coding Skill Item-->
<div class="skill-item">
<h4 class="progress-title">Hyperledger</h4>
<div class="progress">
<div class="progress-bar" data-progress-value="93">
<div class="progress-value">93%</div>
</div>
</div>
</div>
<!--Coding Skill Item-->
<div class="skill-item">
<h4 class="progress-title">Corda</h4>
<div class="progress">
<div class="progress-bar" data-progress-value="93">
<div class="progress-value">93%</div>
</div>
</div>
</div>
<!--Coding Skill Item-->
<div class="skill-item">
<h4 class="progress-title">TensorFlow and PyTorch</h4>
<div class="progress">
<div class="progress-bar" data-progress-value="85">
<div class="progress-value">85%</div>
</div>
</div>
</div>
<!--Coding Skill Item-->
<div class="skill-item">
<h4 class="progress-title">Vue js</h4>
<div class="progress">
<div class="progress-bar" data-progress-value="92">
<div class="progress-value">92%</div>
</div>
</div>
</div>
<!--Coding Skill Item-->
<div class="skill-item">
<h4 class="progress-title">Node js</h4>
<div class="progress">
<div class="progress-bar" data-progress-value="95">
<div class="progress-value">95%</div>
</div>
</div>
</div>
<!--Coding Skill Item-->
<div class="skill-item">
<h4 class="progress-title">Next js</h4>
<div class="progress">
<div class="progress-bar" data-progress-value="98">
<div class="progress-value">98%</div>
</div>
</div>
</div>
</div>
<!--Coding Skills Column End-->
<!--Coding Skills Column Start-->
<div class="col-lg-4 skills">
<div class="subheading">
<h3>Soft Skills</h3>
</div>
<!--Coding Skill Item-->
<div class="skill-item">
<h4 class="progress-title">Team Collaboration</h4>
<div class="progress">
<div class="progress-bar" data-progress-value="100">
<div class="progress-value">100%</div>
</div>
</div>
</div>
<!--Coding Skill Item-->
<div class="skill-item">
<h4 class="progress-title">Problem-Solving</h4>
<div class="progress">
<div class="progress-bar" data-progress-value="95">
<div class="progress-value">95%</div>
</div>
</div>
</div>
<!--Coding Skill Item-->
<div class="skill-item">
<h4 class="progress-title">Communication</h4>
<div class="progress">
<div class="progress-bar" data-progress-value="92">
<div class="progress-value">92%</div>
</div>
</div>
</div>
<!--Coding Skill Item-->
<div class="skill-item">
<h4 class="progress-title">Leadership</h4>
<div class="progress">
<div class="progress-bar" data-progress-value="87">
<div class="progress-value">87%</div>
</div>
</div>
</div>
<!--Coding Skill Item-->
<div class="skill-item">
<h4 class="progress-title">Adaptability</h4>
<div class="progress">
<div class="progress-bar" data-progress-value="95">
<div class="progress-value">95%</div>
</div>
</div>
</div>
</div>
<!--Coding Skills Column End-->
</div>
<!--Skills Row End-->
</div>
</section>
<!--Resume Section End-->
<!--Porfolio Section Start-->
<section id="portfolio" class="portfolio-section pt-page">
<div class="section-container">
<!--Page Heading-->
<div class="page-heading">
<span class="icon"><i class="lnr lnr-briefcase"></i></span>
<h2>Portfolio.</h2>
</div>
<div class="row">
<!--Portfolio Filter-->
<div class="col-md-12 portfolio-filter text-center">
<ul>
<li class="active" data-filter="*">All</li>
<li data-filter=".blockchain">Blockchain</li>
<li data-filter=".ai">AI</li>
<li data-filter=".graphic">Design</li>
</ul>
</div>
</div>
<!--Portfolio Items-->
<div class="row portfolio-items mb-50">
<!--Portfolio Item-->
<div class="item col-lg-4 col-sm-6 blockchain">
<a class="image-link" href="img/portfolio/img-1.jpg">
<figure>
<img src="img/portfolio/img-1.jpg" alt="" />
<figcaption>
<h4></h4>
<p>
I played a crucial role in developing smart contracts
and supporting both backend and frontend integrations
</p>
</figcaption>
</figure>
</a>
<a class="lnr lnr-alarm" href="https://pioneerlegends.com/"></a>
</div>
<!--Portfolio Item-->
<div class="item col-lg-4 col-sm-6 blockchain">
<a class="image-link" href="img/portfolio/img-2.jpg">
<figure>
<img src="img/portfolio/img-2.jpg" alt="" />
<figcaption>
<h4></h4>
<p>
I've integrated advanced blockchain functionalities such
as NFT collections, on-chain storage for in-game
progress, and secure transactions.
</p>
</figcaption>
</figure>
</a>
<a class="lnr lnr-alarm" href="https://reavers.xyz/"></a>
</div>
<!--Portfolio Item-->
<div class="item col-lg-4 col-sm-6 blockchain">
<a class="image-link" href="img/portfolio/img-9.jpg">
<figure>
<img src="img/portfolio/img-9.jpg" alt="" />
<figcaption>
<h4></h4>
<p>
We've made it easier for users to interact with the
platform, whether they're looking to trade NFTs,
contribute to liquidity pools, or simply explore the
vast array of NFT collections available.
</p>
</figcaption>
</figure>
</a>
<a class="lnr lnr-alarm" href="https://www.snippool.xyz/"></a>
</div>
<!--Portfolio Item-->