-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1014 lines (983 loc) · 45 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">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Eduardo Takemura - Solutions Developer</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous"
/>
<script src="dist/smooth-scrollbar.js"></script>
<link rel="stylesheet" href="assets/css/styles.css" />
<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=Lora:ital,wght@0,400..700;1,400..700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<!-- Floating Navbar -->
<div id="menu-target" class="menu-top">
<div class="d-flex">
<a href="https://www.linkedin.com/in/eduardotakemura">
<!-- SVG Icon -->
<svg
xmlns="http://www.w3.org/2000/svg"
width="30"
height="30"
fill="white"
class="bi bi-linkedin"
viewBox="0 0 16 16"
>
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854zm4.943 12.248V6.169H2.542v7.225zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248S2.4 3.226 2.4 3.934c0 .694.521 1.248 1.327 1.248zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016l.016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225z"
/>
</svg>
</a>
<a href="https://wa.me/5511966607622" class="px-3">
<!-- SVG Icon -->
<svg
xmlns="http://www.w3.org/2000/svg"
width="30"
height="30"
fill="white"
class="bi bi-whatsapp"
viewBox="0 0 16 16"
>
<path
d="M13.601 2.326A7.85 7.85 0 0 0 7.994 0C3.627 0 .068 3.558.064 7.926c0 1.399.366 2.76 1.057 3.965L0 16l4.204-1.102a7.9 7.9 0 0 0 3.79.965h.004c4.368 0 7.926-3.558 7.93-7.93A7.9 7.9 0 0 0 13.6 2.326zM7.994 14.521a6.6 6.6 0 0 1-3.356-.92l-.24-.144-2.494.654.666-2.433-.156-.251a6.56 6.56 0 0 1-1.007-3.505c0-3.626 2.957-6.584 6.591-6.584a6.56 6.56 0 0 1 4.66 1.931 6.56 6.56 0 0 1 1.928 4.66c-.004 3.639-2.961 6.592-6.592 6.592m3.615-4.934c-.197-.099-1.17-.578-1.353-.646-.182-.065-.315-.099-.445.099-.133.197-.513.646-.627.775-.114.133-.232.148-.43.05-.197-.1-.836-.308-1.592-.985-.59-.525-.985-1.175-1.103-1.372-.114-.198-.011-.304.088-.403.087-.088.197-.232.296-.346.1-.114.133-.198.198-.33.065-.134.034-.248-.015-.347-.05-.099-.445-1.076-.612-1.47-.16-.389-.323-.335-.445-.34-.114-.007-.247-.007-.38-.007a.73.73 0 0 0-.529.247c-.182.198-.691.677-.691 1.654s.71 1.916.81 2.049c.098.133 1.394 2.132 3.383 2.992.47.205.84.326 1.129.418.475.152.904.129 1.246.08.38-.058 1.171-.48 1.338-.943.164-.464.164-.86.114-.943-.049-.084-.182-.133-.38-.232"
/>
</svg>
</a>
<a href="https://github.com/eduardotakemura/portfolio">
<!-- SVG Icon -->
<svg
xmlns="http://www.w3.org/2000/svg"
width="30"
height="30"
fill="white"
class="bi bi-github"
viewBox="0 0 16 16"
>
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27s1.36.09 2 .27c1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.01 8.01 0 0 0 16 8c0-4.42-3.58-8-8-8"
/>
</svg>
</a>
</div>
</div>
<div class="smooth-scroll-container">
<!-- Main Card -->
<div class="main-section container col-xl-10 col-xxl-8 px-4 py-5">
<div class="row align-items-center g-lg-5 py-5">
<div class="col-lg-7 text-start">
<h1 class="display-4 fw-bold lh-1 text-body-emphasis mb-5 title">
turning everyday
<span class="highlight-problem">problems </span> into
<span class="highlight-opport">opportunities</span>
</h1>
<a class="title-anchor fs-5" href="#project-section"
>Check My Projects</a
>
</div>
</div>
</div>
<!-- Intro -->
<div id="intro" class="container col-xl-10 col-xxl-8 px-4 py-5 mb-5">
<h2 class="text-container pb-5">
Hi, I'm Eduardo, a Software Solutions Architect & Solar Energy
Specialist.
</h2>
<div class="row align-items-center">
<!-- Text -->
<div class="col-lg-6 text-start mt-3">
<p class="lead text-justify">
I began my career managing budgets and planning for renewable
energy and high-voltage projects. Through this experience, I
sharpened my analytical skills and gained in-depth, hands-on
expertise in engineering.
</p>
<p class="lead text-justify">
Seeking new challenges that would allow me to make a
<span class="highlight-body-opport">meaningful impact</span> and
give me the <span class="highlight-body-opport">freedom</span> to
drive my own path, I expanded into software development. This led
me to master technologies such as Python, Full-Stack Web
Development, AI, Data Science, Machine Learning and more.
</p>
<p class="lead text-justify">
Today I bring a diverse skill set in Project Management,
Web/Mobile Development, Automation, AI, and UI design to create
innovative solutions, transforming ideas into high-performing
applications for businesses and individuals.
</p>
</div>
<!-- Carousel -->
<div class="col-lg-6">
<div id="carouselExampleIndicators" class="carousel slide">
<div class="carousel-indicators">
<button
type="button"
data-bs-target="#carouselExampleIndicators"
data-bs-slide-to="0"
class="active"
aria-current="true"
aria-label="Slide 1"
></button>
<button
type="button"
data-bs-target="#carouselExampleIndicators"
data-bs-slide-to="1"
aria-label="Slide 2"
></button>
<button
type="button"
data-bs-target="#carouselExampleIndicators"
data-bs-slide-to="2"
aria-label="Slide 3"
></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<img
src="images/carousel1.jpeg"
class="d-block w-100"
alt="Slide 1"
/>
</div>
<div class="carousel-item">
<img
src="images/carousel2.jpeg"
class="d-block w-100"
alt="Slide 2"
/>
</div>
<div class="carousel-item">
<img
src="images/carousel3.jpeg"
class="d-block w-100"
alt="Slide 3"
/>
</div>
</div>
<button
class="carousel-control-prev"
type="button"
data-bs-target="#carouselExampleIndicators"
data-bs-slide="prev"
>
<span
class="carousel-control-prev-icon"
aria-hidden="true"
></span>
<span class="visually-hidden">Previous</span>
</button>
<button
class="carousel-control-next"
type="button"
data-bs-target="#carouselExampleIndicators"
data-bs-slide="next"
>
<span
class="carousel-control-next-icon"
aria-hidden="true"
></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
</div>
</div>
<!-- Projects -->
<div
id="project-section"
class="container col-xl-10 col-xxl-8 px-4 py-5 mt-5"
>
<h2 class="fw-bold mb-3">My Projects</h2>
<!-- WEB APPS -->
<div class="row d-flex justify-content-center position-relative">
<!-- Section Title -->
<div class="section-title position-absolute">
<h1 class="title-text fading-effect">Web Applications</h1>
</div>
<!-- E-Commerce -->
<div class="col-md-12 d-flex justify-content-center pt-3 mt-5">
<div class="card project-card custom-width">
<div class="row g-0">
<!-- Image Section -->
<div class="col-md-5">
<div class="project-image-wrapper image-container">
<img
src="images/e_commerce.jpg"
alt="Project Image"
class="project-image img-fluid rounded-image"
/>
<div class="overlay">
<a
href="https://github.com/eduardotakemura/e-commerce"
class="overlay-link"
>Explore Base Code</a
>
</div>
</div>
</div>
<!-- Text Content Section -->
<div class="col-md-7">
<div class="card-body">
<h5 class="card-title mb-4">Full-Stack E-Commerce</h5>
<h5 class="mb-4">
Case: Every business needs an online presence
</h5>
<p class="project-description mb-4">
Solution: A Full-Stack web app with integrated payment
systems for seamless e-commerce experience.
</p>
<a
href="https://e-commerce-rpil.onrender.com/"
class="btn btn-primary mb-5"
>Visit the Page</a
>
</div>
</div>
</div>
</div>
</div>
<!-- Trello-Like Page -->
<div class="col-md-12 d-flex justify-content-center pt-3">
<div class="card project-card custom-width">
<div class="row g-0">
<!-- Image Section -->
<div class="col-md-5">
<div class="project-image-wrapper image-container">
<img
src="images/trello_like_page.png"
alt="Trello-Like Page"
class="project-image img-fluid rounded-image"
/>
<div class="overlay">
<a
href="https://github.com/eduardotakemura/trello-like-page"
class="overlay-link"
>Explore Base Code</a
>
</div>
</div>
</div>
<!-- Text Content Section -->
<div class="col-md-7">
<div class="card-body">
<h5 class="card-title mb-4">Project Management Tool</h5>
<h5 class="mb-4">
Case: Team Coordination and Project Management
</h5>
<p class="project-description mb-4">
Solution: An interactive web app built with React,
designed to mimic the functionality of 'Trello', providing
a dynamic interface for team collaboration and project
management.
</p>
<a
href="https://eduardotakemura.github.io/trello-like-page/"
class="btn btn-primary mb-5"
>Visit the Page</a
>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- AUTOMATION -->
<div class="row d-flex justify-content-center position-relative mt-5">
<!-- Section Title -->
<div class="section-title position-absolute">
<h1 class="title-text fading-effect">Automation</h1>
</div>
<!-- Real Estate Analyzer -->
<div class="col-md-12 d-flex justify-content-center pt-3 mt-5">
<div class="card project-card custom-width">
<div class="row g-0">
<!-- Image Section -->
<div class="col-md-5">
<div class="project-image-wrapper image-container">
<img
src="images/real_state_analyzer.jpg"
alt="Project Image"
class="project-image img-fluid rounded-image"
/>
<div class="overlay">
<a
href="https://github.com/eduardotakemura/real-state-analyzer"
class="overlay-link"
>Explore Base Code</a
>
</div>
</div>
</div>
<!-- Text Content Section -->
<div class="col-md-7">
<div class="card-body">
<h5 class="card-title mb-4">
AI-Powered Real Estate Analyzer
</h5>
<h5 class="mb-4">Case: Assess real estate price trends</h5>
<p class="project-description mb-4">
Solution: A data-driven tool for price prediction and
insights assessment applying web scrapping for data
gathering, machine learning for price prediction and data
analysis to explore data insights.
</p>
<a
href="https://real-state-analyzer.streamlit.app/"
class="btn btn-primary"
>Checkout Demo Page</a
>
</div>
</div>
</div>
</div>
</div>
<!-- LinkedIn Bot -->
<div class="col-md-12 d-flex justify-content-center pt-3">
<div class="card project-card custom-width">
<div class="row g-0">
<!-- Image Section -->
<div class="col-md-5">
<div class="project-image-wrapper image-container">
<img
src="images/linkedin-bot.png"
alt="Project Image"
class="project-image img-fluid rounded-image"
/>
<div class="overlay">
<a href="" class="overlay-link disabled-link"
>Explore Base Code</a
>
</div>
</div>
</div>
<!-- Text Content Section -->
<div class="col-md-7">
<div class="card-body">
<h5 class="card-title mb-4">LinkedIn Bot</h5>
<h5 class="mb-4">
Case: Tool for actions automation on LinkedIn
</h5>
<p class="project-description mb-4">
Solution: Automate repetitive and time-consuming taskes on
LinkedIn, such as following, commenting, posting, client
prospection and so.
</p>
<a href="#" class="btn btn-primary disabled-link"
>Under Construction</a
>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- MACHINE LEARNING -->
<div class="row d-flex justify-content-center position-relative mt-5">
<!-- Section Title -->
<div class="section-title position-absolute">
<h1 class="title-text fading-effect">Machine Learning</h1>
</div>
<!-- Handwritten Digits Predictor -->
<div class="col-md-12 d-flex justify-content-center pt-3 mt-5">
<div class="card project-card custom-width">
<div class="row g-0">
<!-- Image Section -->
<div class="col-md-5">
<div class="project-image-wrapper image-container">
<img
src="images/handwritten_digits.jfif"
alt="Handwritten Digits Predictor"
class="project-image img-fluid rounded-image"
/>
<div class="overlay">
<a
href="https://github.com/eduardotakemura/handwritten-digits-classifier"
class="overlay-link"
>
Explore Base Code</a
>
</div>
</div>
</div>
<!-- Text Content Section -->
<div class="col-md-7">
<div class="card-body">
<h5 class="card-title mb-4">
Handwritten Digits Predictor
</h5>
<h5 class="mb-4">
Case: Automate digits recognition for no-digital images
</h5>
<p class="project-description mb-4">
Solution: A computer vision model trained to accurately
recognize and classify handwritten digits.
</p>
<a
href="https://handwritten-digits-classifier.streamlit.app/"
class="btn btn-primary mb-5"
>
Checkout Demo Page</a
>
</div>
</div>
</div>
</div>
</div>
<!-- User Feedback Sentiment Analysis -->
<div class="col-md-12 d-flex justify-content-center pt-3">
<div class="card project-card custom-width">
<div class="row g-0">
<!-- Image Section -->
<div class="col-md-5">
<div class="project-image-wrapper image-container">
<img
src="images/sentiment_analyzer.jpg"
alt="User Feedback Sentiment Analysis"
class="project-image img-fluid rounded-image"
/>
<div class="overlay">
<a
href="https://github.com/eduardotakemura/feedback-sentiment-analyzer"
class="overlay-link"
>Explore Base Code</a
>
</div>
</div>
</div>
<!-- Text Content Section -->
<div class="col-md-7">
<div class="card-body">
<h5 class="card-title mb-4">User Sentiment Analyzer</h5>
<h5 class="mb-4">
Case: Assess user feedback to improve business
</h5>
<p class="project-description mb-4">
Solution: Implementation of two pre-trained models to
extract sentiment from user reviews, enabling business
insights and improvements.
</p>
<a
href="https://feedback-sentiment-analyzer.streamlit.app/"
class="btn btn-primary mb-5"
>Checkout Demo Page</a
>
</div>
</div>
</div>
</div>
</div>
<!-- Customer Support Chatbot -->
<div class="col-md-12 d-flex justify-content-center pt-3">
<div class="card project-card custom-width">
<div class="row g-0">
<!-- Image Section -->
<div class="col-md-5">
<div class="project-image-wrapper image-container">
<img
src="images/support_chatbot.png"
alt="Customer Support Chatbot"
class="project-image img-fluid rounded-image"
/>
<div class="overlay">
<a href="#" class="overlay-link disabled-link"
>Explore Base Code</a
>
</div>
</div>
</div>
<!-- Text Content Section -->
<div class="col-md-7">
<div class="card-body">
<h5 class="card-title mb-4">Customer Support Chatbot</h5>
<h5 class="mb-4">Case: Automate Costumer Support</h5>
<p class="project-description mb-4">
Solution: A text-generative model built to automate users
support, assisting with specific product information or
executing overall tasks.
</p>
<a href="#" class="btn btn-primary mb-5 disabled-link"
>Under Construction</a
>
</div>
</div>
</div>
</div>
</div>
<!-- Recommendation System -->
<div class="col-md-12 d-flex justify-content-center pt-3">
<div class="card project-card custom-width">
<div class="row g-0">
<!-- Image Section -->
<div class="col-md-5">
<div class="project-image-wrapper image-container">
<img
src="images/recommendation_system.png"
alt="Recommendation System"
class="project-image img-fluid rounded-image"
/>
<div class="overlay">
<a
href="https://github.com/eduardotakemura/movie-recommendator"
class="overlay-link"
>Explore Base Code</a
>
</div>
</div>
</div>
<!-- Text Content Section -->
<div class="col-md-7">
<div class="card-body">
<h5 class="card-title mb-4">Recommendation System</h5>
<h5 class="mb-4">
Case: Accurate recommendations for growing content
platforms
</h5>
<p class="project-description mb-4">
Solution: A model trained to recommend movies based on
users preferences, enhancing user experience on content
platforms.
</p>
<a
href="https://movie-recommendator.streamlit.app/"
class="btn btn-primary mb-5"
>Checkout Demo Page</a
>
</div>
</div>
</div>
</div>
</div>
<!-- Text-to-Image Generator -->
<div class="col-md-12 d-flex justify-content-center pt-3">
<div class="card project-card custom-width">
<div class="row g-0">
<!-- Image Section -->
<div class="col-md-5">
<div class="project-image-wrapper image-container">
<img
src="images/text_to_image_generator.webp"
alt="Text-to-Image Generator"
class="project-image img-fluid rounded-image"
/>
<div class="overlay">
<a
href="https://github.com/eduardotakemura/text-to-image-gen"
class="overlay-link"
>Explore Base Code</a
>
</div>
</div>
</div>
<!-- Text Content Section -->
<div class="col-md-7">
<div class="card-body">
<h5 class="card-title mb-4">Text-to-Image Generator</h5>
<h5 class="mb-4">Case: Illustration and Creativity</h5>
<p class="project-description mb-4">
Solution: A text-to-image multimodal generator that
produce creative and contextually accurate illustrations
from text input.
</p>
<p class="project-description mb-4">
Implemented using pre-trained models OpenAI's CLIP and
CompVis' VQGAN Transformers.
</p>
<a
href="https://github.com/eduardotakemura/text-to-image-gen"
class="btn btn-primary mb-5"
>Explore Base Code</a
>
</div>
</div>
</div>
</div>
</div>
<!-- Image Segmentator -->
<div class="col-md-12 d-flex justify-content-center pt-3">
<div class="card project-card custom-width">
<div class="row g-0">
<!-- Image Section -->
<div class="col-md-5">
<div class="project-image-wrapper image-container">
<img
src="images/image_segmentator.png"
alt="Image Segmentator"
class="project-image img-fluid rounded-image"
/>
<div class="overlay">
<a
href="https://github.com/eduardotakemura/image-segmentation"
class="overlay-link"
>Explore Base Code</a
>
</div>
</div>
</div>
<!-- Text Content Section -->
<div class="col-md-7">
<div class="card-body">
<h5 class="card-title mb-4">Image Segmentator</h5>
<h5 class="mb-4">Case: Image Editing using AI</h5>
<p class="project-description mb-4">
Solution: An AI-powered image segmentation tool that
allows users to edit and manipulate images only by using
text prompts.
</p>
<p class="project-description mb-4">
Implemented using pre-trained models Stable Diffusion and
Meta's Segment Anything.
</p>
<a
href="https://github.com/eduardotakemura/image-segmentation"
class="btn btn-primary mb-5"
>Explore Base Code</a
>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- WEB3 -->
<div class="row d-flex justify-content-center position-relative mt-5">
<!-- Section Title -->
<div class="section-title position-absolute">
<h1 class="title-text fading-effect">Web3 / Smart Contracts</h1>
</div>
<!-- Crowdfunding Platform -->
<div class="col-md-12 d-flex justify-content-center pt-3 mt-5">
<div class="card project-card custom-width">
<div class="row g-0">
<!-- Image Section -->
<div class="col-md-5">
<div class="project-image-wrapper image-container">
<img
src="images/crowdfunding.webp"
alt="Project Image"
class="project-image img-fluid rounded-image"
/>
<div class="overlay">
<a href="#" class="overlay-link disabled-link"
>Explore Base Code</a
>
</div>
</div>
</div>
<!-- Text Content Section -->
<div class="col-md-7">
<div class="card-body">
<h5 class="card-title mb-4">Crowdfunding Platform</h5>
<h5 class="mb-4">
Case: Many innovative projects struggle to raise funds
</h5>
<p class="project-description mb-4">
Solution: A blockchain-powered crowdfunding platform
ensuring transparent, secure, and decentralized fund
management, through the use of Ethereum's Smart Contracts.
</p>
<a href="#" class="btn btn-primary disabled-link"
>Under Construction</a
>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- GAMES -->
<div class="row d-flex justify-content-center position-relative mt-5">
<!-- Section Title -->
<div class="section-title position-absolute">
<h1 class="title-text fading-effect">Games</h1>
</div>
<!-- Space Invaders -->
<div class="col-md-12 d-flex justify-content-center pt-3 mt-5">
<div class="card project-card custom-width">
<div class="row g-0">
<!-- Image Section -->
<div class="col-md-5">
<div class="project-image-wrapper image-container">
<img
src="images/space_invaders.png"
alt="Project Image"
class="project-image img-fluid rounded-image"
/>
<div class="overlay">
<a
href="https://github.com/eduardotakemura/space-invaders"
class="overlay-link"
>Explore Base Code</a
>
</div>
</div>
</div>
<!-- Text Content Section -->
<div class="col-md-7">
<div class="card-body">
<h5 class="card-title mb-4">Space Invaders</h5>
<h5 class="mb-4">
Opportunity: Rapidly growing gaming market
</h5>
<p class="project-description mb-4">
Project: A recreation of the Classic Arcade Game 'Space
Invaders' released at 1978.
</p>
<a
href="https://replit.com/@eduardotakemura/space-invaders"
class="btn btn-primary"
>Play Here</a
>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Ending and Contacts -->
<div
id="contact-section"
class="container col-xl-10 col-xxl-8 px-4 py-5 mt-5 text-center"
>
<!-- Ending -->
<div class="row">
<div class="col-12 text-start mb-4">
<h2 class="fw-bold mb-3">Thank for Your Time!</h2>
<p class="lead">
I'm always eager for new opportunities and challenges. Whether
you're looking for a collaboration, have a project in mind, or
simply want to connect, feel free to reach out to me through any
media.
</p>
<p class="lead">
Currently, I’m seeking job opportunities where I can contribute to
impactful projects and work with driven teams. If you believe my
experience aligns with your goals, don’t hesitate to get in touch
so we can explore how I might add value to your project.
</p>
</div>
</div>
<!-- Contact Information -->
<div class="row d-flex mt-4">
<div class="col-12 d-flex align-items-center px-3">
<ul class="list-unstyled text-start">
<!-- LinkedIn -->
<li class="d-flex align-items-center gap-3">
<div class="icon-wrapper">
<svg
xmlns="http://www.w3.org/2000/svg"
width="30"
height="30"
fill="white"
class="contact-icon bi bi-linkedin"
viewBox="0 0 16 16"
>
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854zm4.943 12.248V6.169H2.542v7.225zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248S2.4 3.226 2.4 3.934c0 .694.521 1.248 1.327 1.248zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016l.016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225z"
/>
</svg>
</div>
<a
href="https://www.linkedin.com/in/eduardotakemura"
target="_blank"
class="title-anchor contact-link"
>eduardotakemura</a
>
</li>
<!-- WhatsApp -->
<li class="d-flex align-items-center gap-3">
<div class="icon-wrapper">
<svg
xmlns="http://www.w3.org/2000/svg"
width="30"
height="30"
fill="white"
class="contact-icon bi bi-whatsapp"
viewBox="0 0 16 16"
>
<path
d="M13.601 2.326A7.85 7.85 0 0 0 7.994 0C3.627 0 .068 3.558.064 7.926c0 1.399.366 2.76 1.057 3.965L0 16l4.204-1.102a7.9 7.9 0 0 0 3.79.965h.004c4.368 0 7.926-3.558 7.93-7.93A7.9 7.9 0 0 0 13.6 2.326zM7.994 14.521a6.6 6.6 0 0 1-3.356-.92l-.24-.144-2.494.654.666-2.433-.156-.251a6.56 6.56 0 0 1-1.007-3.505c0-3.626 2.957-6.584 6.591-6.584a6.56 6.56 0 0 1 4.66 1.931 6.56 6.56 0 0 1 1.928 4.66c-.004 3.639-2.961 6.592-6.592 6.592m3.615-4.934c-.197-.099-1.17-.578-1.353-.646-.182-.065-.315-.099-.445.099-.133.197-.513.646-.627.775-.114.133-.232.148-.43.05-.197-.1-.836-.308-1.592-.985-.59-.525-.985-1.175-1.103-1.372-.114-.198-.011-.304.088-.403.087-.088.197-.232.296-.346.1-.114.133-.198.198-.33.065-.134.034-.248-.015-.347-.05-.099-.445-1.076-.612-1.47-.16-.389-.323-.335-.445-.34-.114-.007-.247-.007-.38-.007a.73.73 0 0 0-.529.247c-.182.198-.691.677-.691 1.654s.71 1.916.81 2.049c.098.133 1.394 2.132 3.383 2.992.47.205.84.326 1.129.418.475.152.904.129 1.246.08.38-.058 1.171-.48 1.338-.943.164-.464.164-.86.114-.943-.049-.084-.182-.133-.38-.232"
/>
</svg>
</div>
<a
href="https://wa.me/5511966607622"
target="_blank"
class="title-anchor contact-link"
>+55 (11) 96660-7622</a
>
</li>
<!-- GitHub -->
<li class="d-flex align-items-center gap-3">
<div class="icon-wrapper">
<svg
xmlns="http://www.w3.org/2000/svg"
width="30"
height="30"
fill="white"
class="contact-icon bi bi-github"
viewBox="0 0 16 16"
>
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27s1.36.09 2 .27c1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.01 8.01 0 0 0 16 8c0-4.42-3.58-8-8-8"
/>
</svg>
</div>
<a
href="https://github.com/eduardotakemura/portfolio"
target="_blank"
class="title-anchor contact-link"
>eduardotakemura</a
>
</li>
<!-- Email -->
<li class="d-flex align-items-center gap-3">
<div class="icon-wrapper">
<svg
xmlns="http://www.w3.org/2000/svg"
width="30"
height="30"
fill="currentColor"
class="contact-icon bi bi-envelope"
viewBox="0 0 16 16"
>
<path
d="M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm2-1a1 1 0 0 0-1 1v.217l7 4.2 7-4.2V4a1 1 0 0 0-1-1zm13 2.383-4.708 2.825L15 11.105zm-.034 6.876-5.64-3.471L8 9.583l-1.326-.795-5.64 3.47A1 1 0 0 0 2 13h12a1 1 0 0 0 .966-.741M1 11.105l4.708-2.897L1 5.383z"
/>
</svg>
</div>
<a
href="mailto:eduardo.takemura@gmail.com"
class="title-anchor contact-link"
>eduardo.takemura@gmail.com</a
>
</li>
</ul>
</div>
</div>
</div>
<!-- Footer -->
<div class="container text-white">
<footer
class="d-flex flex-wrap justify-content-between align-items-center py-3 my-4 border-top"
>
<div class="col-md-4 d-flex align-items-center">
<a href="/" class="mb-3 me-2 mb-md-0 text-decoration-none lh-1">
<svg class="bi" width="30" height="24">
<use xlink:href="#bootstrap"></use>
</svg>
</a>
<span class="mb-3 mb-md-0"
>© <span id="current-year"></span> Eduardo Takemura. All
Rights Reserved.</span
>
</div>
<!-- <ul class="nav col-md-4 justify-content-end list-unstyled d-flex">
<li class="ms-3">
<a class="" href="https://www.linkedin.com/in/eduardotakemura">
<svg
xmlns="http://www.w3.org/2000/svg"
width="30"
height="30"
fill="white"
class="bi bi-linkedin"
viewBox="0 0 16 16"
>
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854zm4.943 12.248V6.169H2.542v7.225zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248S2.4 3.226 2.4 3.934c0 .694.521 1.248 1.327 1.248zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016l.016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225z"
/>
</svg>
</a>
</li>
<li class="ms-3">
<a class="" href="https://wa.me/5511966607622">
<svg
xmlns="http://www.w3.org/2000/svg"
width="30"
height="30"
fill="white"
class="bi bi-whatsapp"
viewBox="0 0 16 16"
>
<path
d="M13.601 2.326A7.85 7.85 0 0 0 7.994 0C3.627 0 .068 3.558.064 7.926c0 1.399.366 2.76 1.057 3.965L0 16l4.204-1.102a7.9 7.9 0 0 0 3.79.965h.004c4.368 0 7.926-3.558 7.93-7.93A7.9 7.9 0 0 0 13.6 2.326zM7.994 14.521a6.6 6.6 0 0 1-3.356-.92l-.24-.144-2.494.654.666-2.433-.156-.251a6.56 6.56 0 0 1-1.007-3.505c0-3.626 2.957-6.584 6.591-6.584a6.56 6.56 0 0 1 4.66 1.931 6.56 6.56 0 0 1 1.928 4.66c-.004 3.639-2.961 6.592-6.592 6.592m3.615-4.934c-.197-.099-1.17-.578-1.353-.646-.182-.065-.315-.099-.445.099-.133.197-.513.646-.627.775-.114.133-.232.148-.43.05-.197-.1-.836-.308-1.592-.985-.59-.525-.985-1.175-1.103-1.372-.114-.198-.011-.304.088-.403.087-.088.197-.232.296-.346.1-.114.133-.198.198-.33.065-.134.034-.248-.015-.347-.05-.099-.445-1.076-.612-1.47-.16-.389-.323-.335-.445-.34-.114-.007-.247-.007-.38-.007a.73.73 0 0 0-.529.247c-.182.198-.691.677-.691 1.654s.71 1.916.81 2.049c.098.133 1.394 2.132 3.383 2.992.47.205.84.326 1.129.418.475.152.904.129 1.246.08.38-.058 1.171-.48 1.338-.943.164-.464.164-.86.114-.943-.049-.084-.182-.133-.38-.232"
/>
</svg>
</a>
</li>
<li class="ms-3">
<a class="" href="https://github.com/eduardotakemura/portfolio">
<svg
xmlns="http://www.w3.org/2000/svg"
width="30"
height="30"
fill="white"
class="bi bi-github"
viewBox="0 0 16 16"
>
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27s1.36.09 2 .27c1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.01 8.01 0 0 0 16 8c0-4.42-3.58-8-8-8"
/>
</svg>
</a>
</li>
</ul> -->
</footer>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/smooth-scrollbar@8.7.2/dist/smooth-scrollbar.js"></script>
<script>
// Apply smooth scrolling to the content container, not the body
document.addEventListener('DOMContentLoaded', function () {
var container = document.querySelector('.smooth-scroll-container')
Scrollbar.init(container, {
damping: 0.05, // Adjust smoothness factor
renderByPixels: true,
})
})
</script>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"
></script>
<script>
document.addEventListener('DOMContentLoaded', function () {
var currentYear = new Date().getFullYear()
document.getElementById('current-year').textContent = currentYear
})
</script>
<script>
document.addEventListener('DOMContentLoaded', function () {
// Assuming you've initialized Smooth Scrollbar
var scrollbar = Scrollbar.init(
document.querySelector('.smooth-scroll-container')
)
// Add click event to anchor links
document.querySelectorAll('a[href^="#"]').forEach((anchor) => {
anchor.addEventListener('click', function (e) {
e.preventDefault() // Prevent default anchor behavior
const targetId = this.getAttribute('href').substring(1)
const targetElement = document.getElementById(targetId)