-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
305 lines (280 loc) · 30.2 KB
/
index.html
File metadata and controls
305 lines (280 loc) · 30.2 KB
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
<!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">
<title>Portfolio Tailwind CSS</title>
<link href="dist/output.css" rel="stylesheet">
<script>
if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
document.documentElement.classList.add('dark');
} else {
document.documentElement.classList.remove('dark');
}
</script>
</head>
<body>
<!-- Navbar Section Start -->
<header class="bg-transparent absolute top-0 left-0 w-full flex items-center z-10">
<div class="container">
<div class="flex items-centers justify-between relative">
<div class="px-4">
<a href="#home" class="font-bold text-lg text-primary block py-6">Renaldy Kevin Sidharta</a>
</div>
<div class="flex items-center px-4">
<button id="hamburger" name="hamburger" type="button" class="block absolute right-4 lg:hidden">
<span class="hamburger-line transition duration-300 origin-top-left ease-in-out"></span>
<span class="hamburger-line transition duration-300 ease-in-out"></span>
<span class="hamburger-line transition duration-300 origin-bottom-left ease-in-out"></span>
</button>
<nav id="nav-menu" class="hidden absolute py-5 bg-white shadow-lg rounded-lg max-w-[350px] w-full right-4 top-full dark:bg-dark dark:shadow-slate-500 lg:bg-none lg:block lg:static lg:bg-transparent lg:max-w-full lg:shadow-none lg:rounded-none lg:dark:bg-transparent">
<ul id="ul-nav" class="block lg:flex">
<li class="group">
<a href="#home" class="text-base text-dark py-2 mx-8 group-hover:text-primary flex dark:text-white">Beranda</a>
</li>
<li class="group">
<a href="#about" class="text-base text-dark py-2 mx-8 group-hover:text-primary flex dark:text-white">Tentang Saya</a>
</li>
<li class="group">
<a href="#portfolio" class="text-base text-dark py-2 mx-8 group-hover:text-primary flex dark:text-white">Porfolio</a>
</li>
<li class="group">
<a href="#clients" class="text-base text-dark py-2 mx-8 group-hover:text-primary flex dark:text-white">Client</a>
</li>
<li class="group">
<a href="#contact" class="text-base text-dark py-2 mx-8 group-hover:text-primary flex dark:text-white">Contact</a>
</li>
<li class="mt-3 flex items-center pl-8 lg:mt-0">
<div class="flex">
<span class="mr-2 text-sm text-slate-500">light</span>
<input type="checkbox" class="hidden" id="dark-toggle" />
<label for="dark-toggle">
<div class="flex h-5 w-9 cursor-pointer items-center rounded-full bg-slate-500 p-1">
<div class="toggle-circle h-4 w-4 rounded-full bg-white transition duration-300 ease-in-out"></div>
</div>
</label>
<span class="ml-2 text-sm text-slate-500">dark</span>
</div>
</li>
</ul>
</nav>
</div>
</div>
</div>
</header>
<!-- Navbar Section End -->
<!-- Hero Section Start -->
<section id="home" class="pt-36 dark:bg-dark">
<div class="container">
<div class="flex flex-wrap">
<div class="w-full self-center px-4 lg:w-1/2">
<h1 class="text-base font-semibold text-primary md:text-xl">Halo Semua 🖐, saya <span class="block font-bold text-dark text-4xl lg:text-5xl dark:text-white">Renaldy Kevin Sidharta</span></h1>
<h2 class="font-medium text-slate-500 text-lg mb-5 lg:text-2xl">IoT Engineering | <span class="text-dark"> CyberSecurity</span></h2>
<p class="font-medium text-slate-400 mb-10 leading-relaxed">Berkecimpung didunia IoT hampir 1 tahun dan memiliki basic CyberSecurity di <span class="text-red-500 font-bold">RedTeam</span> dan <span class="text-cyan-500 font-bold">BlueTeam</span>.</p>
<a href="#contact" class="text-base font-semibold text-white bg-primary py-3 px-8 rounded-full hover:shadow-lg hover:opacity-90 transition duration-300 ease-in-out">Hubungi Saya</a>
</div>
<div class="w-full self-end px-4 lg:w-1/2">
<div class="relative mt-10 lg:mt-9 lg:right-0">
<img src="dist/img/kevin.png" alt="Renaldy Kevin Sidharta" class="max-w-full mx-auto">
</div>
</div>
</div>
</div>
</section>
<!-- Hero Section End -->
<!-- About Sectin Start -->
<section id="about" class="pt-36 pb-32 dark:bg-dark">
<div class="container">
<div class="flex flex-wrap">
<div class="w-full px-4 mb-10 lg:w-1/2">
<h4 class="font-bold uppercase text-primary text-lg mb-3">Tentang Saya</h4>
<h2 class="font-bold text-dark text-3xl mb-5 max-w-xl lg:text-4xl dark:text-white">Hello! </h2>
<p class="font-medium text-base text-slate-500 lg:text-lg">Saya seorang IoT Programmer dan Junior CyberSecurity di RedTeam dan BlueTeam. Saya merupakan lulusan Universitas Surabaya angkatan 2018 di jurusan Teknik Elektro - Intelligent Robotics.</p>
</div>
<div class="w-full px-4 lg:w-1/2">
<h3 class="font-semibold text-dark text-2xl mb-4 lg:text-3xl lg:pt-10 dark:text-white">Mari berteman</h3>
<p class="font-medium text-base text-slate-500 lg:text-lg">Lorem ipsum dolor sit, amet consectetur adipisicing elit. Consequuntur minus perspiciatis architecto. Neque dolor inventore maiores deleniti itaque!</p>
<div class="flex items-center">
<!-- Instagram -->
<a href="#" target="_blank" class="w-9 h-9 mr-3 rounded-full flex justify-center items-center border border-slate-300 mt-5 hover:border-primary hover:text-white hover:bg-primary text-slate-500">
<svg role="img" width="20" class="fill-current" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Instagram</title><path d="M12 0C8.74 0 8.333.015 7.053.072 5.775.132 4.905.333 4.14.63c-.789.306-1.459.717-2.126 1.384S.935 3.35.63 4.14C.333 4.905.131 5.775.072 7.053.012 8.333 0 8.74 0 12s.015 3.667.072 4.947c.06 1.277.261 2.148.558 2.913.306.788.717 1.459 1.384 2.126.667.666 1.336 1.079 2.126 1.384.766.296 1.636.499 2.913.558C8.333 23.988 8.74 24 12 24s3.667-.015 4.947-.072c1.277-.06 2.148-.262 2.913-.558.788-.306 1.459-.718 2.126-1.384.666-.667 1.079-1.335 1.384-2.126.296-.765.499-1.636.558-2.913.06-1.28.072-1.687.072-4.947s-.015-3.667-.072-4.947c-.06-1.277-.262-2.149-.558-2.913-.306-.789-.718-1.459-1.384-2.126C21.319 1.347 20.651.935 19.86.63c-.765-.297-1.636-.499-2.913-.558C15.667.012 15.26 0 12 0zm0 2.16c3.203 0 3.585.016 4.85.071 1.17.055 1.805.249 2.227.415.562.217.96.477 1.382.896.419.42.679.819.896 1.381.164.422.36 1.057.413 2.227.057 1.266.07 1.646.07 4.85s-.015 3.585-.074 4.85c-.061 1.17-.256 1.805-.421 2.227-.224.562-.479.96-.899 1.382-.419.419-.824.679-1.38.896-.42.164-1.065.36-2.235.413-1.274.057-1.649.07-4.859.07-3.211 0-3.586-.015-4.859-.074-1.171-.061-1.816-.256-2.236-.421-.569-.224-.96-.479-1.379-.899-.421-.419-.69-.824-.9-1.38-.165-.42-.359-1.065-.42-2.235-.045-1.26-.061-1.649-.061-4.844 0-3.196.016-3.586.061-4.861.061-1.17.255-1.814.42-2.234.21-.57.479-.96.9-1.381.419-.419.81-.689 1.379-.898.42-.166 1.051-.361 2.221-.421 1.275-.045 1.65-.06 4.859-.06l.045.03zm0 3.678c-3.405 0-6.162 2.76-6.162 6.162 0 3.405 2.76 6.162 6.162 6.162 3.405 0 6.162-2.76 6.162-6.162 0-3.405-2.76-6.162-6.162-6.162zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm7.846-10.405c0 .795-.646 1.44-1.44 1.44-.795 0-1.44-.646-1.44-1.44 0-.794.646-1.439 1.44-1.439.793-.001 1.44.645 1.44 1.439z"/></svg>
</a>
<!-- WhatsApp -->
<a href="#" target="_blank" class="w-9 h-9 mr-3 rounded-full flex justify-center items-center border border-slate-300 mt-5 hover:border-primary hover:text-white hover:bg-primary text-slate-500">
<svg role="img" width="20" class="fill-current" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>WhatsApp</title><path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z"/></svg>
</a>
<!-- Website Wikipedia -->
<a href="#" target="_blank" class="w-9 h-9 mr-3 rounded-full flex justify-center items-center border border-slate-300 mt-5 hover:border-primary hover:text-white hover:bg-primary text-slate-500">
<svg role="img" width="20" class="fill-current" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Wikipedia</title><path d="M12.09 13.119c-.936 1.932-2.217 4.548-2.853 5.728-.616 1.074-1.127.931-1.532.029-1.406-3.321-4.293-9.144-5.651-12.409-.251-.601-.441-.987-.619-1.139-.181-.15-.554-.24-1.122-.271C.103 5.033 0 4.982 0 4.898v-.455l.052-.045c.924-.005 5.401 0 5.401 0l.051.045v.434c0 .119-.075.176-.225.176l-.564.031c-.485.029-.727.164-.727.436 0 .135.053.33.166.601 1.082 2.646 4.818 10.521 4.818 10.521l.136.046 2.411-4.81-.482-1.067-1.658-3.264s-.318-.654-.428-.872c-.728-1.443-.712-1.518-1.447-1.617-.207-.023-.313-.05-.313-.149v-.468l.06-.045h4.292l.113.037v.451c0 .105-.076.15-.227.15l-.308.047c-.792.061-.661.381-.136 1.422l1.582 3.252 1.758-3.504c.293-.64.233-.801.111-.947-.07-.084-.305-.22-.812-.24l-.201-.021c-.052 0-.098-.015-.145-.051-.045-.031-.067-.076-.067-.129v-.427l.061-.045c1.247-.008 4.043 0 4.043 0l.059.045v.436c0 .121-.059.178-.193.178-.646.03-.782.095-1.023.439-.12.186-.375.589-.646 1.039l-2.301 4.273-.065.135 2.792 5.712.17.048 4.396-10.438c.154-.422.129-.722-.064-.895-.197-.172-.346-.273-.857-.295l-.42-.016c-.061 0-.105-.014-.152-.045-.043-.029-.072-.075-.072-.119v-.436l.059-.045h4.961l.041.045v.437c0 .119-.074.18-.209.18-.648.03-1.127.18-1.443.421-.314.255-.557.616-.736 1.067 0 0-4.043 9.258-5.426 12.339-.525 1.007-1.053.917-1.503-.031-.571-1.171-1.773-3.786-2.646-5.71l.053-.036z"/></svg>
</a>
<a href="#" target="_blank" class="w-9 h-9 mr-3 rounded-full flex justify-center items-center border border-slate-300 mt-5 hover:border-primary hover:text-white hover:bg-primary text-slate-500">
<svg role="img" width="20" class="fill-current" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Gmail</title><path d="M24 5.457v13.909c0 .904-.732 1.636-1.636 1.636h-3.819V11.73L12 16.64l-6.545-4.91v9.273H1.636A1.636 1.636 0 0 1 0 19.366V5.457c0-2.023 2.309-3.178 3.927-1.964L5.455 4.64 12 9.548l6.545-4.91 1.528-1.145C21.69 2.28 24 3.434 24 5.457z"/></svg>
</a>
<a href="#" target="_blank" class="w-9 h-9 mr-3 rounded-full flex justify-center items-center border border-slate-300 mt-5 hover:border-primary hover:text-white hover:bg-primary text-slate-500">
<svg role="img" width="20" class="fill-current" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>LinkedIn</title><path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"/></svg>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- About Section End -->
<!-- Portfolio Section Start -->
<section id="portfolio" class="pt-36 pb-16 bg-slate-100 dark:bg-slate-800">
<div class="container">
<div class="w-full px-4">
<div class=" mx-auto text-center mb-6">
<h4 class="font-semibold text-lg text-primary mb-2">Portfolio</h4>
<h2 class="font-bold text-dark text-3xl mb-4 sm:text-4xl lg:text-5xl dark:text-white">Project Done</h2>
<p class="font-medium text-md text text-slate-500 md:text-lg">Lorem ipsum dolor sit amet consectetur adipisicing elit. Harum facere, sint perspiciatis nostrum culpa ea. Ducimus, cupiditate. Sapiente at voluptatibus libero voluptas quae, eius in ipsam repellendus aliquid velit eaque.</p>
</div>
</div>
<div class="w-full px-4 flex flex-wrap justify-center">
<div class="mb-12 p-4 md:w-1/2">
<div class="rounded-md shadow-md overflow-hidden">
<img src="dist/img/portfolio/dsystem_login.PNG" alt="Door Lock System" width="w-full">
</div>
<h3 class="font-semibold text-xl text-dark mt-5 mb-3 dark:text-white">Door Lock System - Internet of Things Project</h3>
<p class="font-medium text-base text-slate-500">Lorem ipsum, dolor sit amet consectetur adipisicing elit. Asperiores nam, ea laudantium tempora vel mollitia minus blanditiis eum temporibus illum esse rerum praesentium! Odit pariatur eos ullam iure voluptate! Eius!</p>
</div>
<div class="mb-12 p-4 md:w-1/2">
<div class="rounded-md shadow-md overflow-hidden">
<img src="dist/img/portfolio/Hibob_Gateway.PNG" alt="HiBob! Gateway" width="w-full">
</div>
<h3 class="font-semibold text-xl text-dark mt-5 mb-3 dark:text-white">HiBob! Gateway - Internet of Things Project</h3>
<p class="font-medium text-base text-slate-500">Lorem ipsum, dolor sit amet consectetur adipisicing elit. Asperiores nam, ea laudantium tempora vel mollitia minus blanditiis eum temporibus illum esse rerum praesentium! Odit pariatur eos ullam iure voluptate! Eius!</p>
</div>
<div class="mb-12 p-4 md:w-1/2">
<div class="rounded-md shadow-md overflow-hidden">
<img src="dist/img/portfolio/WikiPedia.PNG" alt="Wikipedia" width="w-full">
</div>
<h3 class="font-semibold text-xl text-dark mt-5 mb-3 dark:text-white">Kevin Wikipedia - RaspberryPi Server</h3>
<p class="font-medium text-base text-slate-500">Lorem ipsum, dolor sit amet consectetur adipisicing elit. Asperiores nam, ea laudantium tempora vel mollitia minus blanditiis eum temporibus illum esse rerum praesentium! Odit pariatur eos ullam iure voluptate! Eius!</p>
</div>
</div>
</div>
</section>
<!-- Portfolio Section End -->
<!-- Client Section Start -->
<section id="clients" class="pt-36 pb-32 bg-slate-800 dark:bg-slate-300">
<div class="container">
<div class="w-full px-4">
<div class="mx-auto text-center mb-6">
<h4 class="font-semibold text-lg text-primary mb-2">Clients</h4>
<h2 class="font-bold text-white text-3xl mb-4 sm:text-4xl lg:text-5xl dark:text-dark">Yang Pernah Bekerjasama</h2>
<p class="font-medium text-md text text-slate-500 md:text-lg">Lorem ipsum dolor sit amet consectetur adipisicing elit. Harum facere, sint perspiciatis nostrum culpa ea. Ducimus, cupiditate. Sapiente at voluptatibus libero voluptas quae, eius in ipsam repellendus aliquid velit eaque.</p>
</div>
</div>
<div class="w-full px-4">
<div class="flex flex-wrap items-center justify-center">
<a href="#" class="max-w-[120px] mx-4 py-4 grayscale opacity-60 transition duration-500 hover:grayscale-0 hover:opacity-100 lg:mx-6 xl:mx-8">
<img src="dist/img/Clients/Tokopedia.svg" alt="Tokopedia">
</a>
<a href="#" class="max-w-[120px] mx-4 py-4 grayscale opacity-60 transition duration-500 hover:grayscale-0 hover:opacity-100 lg:mx-6 xl:mx-8">
<img src="dist/img/Clients/Shopee.svg" alt="Shopee">
</a>
<a href="#" class="max-w-[120px] mx-4 py-4 grayscale opacity-60 transition duration-500 hover:grayscale-0 hover:opacity-100 lg:mx-6 xl:mx-8">
<img src="dist/img/Clients/Gojek.svg" alt="Gojek">
</a>
<a href="#" class="max-w-[120px] mx-4 py-4 grayscale opacity-60 transition duration-500 hover:grayscale-0 hover:opacity-100 lg:mx-6 xl:mx-8">
<img src="dist/img/Clients/traveloka.svg" alt="Traveloka">
</a>
</div>
</div>
</div>
</section>
<!-- Client Section End -->
<!-- Contact Section Start -->
<section id="contact" class="pt-36 pb-32 dark:bg-slate-800">
<div class="container">
<div class="w-full px-4">
<div class="mx-auto text-center mb-16">
<h4 class="font-semibold text-lg text-primary mb-2">Contact</h4>
<h2 class="font-bold text-dark text-3xl mb-4 sm:text-4xl lg:text-5xl dark:text-white">Hubungi saya!</h2>
<p class="font-medium text-md text-slate-500">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Reiciendis, recusandae. Exercitationem dolorum fugiat aut veniam aspernatur dolore, quidem atque distinctio voluptate expedita obcaecati. Architecto hic nulla culpa assumenda tenetur voluptatibus!</p>
</div>
</div>
<form>
<div class="w-full lg:w-2/3 lg:mx-auto">
<div class="w-full mb-8 px-4">
<label for="name" class="text-base font-bold text-primary">Nama</label>
<input type="text" id="name" class="w-full bg-slate-200 text-dark p-3 rounded-md focus:outline-none focus:ring-primary focus:ring-1 focus:border-primary"/>
</div>
<div class="w-full mb-8 px-4">
<label for="email" class="text-base font-bold text-primary">Email</label>
<input type="text" id="name" class="w-full bg-slate-200 text-dark p-3 rounded-md focus:outline-none focus:ring-primary focus:ring-1 focus:border-primary"/>
</div>
<div class="w-full mb-8 px-4">
<label for="pesan" class="text-base font-bold text-primary">Pesan</label>
<textarea type="text" id="name" class="w-full bg-slate-200 text-dark p-3 rounded-md focus:outline-none focus:ring-primary focus:ring-1 focus:border-primary"></textarea>
</div>
<div class="w-full px-4">
<button class="text-base font-semibold bg-primary py-3 px-8 rounded-full text-white">Hubungi Saya</button>
</div>
</div>
</form>
</div>
</section>
<!-- Contact Section End -->
<!-- Footer Section Start -->
<footer class="bg-dark pt-24 pb-12">
<div class="container">
<div class="flex flex-wrap">
<div class="w-full px-4 mb-12 text-slate-300 md:w-1/3">
<h2 class="font-bold text-4xl text-white mb-5">Office Location</h2>
<h3 class="font-bold text-2xl mb-2">Hubungi Saya</h3>
<p>renaldykevinsidharta@gmail.com</p>
<p>Surabaya</p>
</div>
<div class="w-full px-4 mb-2 md:w-1/3"></div>
<div class="w-full px-4 mb-2 md:w-1/3">
<h3 class="font-semibold text-xl text-white mb-5">Tautan</h3>
<ul class="text-slate-300">
<li>
<a href="#home" class="inline-block text-base hover:text-primary mb-3">Beranda</a>
</li>
<li>
<a href="#about" class="inline-block text-base hover:text-primary mb-3">Tentang Saya</a>
</li>
<li>
<a href="#portfolio" class="inline-block text-base hover:text-primary mb-3">Portfolio</a>
</li>
<li>
<a href="#clients" class="inline-block text-base hover:text-primary mb-3">Client</a>
</li>
<li>
<a href="#contact" class="inline-block text-base hover:text-primary mb-3">Contact</a>
</li>
</ul>
</div>
</div>
<div class="w-full pt-10 border-t border-slate-700">
<div class="flex items-center justify-center mb-5">
<!-- Instagram -->
<a href="#" target="_blank" class="w-9 h-9 mr-3 rounded-full flex justify-center items-center border border-slate-500 mt-5 hover:border-primary hover:text-white hover:bg-primary text-slate-500">
<svg role="img" width="20" class="fill-current" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Instagram</title><path d="M12 0C8.74 0 8.333.015 7.053.072 5.775.132 4.905.333 4.14.63c-.789.306-1.459.717-2.126 1.384S.935 3.35.63 4.14C.333 4.905.131 5.775.072 7.053.012 8.333 0 8.74 0 12s.015 3.667.072 4.947c.06 1.277.261 2.148.558 2.913.306.788.717 1.459 1.384 2.126.667.666 1.336 1.079 2.126 1.384.766.296 1.636.499 2.913.558C8.333 23.988 8.74 24 12 24s3.667-.015 4.947-.072c1.277-.06 2.148-.262 2.913-.558.788-.306 1.459-.718 2.126-1.384.666-.667 1.079-1.335 1.384-2.126.296-.765.499-1.636.558-2.913.06-1.28.072-1.687.072-4.947s-.015-3.667-.072-4.947c-.06-1.277-.262-2.149-.558-2.913-.306-.789-.718-1.459-1.384-2.126C21.319 1.347 20.651.935 19.86.63c-.765-.297-1.636-.499-2.913-.558C15.667.012 15.26 0 12 0zm0 2.16c3.203 0 3.585.016 4.85.071 1.17.055 1.805.249 2.227.415.562.217.96.477 1.382.896.419.42.679.819.896 1.381.164.422.36 1.057.413 2.227.057 1.266.07 1.646.07 4.85s-.015 3.585-.074 4.85c-.061 1.17-.256 1.805-.421 2.227-.224.562-.479.96-.899 1.382-.419.419-.824.679-1.38.896-.42.164-1.065.36-2.235.413-1.274.057-1.649.07-4.859.07-3.211 0-3.586-.015-4.859-.074-1.171-.061-1.816-.256-2.236-.421-.569-.224-.96-.479-1.379-.899-.421-.419-.69-.824-.9-1.38-.165-.42-.359-1.065-.42-2.235-.045-1.26-.061-1.649-.061-4.844 0-3.196.016-3.586.061-4.861.061-1.17.255-1.814.42-2.234.21-.57.479-.96.9-1.381.419-.419.81-.689 1.379-.898.42-.166 1.051-.361 2.221-.421 1.275-.045 1.65-.06 4.859-.06l.045.03zm0 3.678c-3.405 0-6.162 2.76-6.162 6.162 0 3.405 2.76 6.162 6.162 6.162 3.405 0 6.162-2.76 6.162-6.162 0-3.405-2.76-6.162-6.162-6.162zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm7.846-10.405c0 .795-.646 1.44-1.44 1.44-.795 0-1.44-.646-1.44-1.44 0-.794.646-1.439 1.44-1.439.793-.001 1.44.645 1.44 1.439z"/></svg>
</a>
<!-- WhatsApp -->
<a href="#" target="_blank" class="w-9 h-9 mr-3 rounded-full flex justify-center items-center border border-slate-500 mt-5 hover:border-primary hover:text-white hover:bg-primary text-slate-500">
<svg role="img" width="20" class="fill-current" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>WhatsApp</title><path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z"/></svg>
</a>
<!-- Website Wikipedia -->
<a href="#" target="_blank" class="w-9 h-9 mr-3 rounded-full flex justify-center items-center border border-slate-500 mt-5 hover:border-primary hover:text-white hover:bg-primary text-slate-500">
<svg role="img" width="20" class="fill-current" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Wikipedia</title><path d="M12.09 13.119c-.936 1.932-2.217 4.548-2.853 5.728-.616 1.074-1.127.931-1.532.029-1.406-3.321-4.293-9.144-5.651-12.409-.251-.601-.441-.987-.619-1.139-.181-.15-.554-.24-1.122-.271C.103 5.033 0 4.982 0 4.898v-.455l.052-.045c.924-.005 5.401 0 5.401 0l.051.045v.434c0 .119-.075.176-.225.176l-.564.031c-.485.029-.727.164-.727.436 0 .135.053.33.166.601 1.082 2.646 4.818 10.521 4.818 10.521l.136.046 2.411-4.81-.482-1.067-1.658-3.264s-.318-.654-.428-.872c-.728-1.443-.712-1.518-1.447-1.617-.207-.023-.313-.05-.313-.149v-.468l.06-.045h4.292l.113.037v.451c0 .105-.076.15-.227.15l-.308.047c-.792.061-.661.381-.136 1.422l1.582 3.252 1.758-3.504c.293-.64.233-.801.111-.947-.07-.084-.305-.22-.812-.24l-.201-.021c-.052 0-.098-.015-.145-.051-.045-.031-.067-.076-.067-.129v-.427l.061-.045c1.247-.008 4.043 0 4.043 0l.059.045v.436c0 .121-.059.178-.193.178-.646.03-.782.095-1.023.439-.12.186-.375.589-.646 1.039l-2.301 4.273-.065.135 2.792 5.712.17.048 4.396-10.438c.154-.422.129-.722-.064-.895-.197-.172-.346-.273-.857-.295l-.42-.016c-.061 0-.105-.014-.152-.045-.043-.029-.072-.075-.072-.119v-.436l.059-.045h4.961l.041.045v.437c0 .119-.074.18-.209.18-.648.03-1.127.18-1.443.421-.314.255-.557.616-.736 1.067 0 0-4.043 9.258-5.426 12.339-.525 1.007-1.053.917-1.503-.031-.571-1.171-1.773-3.786-2.646-5.71l.053-.036z"/></svg>
</a>
<a href="#" target="_blank" class="w-9 h-9 mr-3 rounded-full flex justify-center items-center border border-slate-500 mt-5 hover:border-primary hover:text-white hover:bg-primary text-slate-500">
<svg role="img" width="20" class="fill-current" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Gmail</title><path d="M24 5.457v13.909c0 .904-.732 1.636-1.636 1.636h-3.819V11.73L12 16.64l-6.545-4.91v9.273H1.636A1.636 1.636 0 0 1 0 19.366V5.457c0-2.023 2.309-3.178 3.927-1.964L5.455 4.64 12 9.548l6.545-4.91 1.528-1.145C21.69 2.28 24 3.434 24 5.457z"/></svg>
</a>
<a href="#" target="_blank" class="w-9 h-9 mr-3 rounded-full flex justify-center items-center border border-slate-500 mt-5 hover:border-primary hover:text-white hover:bg-primary text-slate-500">
<svg role="img" width="20" class="fill-current" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>LinkedIn</title><path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"/></svg>
</a>
</div>
<p class="font-medium text-xs text-slate-500 text-center">Dibuat oleh <a href="https://instagram.com/renaldyks" target="_blank" class="font-bold text-primary">Renaldy Kevin Sidharta</a> menggunakan <a href="https://tailwindcss.com" target="_blank" class="font-bold text-sky-500 ">Tailwind CSS</a>.</p>
</div>
</div>
</footer>
<!-- Footer Section End -->
<script src="dist/js/script.js"></script>
</body>
</html>