-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
972 lines (692 loc) · 34.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="resources/misc/icon.png" />
<!-- Other CSS files -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css"
/>
<link
rel="stylesheet"
href="https://unicons.iconscout.com/release/v4.0.8/css/line.css"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@splidejs/[email protected]/dist/css/splide.min.css"
/>
<script src="https://cdn.jsdelivr.net/npm/@splidejs/[email protected]/dist/js/splide.min.js"></script>
<!-- -->
<!-- Main CSS files -->
<link rel="stylesheet" href="styles/main.css" />
<link rel="stylesheet" href="styles/wallpaper.css" />
<link rel="stylesheet" href="styles/landing.css" />
<link rel="stylesheet" href="styles/navbar.css" />
<link rel="stylesheet" href="styles/about.css" />
<link rel="stylesheet" href="styles/services.css" />
<link rel="stylesheet" href="styles/journey.css" />
<link rel="stylesheet" href="styles/portfolio.css" />
<link rel="stylesheet" href="styles/testimonials.css" />
<link rel="stylesheet" href="styles/project-banner.css" />
<link rel="stylesheet" href="styles/footer.css" />
<!-- -->
<title>Ike Lim</title>
</head>
<body>
<!-- <section id="dev">
<div class="page">
<h1 class="title">
This page is currently under development. Please try again later.
</h1>
<div class="flex">
<i class="uil uil-cog"></i>
<i class="uil uil-cog"></i>
</div>
</div>
</section> -->
<!-- Dot Animations -->
<div class="dot-container">
<div class="bubbles flex">
<span style="--i:11"></span>
<span style="--i:12"></span>
<span style="--i:15"></span>
<span style="--i:23"></span>
<span style="--i:12"></span>
<span style="--i:11"></span>
<span style="--i:22"></span>
<span style="--i:11"></span>
<span style="--i:15"></span>
<span style="--i:14"></span>
<span style="--i:18"></span>
<span style="--i:12"></span>
<span style="--i:10"></span>
<span style="--i:8"></span>
<span style="--i:13"></span>
<span style="--i:15"></span>
<span style="--i:17"></span>
<span style="--i:12"></span>
<span style="--i:16"></span>
<span style="--i:12"></span>
<span style="--i:13"></span>
<span style="--i:25"></span>
</div>
</div>
<!-- Nav Bar -->
<header class="primary-header" data-home="true">
<div class="header-container flex">
<div class="breadcrumb">
<a href="/">
<h4>IKE LIM</h4>
</a>
</div>
<nav>
<i class="mobile-nav-toggle uil uil-apps" aria-controls="primary-navigation" aria-expanded="false"></i>
<ul data-visible="false" id="primary-navigation" class="primary-navigation flex">
<li data-visible="false" class="active page-landing">
<a href="#">.home()</a>
</li>
<li data-visible="false" class="page-about">
<a href="#about">.about()</a>
</li>
<li data-visible="false" class="page-services">
<a href="#services">.services()</a>
</li>
<li data-visible="false" class="page-portfolio">
<a href="#portfolio">.portfolio()</a>
</li>
<li data-visible="false">
<a href="/pricing">.pricing()</a>
</li>
<li data-visible="false" class="flex">
<a href="https://instagram.com/ikeawesom">
<i class="uil uil-instagram"></i>
</a>
<a href="https://github.com/ikeawesom">
<i class="uil uil-github"></i>
</a>
<a href="https://www.linkedin.com/in/ike-lim/">
<i class="uil uil-linkedin"></i>
</a>
</li>
</ul>
</nav>
</div>
</header>
<!-- Main Body -->
<section id="page-wrapper">
<section id="landing">
<div class="flex title">
<div>
<div class="name">
<div class="flex">
<span class="red">
<h1>></h1>
</span>
<span class="red">
<h1>></h1>
</span>
</div>
<div class="flex">
<span class="red">
<h1>w</h1>
</span>
<span class="red">
<h1>h</h1>
</span>
<span class="red">
<h1>o</h1>
</span>
<span class="red">
<h1>a</h1>
</span>
<span class="red">
<h1>m</h1>
</span>
<span class="red">
<h1>i</h1>
</span>
</div>
</div>
<div class="name">
<div class="flex">
<span class="yellow">
<h1>I</h1>
</span>
<span class="yellow">
<h1>k</h1>
</span>
<span class="yellow">
<h1>e</h1>
</span>
</div>
<div class="flex">
<span class="yellow">
<h1>L</h1>
</span>
<span class="yellow">
<h1>i</h1>
</span>
<span class="yellow">
<h1>m</h1>
</span>
</div>
</div>
<p>Just a student who enjoys playing with software.</p>
</div>
</div>
</section>
<!-- About Me -->
<section id="about" class="page">
<h1 class="title scroll-hidden top noanim">ike<span class="subtitle">.about()</span></h1>
<div class="about-container flex">
<div class="image-container flex scroll-hidden left noanim">
<img src="resources/misc/pfp.jfif" alt="Profile Picture">
</div>
<div class="flex about-container-text">
<div class="scroll-hidden right noanim">
<h4>Hi there. My name is Ike (ai-ke).</h4>
<p>Software development and cybersecurity are two of the many technologically
related fields that I have been passionate about since young. Worked on many projects on my own and
participated in several events in these fields.
</p>
</div>
<div class="experience-container flex">
<div class="experience-tab scroll-hidden top noanim">
<h3>04+</h3>
<p>Years of<br>Experience</p>
</div>
<div class="experience-tab scroll-hidden top noanim">
<h3>10+</h3>
<p>Completed<br>Projects</p>
</div>
<div class="experience-tab scroll-hidden top noanim">
<h3>30+</h3>
<p>Satisfied<br>Customers</p>
</div>
</div>
<!-- Download CV -->
<a href="https://drive.google.com/file/d/1qRPfnTT_jh3Rf3MEcYem9rgZyjYDAHTc/view?usp=sharing" target="_blank">
<button class="scroll-hidden bottom noanim">
Download CV <i class="uil uil-download-alt"></i>
</button>
</a>
</div>
</div>
<!-- Education -->
<h2 class="comment scroll-hidden top noanim">// my education</h1>
<div class="journey-container">
<!--
<div class="journey-tab scroll-hidden top">
<div>
<h3>2025 - 2029</h3>
<div class="journey-text">
<h4>Nanyang Technological University</h4>
<i data-cur="0" class="uil uil-angle-down"></i>
<div class="sub-text">
<p>First Class Honours in Computer Science</p>
</div>
</div>
</div>
</div>
-->
<div class="journey-tab scroll-hidden top">
<div>
<h3>2021 - 2022</h3>
<div class="journey-text">
<h4>Anglo-Chinese Junior College</h4>
<i data-cur="0" class="uil uil-angle-down"></i>
<div class="sub-text">
<p>Technological Council EXCO: Project Manager</p>
<p>Distinctions in Computing and Mathematics.</p>
</div>
</div>
</div>
</div>
<div class="journey-tab scroll-hidden top">
<div>
<h3>2017 - 2020</h3>
<div class="journey-text">
<h4>Ngee Ann Secondary School</h4>
<i class="uil uil-angle-down"></i>
<div class="sub-text">
<p>Senior Sports Leader</p>
<p>Distinctions in A-Maths, E-Maths, Chemistry, Physics, Computing and Geography</p>
</div>
</div>
</div>
</div>
</div>
<!-- Experience -->
<h2 class="comment scroll-hidden top noanim">// my experience</h1>
<div class="journey-container flex">
<div class="journey-tab small scroll-hidden left">
<div>
<h3>SMU Award</h3>
<div class="journey-text">
<h4>Singapore Management University</h4>
<p>Computing @ SMU Award:
Outstanding academic performance and passion in computing</p>
</div>
</div>
</div>
<div class="journey-tab small scroll-hidden left">
<div>
<h3>Sentinels</h3>
<div class="journey-text">
<h4>Ministry of Defence, SAFC4I</h4>
<p>Cybersecurity Course that trains basic penetration skills and network analysis
</p>
</div>
</div>
</div>
<div class="journey-tab small scroll-hidden left">
<div>
<h3>National Olympiad in Informatics</h3>
<div class="journey-text">
<h4>National University of Singapore</h4>
<p>Bronze Medal and Third in School</p>
</div>
</div>
</div>
<div class="journey-tab small scroll-hidden left">
<div>
<h3>Canadian Computing Competition</h3>
<div class="journey-text">
<h4>University of Waterloo</h4>
<p>Distinction in junior category</p>
</div>
</div>
</div>
<div class="journey-tab small scroll-hidden left">
<div>
<h3>Artificial Intelligence</h3>
<div class="journey-text">
<h4>Codeavour</h4>
<p>Basic A.I. course using PictoBlox</p>
</div>
</div>
</div>
</div>
</section>
<!-- Services: What I Offer -->
<section id="services" class="page">
<h1 class="title scroll-hidden top noanim">ike<span class="subtitle">.services()</span></h1>
<div class="services-container flex">
<div class="services-tab scroll-hidden left">
<i class="icon uil uil-browser"></i>
<h4>Web Developer</h4>
<i data-service="Web Developer" class="uil uil-arrow-down-right"></i>
</div>
<div class="services-tab scroll-hidden left">
<i class="icon uil uil-arrow"></i>
<h4>Software Engineer</h4>
<i data-service="Software Engineer" class="uil uil-arrow-down-right"></i>
</div>
<div class="services-tab scroll-hidden left">
<i class="icon uil uil-icons"></i>
<h4>UI/UX Designer</h4>
<i data-service="UI/UX Designer" class="uil uil-arrow-down-right"></i>
</div>
<!-- Modals -->
<div id="services-modal" class="modal">
<div class="modal-container">
<span class="close">×</span>
<h3 class="modal-title">Web Developer</h3>
<div class="modal-content" data-service="Web Developer">
<p>Do you need a personal website for your portfolio? Or even a professional website for
your business?
If those are your needs, you have come to the right place.</p>
<p><b>What you can expect from me?</b></p>
<ul>
<li><i class="uil uil-check-circle"></i>Mobile Responsive</li>
<li><i class="uil uil-check-circle"></i>Fast & Secure</li>
<li><i class="uil uil-check-circle"></i>Easily Editable</li>
<li><i class="uil uil-check-circle"></i>Catered to Your Audience</li>
<li><i class="uil uil-check-circle"></i>Royalty Free Images</li>
</ul>
<p>Your satisfaction is what I desire, so I offer <b>ulimited revisions</b> to all my
packages, meaning that I will work on your website till you are pleased with the result.
</p>
<p><b>What do I need from you to start your website design?</b></p>
<ul>
<li><i class="uil uil-pen"></i>Brief Story/Specification requirements</li>
<li><i class="uil uil-pen"></i>Provide your style guide & logo (i.e. colour, theme,
etc.)</li>
<li><i class="uil uil-pen"></i>Some reference websites (if applicable)</li>
</ul>
<p>Let us work together and build your online platform.</p>
</div>
<div class="button-container">
<a href="/pricing#web">
<button>
I need a project! <span><i class="uil uil-arrow-right"></i></span>
</button>
</a>
</div>
</div>
<div class="modal-container">
<span class="close">×</span>
<h3 class="modal-title">Software Developer</h3>
<div class="modal-content">
<p>Are you dealing with long and tiring manual inputs? Are you looking for a custom built,
simple and efficient automated software to aid you in your personal or business use?<br>
If those are your needs, you have come to the right place.</p>
<p><b>What you can expect from me</b></p>
<ul>
<li><i class="uil uil-check-circle"></i>Mobile/Desktop Compatible</li>
<li><i class="uil uil-check-circle"></i>Database/Record Systems</li>
<li><i class="uil uil-check-circle"></i>Personal/Company Software</li>
<li><i class="uil uil-check-circle"></i>Software as a Service</li>
<li><i class="uil uil-check-circle"></i>Excellent User Interface</li>
</ul>
<p>Your satisfaction is what I desire, so I offer <b>ulimited revisions</b> to all my
packages, meaning that I will work on your software until you are pleased with the
result.</p>
<p><b>What do I need from you to start building your app?</b></p>
<ul>
<li><i class="uil uil-pen"></i>Brief Story/Specification requirements</li>
<li><i class="uil uil-pen"></i>Provide your style guide & logo (i.e. colour, theme,
etc.)</li>
<li><i class="uil uil-pen"></i>Some reference designs (if applicable)</li>
</ul>
<p>Ready to get started? Let's discuss your next project.</p>
</div>
<div class="button-container">
<a href="/pricing#software">
<button>
I need a project! <span><i class="uil uil-arrow-right"></i></span>
</button>
</a>
</div>
</div>
<div class="modal-container">
<span class="close">×</span>
<h3 class="modal-title">UI/UX Designer</h3>
<div class="modal-content">
<p>If you have a great app idea and need a designer to provide stunning user interfaces,
then you're in the right place!
I will create a professional, modern, and unique UI for your mobile/web application.</p>
<p><b>What you can expect from me</b></p>
<ul>
<li><i class="uil uil-check-circle"></i>Pixel Perfect UI Design</li>
<li><i class="uil uil-check-circle"></i>Fast Delivery</li>
<li><i class="uil uil-check-circle"></i>High-Quality Mockups</li>
<li><i class="uil uil-check-circle"></i>Latest UI Design Trends</li>
</ul>
<p>Your satisfaction is what I desire, so I offer <b>ulimited revisions</b> to all my
packages, meaning that I will work on your software until you are pleased with the
result.</p>
<p><b>What do I need from you to start building your app?</b></p>
<ul>
<li><i class="uil uil-pen"></i>Description/Sketches of what should appear on each screen
</li>
<li><i class="uil uil-pen"></i>Provide your style guide & logo (i.e. colour, theme,
etc.)</li>
<li><i class="uil uil-pen"></i>Some reference designs (if applicable)</li>
<li><i class="uil uil-pen"></i>Target Audience (if applicable)</li>
</ul>
<p><b>NOTE:</b> I will not develop your application but only the design of it so the result
will not include code.</p>
<p>Let's start designing together.</p>
</div>
<div class="button-container">
<a href="/pricing#uiux">
<button>
I need a project! <span><i class="uil uil-arrow-right"></i></span>
</button>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Portfolio -->
<section id="portfolio" class="page">
<h1 class="title scroll-hidden top noanim">
ike<span class="subtitle">.portfolio()</span>
</h1>
<h2 class="comment scroll-hidden top noanim">// latest works</h2>
<div class="portfolio-container highlights flex">
<div class="portfolio-item highlights scroll-hidden left flex" data-side="left">
<div class="portfolio-background flex" id="portfolio-mademoiselle" data-side="left">
<div class="portfolio-banner"></div>
<div class="portfolio-content">
<div class="text">
<h3>Mademoiselle Angel</h3>
<p>Full Stack E-Commerce platform for a family business.</p>
</div>
<a href="/mademoiselle_angel" target="_blank">
<button>
<span class="button-banner"></span>
Read More <span><i class="uil uil-arrow-right"></i></span>
</button>
</a>
</div>
</div>
</div>
<div class="portfolio-item highlights scroll-hidden right flex" data-side="right">
<div class="portfolio-background flex" id="portfolio-passsafe"data-side="right" >
<div class="portfolio-banner"></div>
<div class="portfolio-content" >
<div class="text">
<h3>PassSafe</h3>
<p>Want to be safe online but too many passwords to remember?
Do not fear, PassSafe is here.</p>
</div>
<a href="/passsafe" target="_blank">
<button>
<span class="button-banner"></span>
Read More <span><i class="uil uil-arrow-right"></i></span>
</button>
</a>
</div>
</div>
</div>
</div>
<h2 class="comment scroll-hidden top noanim" style="margin-bottom: 0;">// other projects</h2>
<div class="portfolio-container-1">
<div class="portfolio-row flex">
<div class="portfolio-item flex scroll-hidden left">
<div class="image">
<img src="./resources/projects/econs.png" alt="Economics Manager">
</div>
<div class="text">
<h3>Economics Manager</h3>
<i><h4>Jun 2022 - Aug 2022</h4></i>
<p>Customised Python software engineering and automation.</p>
<a href="economics_manager.html" class="active" target="_blank">
View Case Study
</a>
</div>
</div>
</div>
<div class="portfolio-row flex">
<div class="portfolio-item flex scroll-hidden right">
<div class="image">
<img src="./resources/projects/hog.png" alt="Hog Royale">
</div>
<div class="text flex">
<h3>Hog Royale</h3>
<i><h4>Nov 2021 - Dec 2021</h4></i>
<p>Creative and interactive Frontend Development with HTML, CSS and Vanilla JS.</p>
<a href="/hog_royale" class="active" target="_blank">
View Case Study
</a>
</div>
</div>
</div>
<div class="portfolio-row flex">
<div class="portfolio-item flex scroll-hidden left">
<div class="image">
<img src="./resources/projects/zombie.png" alt="Zombie Game">
</div>
<div class="text flex">
<h3>Zombie Game</h3>
<i><h4>Jun 2021 - Jul 2021</h4></i>
<p>Thrilling Third-Person Shooter (TPS) built with Unity and C#.</p>
<a class="inactive">
Case Study (Currently Unavailable)
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section id="testimonials" class="page">
<h1 class="title scroll-hidden top noanim">
ike<span class="subtitle">.testimonials()</span>
</h1>
<div class="testimonials-row flex scroll-hidden top" data-side="right">
<div class="testimonials-container scroll-hidden bottom">
<div class="text flex scroll-hidden top">
<i class="fa-sharp fa-solid fa-quote-left"></i>
<h4>Ike is a confident young man who has displayed a strong sense of purpose in all that
he pursues. He is undaunted by challenges and views them as learning opportunities to
improve himself.</h4>
</div>
<div class="quoter flex scroll-hidden top">
<div class="quoter-content flex">
<div class="icon">
<img src="./resources/misc/teo.png" alt="Anglo-Chinese Junior College">
</div>
<div class="name">
<h3>Teo Qing Ren</h3>
<p>Anglo-Chinese Junior College</p>
</div>
</div>
</div>
</div>
</div>
<div class="testimonials-row flex scroll-hidden top" data-side="left">
<div class="testimonials-container scroll-hidden bottom">
<div class="text flex scroll-hidden top">
<h4>Meticulous and thorough in nature, Ike takes pride in the quality of the work he
presents and works steadily towards his goals.</h4>
<i class="fa-solid fa-quote-right"></i>
</div>
<div class="quoter flex scroll-hidden top">
<div class="quoter-content flex">
<div class="icon">
<img src="./resources/misc/wong.jfif" alt="Ngee Ann Secondary School">
</div>
<div class="name">
<h3>Britmand Wong</h3>
<p>Ngee Ann Secondary School</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Me for Projects -->
<section id="project-banner" class="page">
<div class="banner flex scroll-hidden top">
<div class="text">
<h3>You got a project idea?</h3>
<p>Contact me now and get a <span class="discount">15% discount</span> on your new project.</p>
<button onclick="window.location.href = '/pricing'">
<span class="shine"></span>
Get In Touch <i class="uil uil-arrow-right"></i>
</button>
</div>
<!-- <div class="list">
<ul>
<li>
<i class="uil uil-check-circle"></i>
Unlimited Revisions
</li>
<li>
<i class="uil uil-check-circle"></i>
Affordable Pricing
</li>
<li>
<i class="uil uil-check-circle"></i>
Catered to Your Audience
</li>
</ul>
</div> -->
</div>
</section>
</section>
<section id="discount">
<div class="banner scroll-hidden bottom">
<h4>
IKE HAS A NEW PERSONAL WEBSITE CURRENTLY IN DEVELOPMENT. STAY TUNED!
</h4>
</div>
</section>
<!-- Footer -->
<footer class="primary-footer flex">
<div class="footer-text flex">
<a href="#">
<h4>IKE LIM</h4>
</a>
</div>
<ul class="flex">
<li>
<a href="https://instagram.com/ikeawesom">
<i class="uil uil-instagram"></i>
</a>
</li>
<li>
<a href="https://github.com/ikeawesom">
<i class="uil uil-github"></i>
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/ike-lim/">
<i class="uil uil-linkedin"></i>
</a>
</li>
</ul>
<p>Copyright © 2023 Ike Lim. All Rights Reserved.</p>
</footer>
<!-- <section id="template">
<h1>H1</h1>
<h2>H2</h2>
<h3>H3</h3>
<h4>H4</h4>
<p>p</p>
<hr>
<h1>Title</h1>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Dolor iure et quos facilis necessitatibus placeat sed rerum aliquid dolores, itaque eos consequuntur consectetur veniam iusto, dolorum esse consequatur cum est.</p>
<section id="theme-dark" class="theme">
<h1>Heading</h1>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Dolor iure et quos facilis necessitatibus placeat sed rerum aliquid dolores, itaque eos consequuntur consectetur veniam iusto, dolorum esse consequatur cum est.</p>
<button class="button primary"> Primary Button </button>
<button class="button secondary"> Secondary Button</button>
<input type="text" value="hi">
<i class='bx bx-menu-alt-right'></i>
</section>
</section> -->
<script type="module">
// Import the functions you need from the SDKs you need
import { initializeApp } from "https://www.gstatic.com/firebasejs/9.23.0/firebase-app.js";
import { getAnalytics } from "https://www.gstatic.com/firebasejs/9.23.0/firebase-analytics.js";
// TODO: Add SDKs for Firebase products that you want to use
// https://firebase.google.com/docs/web/setup#available-libraries
// Your web app's Firebase configuration
// For Firebase JS SDK v7.20.0 and later, measurementId is optional
const firebaseConfig = {
apiKey: "AIzaSyDkm8RMGxIYzmxq94KhCLWyN95thVpJs4g",
authDomain: "ike-lim-website.firebaseapp.com",
projectId: "ike-lim-website",
storageBucket: "ike-lim-website.appspot.com",
messagingSenderId: "817715312989",
appId: "1:817715312989:web:8b4ba4e58b77b570c2d0b4",
measurementId: "G-1X9R8CHVVD",
};
// Initialize Firebase
const app = initializeApp(firebaseConfig);
const analytics = getAnalytics(app);
</script>
<script src="scripts/animations.js"></script>
<script src="scripts/navbar.js"></script>
<script src="scripts/journey.js"></script>
<script src="scripts/modal.js"></script>
</body>
</html>