-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1336 lines (1245 loc) · 54.6 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="robots" content="index, follow" />
<meta name="author" content="MFR" />
<meta name="publisher" content="MFR" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<title>Portfolio | Muhammad Fadhlillah Rasyid</title>
<meta content="Portfolio | Muhammad Fadhlillah Rasyid" name="title" />
<meta
content="The Portfolio website was created to find out information about myself, supported by sufficient skills and experience, I created a website for recruiters"
name="description"
/>
<meta
content="
jasa digital marketing medan,
jual jasa digital marketing medan,
jasa konsultan digital marketing medan,
harga jasa digital marketing medan,
jasa pembuatan website murah medan,
jasa website murah medan,
jasa buat website murah medan,
jasa bikin website murah medan"
name="keywords"
/>
<meta property="og:type" content="article" />
<meta property="og:title" content="MFR" />
<meta
property="og:site_name"
content="Portfolio | Muhammad Fadhlillah Rasyid"
/>
<meta property="og:url" content="https://mfrservice.site" />
<meta
property="og:description"
content="The Portfolio website was created to find out information about myself, supported by sufficient skills and experience, I created a website for recruiters"
/>
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon" />
<link href="assets/img/favicon.png" rel="apple-touch-icon" />
<!-- SEO -->
<link rel="canonical" href="https://mfrservice.site/" />
<link rel="publisher" href="https://mfrservice.site/" />
<link rel="copyright" href="https://mfrservice.site/" />
<!-- Fonts -->
<link href="https://fonts.googleapis.com" rel="preconnect" />
<link href="https://fonts.gstatic.com" rel="preconnect" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet"
/>
<!-- Geo -->
<meta name="geo.region" content="ID" />
<meta name="geo.country" content="id" />
<meta name="geo.placename" content="Indonesia" />
<!-- Vendor CSS Files -->
<link
href="assets/vendor/bootstrap/css/bootstrap.min.css"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://unpkg.com/bs-brain@2.0.4/tutorials/timelines/timeline-3/assets/css/timeline-3.css"
/>
<link
href="assets/vendor/bootstrap-icons/bootstrap-icons.css"
rel="stylesheet"
/>
<link href="assets/vendor/aos/aos.css" rel="stylesheet" />
<link
href="assets/vendor/glightbox/css/glightbox.min.css"
rel="stylesheet"
/>
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet" />
<!-- Main CSS File -->
<link href="assets/css/main.css" rel="stylesheet" />
<meta
name="google-site-verification"
content="WrcxzJ45xpl9MtZ7lHHG7ePxs44GRWEmnIFfvaZVypo"
/>
<!-- TikTok Pixel Code Start -->
<script>
!(function (w, d, t) {
w.TiktokAnalyticsObject = t;
var ttq = (w[t] = w[t] || []);
(ttq.methods = [
"page",
"track",
"identify",
"instances",
"debug",
"on",
"off",
"once",
"ready",
"alias",
"group",
"enableCookie",
"disableCookie",
"holdConsent",
"revokeConsent",
"grantConsent"
]),
(ttq.setAndDefer = function (t, e) {
t[e] = function () {
t.push([e].concat(Array.prototype.slice.call(arguments, 0)));
};
});
for (var i = 0; i < ttq.methods.length; i++)
ttq.setAndDefer(ttq, ttq.methods[i]);
(ttq.instance = function (t) {
for (var e = ttq._i[t] || [], n = 0; n < ttq.methods.length; n++)
ttq.setAndDefer(e, ttq.methods[n]);
return e;
}),
(ttq.load = function (e, n) {
var r = "https://analytics.tiktok.com/i18n/pixel/events.js",
o = n && n.partner;
(ttq._i = ttq._i || {}),
(ttq._i[e] = []),
(ttq._i[e]._u = r),
(ttq._t = ttq._t || {}),
(ttq._t[e] = +new Date()),
(ttq._o = ttq._o || {}),
(ttq._o[e] = n || {});
n = document.createElement("script");
(n.type = "text/javascript"),
(n.async = !0),
(n.src = r + "?sdkid=" + e + "&lib=" + t);
e = document.getElementsByTagName("script")[0];
e.parentNode.insertBefore(n, e);
});
ttq.load("CSMNI5BC77UFQG0MD5CG");
ttq.page();
})(window, document, "ttq");
</script>
<!-- TikTok Pixel Code End -->
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-Z39WE98QN3"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-Z39WE98QN3");
</script>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-Z39WE98QN3"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-Z39WE98QN3");
</script>
<!-- Google Tag Manager -->
<script>
(function (w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({ "gtm.start": new Date().getTime(), event: "gtm.js" });
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s),
dl = l != "dataLayer" ? "&l=" + l : "";
j.async = true;
j.src = "https://www.googletagmanager.com/gtm.js?id=" + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, "script", "dataLayer", "GTM-P84RK7BR");
</script>
<!-- End Google Tag Manager -->
<!-- Meta Pixel Code -->
<script>
!(function (f, b, e, v, n, t, s) {
if (f.fbq) return;
n = f.fbq = function () {
n.callMethod
? n.callMethod.apply(n, arguments)
: n.queue.push(arguments);
};
if (!f._fbq) f._fbq = n;
n.push = n;
n.loaded = !0;
n.version = "2.0";
n.queue = [];
t = b.createElement(e);
t.async = !0;
t.src = v;
s = b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t, s);
})(
window,
document,
"script",
"https://connect.facebook.net/en_US/fbevents.js"
);
fbq("init", "1002172705046032");
fbq("track", "PageView");
fbq("track", "ViewContent");
</script>
<noscript>
<img
height="1"
width="1"
style="display: none"
src="https://www.facebook.com/tr?id=1002172705046032&ev=PageView&noscript=1"
/>
</noscript>
<!-- End Meta Pixel Code -->
</head>
<body class="index-page dark-background">
<!-- Google Tag Manager (noscript) -->
<noscript
><iframe
src="https://www.googletagmanager.com/ns.html?id=GTM-P84RK7BR"
height="0"
width="0"
style="display: none; visibility: hidden"
></iframe
></noscript>
<!-- End Google Tag Manager (noscript) -->
<header
id="header"
class="header d-flex flex-column justify-content-center"
>
<i class="header-toggle d-xl-none bi bi-list d-none"></i>
</header>
<!-- Hero Section -->
<section id="hero" class="hero section dark-background">
<img
src="assets/img/hero-bg.webp"
title="mfr-portfolio"
alt="mfr-portfolio-img"
/>
<div class="container" data-aos="fade-up" data-aos-once="false">
<div class="row justify-content-center">
<div class="col-lg-9 text-center">
<h1>
Muhammad <br />
Fadhlillah Rasyid
</h1>
<p>
I'm
<span
class="typed"
data-typed-items="Performance Marketer, Digital Marketer, Web Programmer"
></span
><span
class="typed-cursor typed-cursor--blink"
aria-hidden="true"
></span>
</p>
<div class="social-links">
<a
title="mfr-portfolio-link"
href="https://web.facebook.com/muhammadfadhlillahrasyid"
target="_blank"
><i class="bi bi-facebook"></i
></a>
<a
title="mfr-portfolio-link"
href="https://www.instagram.com/mfadhlillahrasyid/"
target="_blank"
><i class="bi bi-instagram"></i
></a>
<a
title="mfr-portfolio-link"
href="https://id.linkedin.com/in/muhammadfadhlillahrasyid"
target="_blank"
><i class="bi bi-linkedin"></i
></a>
<a
title="mfr-portfolio-link"
href="https://x.com/mfadhlillahrsyd"
target="_blank"
><i class="bi bi-twitter-x"></i
></a>
<a
title="mfr-portfolio-link"
href="https://github.com/mfadhlillahrasyid"
target="_blank"
><i class="bi bi-github"></i
></a>
<a
title="mfr-portfolio-link"
href="https://www.tiktok.com/@mfadhlillahrasyid"
target="_blank"
><i class="bi bi-tiktok"></i
></a>
<a
title="mfr-portfolio-link"
href="https://www.threads.net/@mfadhlillahrasyid"
target="_blank"
><i class="bi bi-threads"></i
></a>
</div>
</div>
</div>
</div>
</section>
<!-- /Hero Section -->
<main class="main">
<!-- About Section -->
<section id="about" class="about section">
<!-- Section Title -->
<div
class="container section-title"
data-aos="fade-up"
data-aos-once="false"
data-aos-delay="100"
>
<h2>Hi Everyone ✌🏻</h2>
</div>
<div class="container">
<div class="row">
<div
class="content col-lg-12"
data-aos="fade-up"
data-aos-once="false"
data-aos-delay="200"
>
<p>
I'm Fadhli, now I have a career as a Performance Marketing
Expert handling all types of digital social media advertising
such as Google, Youtube, Meta, Tiktok. Building a branding
strategy and specializing in SEO and SEM. Having had a career of
more than 5 years and I have spent advertising budgets from
clients to increase and improve their brands & sales 🔥🔥.
</p>
<p>
Apart from being a Marketing Expert, I also focus on web
programming because we know that business needs also require a
dynamic website. So when you have a business/enterprise that
needs Ads and Branding, you can
<a
title="mfr-portfolio-link"
href="#contact"
style="text-decoration: underline"
>contact</a
>
me ✌🏻
</p>
</div>
</div>
</div>
</section>
<!-- /About Section -->
<!-- Experience Section -->
<section id="experience" class="experience section">
<!-- Section Title -->
<div
class="container section-title"
data-aos="fade-up"
data-aos-once="false"
>
<h2>My Career Journey 🔥</h2>
</div>
<!-- End Section Title -->
<div class="container">
<div
class="col-lg-12 about-images"
data-aos="fade-up"
data-aos-once="false"
data-aos-delay="100"
>
<div class="row gy-4">
<div
class="col-lg-6"
data-aos="fade-up"
data-aos-once="false"
data-aos-delay="200"
>
<div class="service-item img item-cyan position-relative">
<div>
<h6>2023 - Presents</h6>
<h3>Qubicball Digital Agency</h3>
<p>Digital Marketing Manager</p>
<h6>
Qubicball Digital agency is a Marketing & Branding agency
that has been established since 2015, Qubicball provides
Social Media Branding services, Software development, and
Blockhain Token Distribution to NFT Web creation
</h6>
<br />
<div class="d-none d-lg-block">
<h5>Jobdesk</h5>
<ul>
<li>
<h6>
Briefing with clients and teams, regarding problems
faced by clients regarding the products they own
</h6>
</li>
<li>
<h6>
Providing simple strategies for clients, how to get
maximum results with a minimum budget
</h6>
</li>
<li>
<h6>
Executing Digital Branding Campaigns and providing
accurate data that can be used as a reference for
improvement and can be scaled up
</h6>
</li>
<li>
<h6>
Coordinate with the team regarding content,
campaigns and strategies that are right for the
client and manage the budget to get maximum results
</h6>
</li>
</ul>
</div>
<a
title="mfr-portfolio-link"
href="https://qubicball.com"
class="read-more stretched-link"
target="_blank"
>Learn More <i class="bi bi-arrow-right"></i
></a>
</div>
</div>
</div>
<!-- -->
<div class="col-lg-6">
<div class="row gy-4">
<div
class="col-lg-12"
data-aos="fade-up"
data-aos-once="false"
data-aos-delay="300"
>
<div class="service-item item-orange position-relative">
<div>
<h6>2018 - 2023</h6>
<h3>PT Ouzen Anugerah Indonesia</h3>
<p>Digital Advertiser Lead</p>
<h6>
PT Ouzen Grace Indonesia is an E-commerce company that
distributes beauty and health products. skincare for
men and women. Ouzenmart is the main label of the
company and has penetrated the digital market until
now
</h6>
<a
title="mfr-portfolio-link"
href="https://www.instagram.com/ouzenmart/?hl=en"
target="_blank"
class="read-more stretched-link"
>Learn More <i class="bi bi-arrow-right"></i
></a>
</div>
</div>
</div>
<!-- -->
<div
class="col-lg-12"
data-aos="fade-up"
data-aos-once="false"
data-aos-delay="300"
>
<div class="service-item item-teal position-relative">
<div>
<h6>2016 - 2018</h6>
<h3>PT Marisi Abadi Sejahtera</h3>
<p>Warehouse Staff</p>
<h6>
PT Marisi Abadi Sejahtera is a local herbal medicine
distribution company with a B2C distribution method.
They have applied this method for decades, this has
been proven to date so that consumer growth is
increasingly met
</h6>
<a
title="mfr-portfolio-link"
href="https://marisiabadisejahtera.com"
target="_blank"
class="read-more stretched-link"
>Learn More <i class="bi bi-arrow-right"></i
></a>
</div>
</div>
</div>
<!-- -->
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Experience Section -->
<!-- Services Section -->
<section id="services" class="services section">
<!-- Section Title -->
<div
class="container section-title"
data-aos="fade-up"
data-aos-once="false"
>
<h2>Skills & Tools 📌</h2>
</div>
<!-- End Section Title -->
<div class="dektop d-none d-lg-block">
<div class="container">
<div class="row gy-4" id="skills">
<!-- Desktop -->
<script>
// Data untuk items
const serviceItems = [
{
imgSrc: "./assets/img/skills/meta.webp",
title: "Meta Ads",
link: "javascript:void(0);"
},
{
imgSrc: "./assets/img/skills/tiktok.webp",
title: "TikTok Ads",
link: "javascript:void(0);"
},
{
imgSrc: "./assets/img/skills/google.webp",
title: "Google Ads",
link: "javascript:void(0);"
},
{
imgSrc: "./assets/img/skills/analytic.webp",
title: "Analytic",
link: "javascript:void(0);"
},
{
imgSrc: "./assets/img/skills/tagmanager.webp",
title: "Tag Manager",
link: "javascript:void(0);"
},
{
imgSrc: "./assets/img/skills/searchconsole.svg",
title: "Search Console",
link: "javascript:void(0);"
},
{
imgSrc: "./assets/img/skills/seo.webp",
title: "SEO",
link: "javascript:void(0);"
},
{
imgSrc: "./assets/img/skills/ahref.webp",
title: "Ahref",
link: "javascript:void(0);"
},
{
imgSrc: "./assets/img/skills/similiarweb.webp",
title: "Similarweb",
link: "javascript:void(0);"
},
{
imgSrc: "./assets/img/skills/semrush.webp",
title: "Semrush",
link: "javascript:void(0);"
},
{
imgSrc: "./assets/img/skills/wordpress.webp",
title: "Wordpress",
link: "javascript:void(0);"
},
{
imgSrc: "./assets/img/skills/elementor.webp",
title: "Elementor",
link: "javascript:void(0);"
},
{
imgSrc: "./assets/img/skills/html.webp",
title: "HTML",
link: "javascript:void(0);"
},
{
imgSrc: "./assets/img/skills/css.webp",
title: "CSS",
link: "javascript:void(0);"
},
{
imgSrc: "./assets/img/skills/javascript.webp",
title: "Javascript",
link: "javascript:void(0);"
},
{
imgSrc: "./assets/img/skills/bootstraap.webp",
title: "Bootstrap UI",
link: "javascript:void(0);"
},
{
imgSrc: "./assets/img/skills/next.png",
title: "Next JS",
link: "javascript:void(0);"
},
{
imgSrc: "./assets/img/skills/php.webp",
title: "PHP",
link: "javascript:void(0);"
},
{
imgSrc: "./assets/img/skills/laravel.webp",
title: "Laravel",
link: "javascript:void(0);"
},
{
imgSrc: "./assets/img/skills/vscode.webp",
title: "VS Code",
link: "javascript:void(0);"
},
{
imgSrc: "./assets/img/skills/figma.webp",
title: "Figma",
link: "javascript:void(0);"
},
{
imgSrc: "./assets/img/skills/freepik.webp",
title: "Freepik",
link: "javascript:void(0);"
},
{
imgSrc: "./assets/img/skills/photoshop.webp",
title: "Photoshop",
link: "javascript:void(0);"
},
{
imgSrc: "./assets/img/skills/premierpro.webp",
title: "Premier Pro",
link: "javascript:void(0);"
}
];
const serviceContainer = document.getElementById("skills");
serviceItems.forEach((item) => {
const colDiv = document.createElement("div");
colDiv.classList.add("col-lg-2", "col-md-6", "col-4");
colDiv.setAttribute("data-aos", "fade-up");
colDiv.setAttribute("data-aos-once", "false");
colDiv.setAttribute("data-aos-delay", "100");
const serviceItemDiv = document.createElement("div");
serviceItemDiv.classList.add("service-item");
const iconDiv = document.createElement("div");
iconDiv.classList.add("icon");
const img = document.createElement("img");
img.src = item.imgSrc;
img.classList.add("img-fluid");
img.title = "mfr-portfolio";
img.alt = "mfr-portfolio-img";
iconDiv.appendChild(img);
const a = document.createElement("a");
a.href = item.link;
a.title = "mfr-portfolio-link";
a.classList.add("stretched-link");
const h3 = document.createElement("h3");
h3.textContent = item.title;
a.appendChild(h3);
serviceItemDiv.appendChild(iconDiv);
serviceItemDiv.appendChild(a);
colDiv.appendChild(serviceItemDiv);
serviceContainer.appendChild(colDiv);
});
</script>
<!-- Desktop -->
</div>
</div>
</div>
<!-- Desktop Version -->
<div class="responsive d-block d-lg-none">
<div
class="container-fluid"
data-aos="fade-up"
data-aos-once="false"
data-aos-delay="100"
>
<div class="swiper init-swiper">
<div class="services-slider">
<div class="swiper-wrapper" id="services-slider">
<script>
const swiperContainer =
document.getElementById("services-slider");
serviceItems.forEach((item) => {
const swiperSlideDiv = document.createElement("div");
swiperSlideDiv.classList.add("swiper-slide");
const serviceItemDiv = document.createElement("div");
serviceItemDiv.classList.add("service-item");
const iconDiv = document.createElement("div");
iconDiv.classList.add("icon");
const img = document.createElement("img");
img.src = item.imgSrc;
img.classList.add("img-fluid");
img.title = "mfr-portfolio";
img.alt = "mfr-portfolio-img";
iconDiv.appendChild(img);
const a = document.createElement("a");
a.href = item.link;
a.title = "mfr-portfolio-link";
const h3 = document.createElement("h3");
h3.textContent = item.title;
a.appendChild(h3);
serviceItemDiv.appendChild(iconDiv);
serviceItemDiv.appendChild(a);
swiperSlideDiv.appendChild(serviceItemDiv);
swiperContainer.appendChild(swiperSlideDiv);
});
</script>
</div>
</div>
</div>
</div>
</div>
<!-- Mobile Version -->
</section>
<section id="portfolio" class="portfolio section">
<div
class="container section-title"
data-aos="fade-up"
data-aos-once="false"
>
<h2>Portfolio 💻</h2>
</div>
<div class="responsive-mobile d-none d-lg-block">
<div class="container">
<div
class="isotope-layout"
data-default-filter="*"
data-layout="masonry"
data-sort="original-order"
>
<!-- End Portfolio Filters -->
<div
class="row gy-4 isotope-container"
data-aos="fade-up"
data-aos-once="false"
id="portfolio-desktop"
>
<script>
// Data untuk portfolio items
const portfolioItems = [
{
title: "Colusmen",
desc: "Colusmen health brand from Ouzenmart which is popular among men and young people, the meta ads platform is the best thing for creating online advertising",
images: [
"./assets/img/portfolio/ouzen-colus/1.jpg",
"./assets/img/portfolio/ouzen-colus/2.jpg",
"./assets/img/portfolio/ouzen-colus/3.jpg",
"./assets/img/portfolio/ouzen-colus/4.jpg"
],
badges: ["Meta Ads", "Tiktok Ads", "Web Landing Page"],
link: "study-case-colusmen",
filter: ["filter-dm", "filter-wb"]
},
{
title: "Coliskin",
desc: "Coliskin is a beauty brand from Ouzenmart which is popular among women and young people, digital platforms are the best thing for creating online advertising",
images: [
"./assets/img/portfolio/ouzen-colis/1.jpg",
"./assets/img/portfolio/ouzen-colis/2.jpg"
],
badges: ["Tiktok Ads", "Web Landing Page"],
link: "study-case-coliskin",
filter: ["filter-dm", "filter-wb"]
},
{
title: "Zelou Parfume",
desc: "Zelou Parfume is a local perfume product, with elements that emphasize brand positioning. So to get the landing page concept we had to adapt the theme of the Zelou Parfume brand",
images: ["./assets/img/portfolio/zelou/1.jpg"],
badges: ["Web Landing Page"],
link: "study-case-zelou-parfume",
filter: ["filter-wb"]
},
{
title: "CV Putra Aribur",
desc: "CV Putra Aribur is a company that operates in the field of car rental services, besides that, Aribur is a vendor for the Telkomsel and Indosat companies in maintaining sites in the city and outside the city of Medan",
images: ["./assets/img/portfolio/aribur/1.jpg"],
badges: ["Web Company Profile", "Branding"],
link: "study-case-cv-putra-aribur",
filter: ["filter-wb"]
},
{
title: "Work Life Balance",
desc: "WLB Apparel is a local unisex fashion brand that was founded in 2021. This is my first Ecommerce website created using HTML CSS",
images: ["./assets/img/portfolio/wlb/1.jpg"],
badges: ["Web E-commerce", "Branding"],
link: "study-case-work-life-balance-apparel",
filter: ["filter-wb"]
},
{
title: "Marisi Abadi Sejahtera",
desc: "Marisi Abadi Sejahtera is a herbal medicine distributor company, its unique visual style gives this brand an old school but modern website style. for us to adapt the concept using the wordpress platform",
images: ["./assets/img/portfolio/masgroup/1.jpg"],
badges: ["Web Company Profile", "Wordpress"],
link: "study-case-pt-marisi-abadi-sejahtera",
filter: ["filter-wb"]
},
{
title: "TwoDesign25",
desc: "twodesign25 is a creative agency that provides architectural services for consumer needs, with a simple concept but can make consumers interested. We apply websites using standard-based standards, namely HTML, CSS and JavaScript.",
images: ["./assets/img/portfolio/twodesign25/1.jpg"],
badges: ["Web Landing Page"],
link: "study-case-twodesign25",
filter: ["filter-wb"]
},
{
title: "Leslim Store",
desc: "Leslim is a local brand that provides seamless sports clothing specifically for women, helps sales using the meta ads platform, and slightly modifies the landing page to get a solid website score",
images: [
"./assets/img/portfolio/leslim/1.jpg",
"./assets/img/portfolio/leslim/2.jpg",
"./assets/img/portfolio/leslim/3.jpg"
],
badges: ["Meta Ads", "Branding", "Web Landing Page"],
link: "study-case-leslim-store",
filter: ["filter-dm", "filter-wb"]
},
{
title: "Art Developer",
desc: "Art Developer is a creative agency that provides digital marketing services, with a dark and green theme, combining modern concepts for website design and minimalism",
images: ["./assets/img/portfolio/artdev/1.jpg"],
badges: ["Web Company Profile"],
link: "study-case-art-developer-digital-agency",
filter: ["filter-wb"]
},
{
title: "Creative Youth Vision",
desc: "Creative Youth Vision is a company that provides women's sportswear, especially seamless bras and others. Apart from that, the CYV group has other superior products",
images: ["./assets/img/portfolio/cyv/1.jpg"],
badges: ["Tiktok Ads", "Branding"],
link: "study-case-confiwear",
filter: ["filter-dm"]
},
{
title: "Miloveskin",
desc: "Miloveskin is part of the MOC (Master Online Community) brand, Miloveskin is an organic mask product that is very popular with young people",
images: [
"./assets/img/portfolio/moc/1.jpg",
"./assets/img/portfolio/moc/2.jpg"
],
badges: ["Meta Ads", "Web Landing Page"],
link: "study-case-milovskin",
filter: ["filter-dm", "filter-wb"]
},
{
title: "Foeyu",
desc: "Feoyu is an internal brand from Qubicball. The difficulty in building a brand from Foeyu is the lack of brand awareness and brand identity",
images: [
"./assets/img/portfolio/qb/foeyu-1.jpg",
"./assets/img/portfolio/qb/foeyu-2.jpg"
],
badges: ["Meta Ads", "SEM"],
link: "study-case-foeyu",
filter: ["filter-dm", "filter-wb"]
},
{
title: "J-City",
desc: "J City is a modern residential area in Medan Johor which offers comfortable and strategic residences with elegant designs and complete facilities",
images: ["./assets/img/portfolio/jcity/jcity.jpg"],
badges: ["Meta Ads", "Branding"],
link: "study-case-j-city",
filter: ["filter-dm"]
},
{
title: "Prima Kencana Land",
desc: "Prima Kencana Land is a modern residential area in Medan Glugur which offers comfortable and strategic residences with elegant designs and complete facilities",
images: ["./assets/img/portfolio/pkl/1.jpg"],
badges: ["Meta Ads", "Branding"],
link: "study-case-prima-kencana-land",
filter: ["filter-dm"]
},
{
title: "Magic Forest",
desc: "Mikie Funland began to appear as one of the Mikie Holiday Resort facilities since October 10 2000, serving visitors who stay at the Mikie Holiday Resort and guests who do not stay overnight. Located on the edge of the Medan Berastagi highway, Mikie Funland is one of the domestic tourist attractions for the city of Berastagi which has cool air at an altitude of 1,400 meters above sea level. Mikie Funland is also the first family tourist attraction with an outdoor concept in North Sumatra.",
images: ["./assets/img/portfolio/mikie/magicforest.jpg"],
badges: ["Meta Ads", "Branding"],
link: "study-case-mikie-star-theater",
filter: ["filter-dm"]
},
{
title: "Alcohauz",
desc: "We provide a variety of 100% ORIGINAL drinks such as Whiskey Rum Gin Tequila Vodka Liqueur Cognac Brandy Liqueur Red Wine Port Wine White Wine Champagne Moscato Lambrusco Soju Sake Beer Beer",
images: ["./assets/img/portfolio/alcohauz/1.jpg"],
badges: ["Meta Ads", "Branding"],
link: "study-case-alcohauz",
filter: ["filter-dm"]
},
{
title: "Qubicball",
desc: "Qubicball is a creative agency that provides digital marketing services, founded in 2015, Qubicball already has dozens of partner",
images: [
"./assets/img/portfolio/qb/qb-1.jpg",
"./assets/img/portfolio/qb/qb-2.jpg",
"./assets/img/portfolio/qb/qb-3.jpg",
"./assets/img/portfolio/qb/qb-4.jpg"
],
badges: ["Meta Ads", "SEM", "SEO", "Web Company Profile"],
link: "study-case-qubicball-digital-agency",
filter: ["filter-dm", "filter-wb"]
},
{
title: "Bima Golden Powerindo",
desc: "Bima Group professionalism and comprehensive expertise, we are committed in delivering premium value and services to our customers in engine management and maintenance",
images: ["./assets/img/portfolio/bimagp/1.jpg"],
badges: ["Web Company Profile", "Branding"],
link: "study-case-pt-bima-golden-powerindo",
filter: ["filter-wb"]
},
{
title: "Kiyonest",
desc: "Kiyonest is a swallow's nest health drink brand that is currently hype. Kiyonest is already well-known but still needs a responsive and dynamic website",
images: [
"./assets/img/portfolio/kiyonest/1.jpg",
"./assets/img/portfolio/kiyonest/2.jpg"
],
badges: ["Web Landing Page", "Sales System"],
link: "study-case-kiyonest",
filter: ["filter-wb"]
},
{
title: "Reboot Project",
desc: "Mikie Funland began to appear as one of the Mikie Holiday Resort facilities since October 10 2000, serving visitors who stay at the Mikie Holiday Resort and guests who do not stay overnight. Located on the edge of the Medan Berastagi highway, Mikie Funland is one of the domestic tourist attractions for the city of Berastagi which has cool air at an altitude of 1,400 meters above sea level. Mikie Funland is also the first family tourist attraction with an outdoor concept in North Sumatra.",
images: [
"./assets/img/portfolio/mikie/reboot.jpg",
"./assets/img/portfolio/mikie/reboot2.jpg"
],
badges: ["Meta Ads", "Tiktok Ads", "Branding"],
link: "study-case-mikie-reboot-project",
filter: ["filter-dm"]
}
// Tambahkan data portfolio lainnya di sini
];
// Ambil container untuk portfolio items
const portfolioContainer =
document.getElementById("portfolio-desktop");
// Looping data dengan forEach
portfolioItems.forEach((item, index) => {
// Membuat elemen col
const colDiv = document.createElement("div");
colDiv.classList.add(
"col-lg-4",
"col-md-6",
"portfolio-item",
"isotope-item"
);
if (Array.isArray(item.filter)) {
item.filter.forEach((filterClass) => {
colDiv.classList.add(filterClass);
});
} else {