-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
421 lines (412 loc) · 24.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Primary Meta Tags -->
<title>Josh Maloon's Website</title>
<meta name="title" content="Josh Maloon's Website" />
<meta
name="description"
content="Josh Maloon is a frontend developer and UX engineer."
/>
<meta property="og:type" content="website" />
<meta property="og:title" content="Josh Maloon's Website" />
<meta
property="og:description"
content="Josh Maloon is a frontend developer and UX engineer."
/>
<meta property="og:url" content="https://www.joshmaloon.com/index.html" />
<meta property="og:image" content="https://www.joshmaloon.com/social.png" />
<meta property="twitter:card" content="summary_large_image" />
<meta name="twitter:creator" content="_JoshMaloon" />
<meta name="twitter:image:alt" content="Hi, I'm Josh Maloon!" />
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
<link rel="alternate icon" icon="favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="color-scheme" content="light dark" />
<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=Quicksand:wght@400;500;700&display=swap"
rel="stylesheet"
/>
<script>
if ("fonts" in document) {
Promise.all([
document.fonts.load("400 16px Quicksand"),
document.fonts.load("500 16px Quicksand"),
document.fonts.load("700 16px Quicksand"),
]).then(function () {
document.documentElement.classList.add("fonts-loaded");
});
}
</script>
<link rel="stylesheet" href="normalize.css" />
<link rel="stylesheet" href="styles.css" />
<!-- Apply Dark Theme based on device settings -->
<script>
if (window.matchMedia("(prefers-color-scheme: dark)").matches) {
document.documentElement.classList.add("dark");
}
</script>
</head>
<body>
<main>
<header class="content banner">
<span class="text-title-3 text-color-secondary">Hi, I'm</span>
<h1 class="text-title-1">
Josh <span class="font-weight-medium text-color-accent">Maloon</span>
</h1>
<p class="text-subtitle">
I’m a frontend enthusiast living in Edmonton, Canada 🇨🇦.
</p>
<div class="text-body">
<a
href="https://www.linkedin.com/in/joshmaloon/"
target="_blank"
rel="noopener"
>LinkedIn</a
>
<span> | </span>
<a
href="https://github.com/jmaloon"
target="_blank"
rel="noopener"
>GitHub</a
>
<span> | </span>
<a
href="https://twitter.com/_JoshMaloon"
target="_blank"
rel="noopener"
>Twitter</a
>
</div>
</header>
<!-- SKILLS -->
<div class="content grid">
<h2 class="text-title-2">My Skills</h2>
<section>
<h3 class="text-overline text-color-secondary label">Development</h3>
<ul class="text-subtitle">
<li>
<svg class="icon">
<use href="#css" />
</svg>
<span>CSS</span>
</li>
<li>
<svg class="icon">
<use href="#html" />
</svg>
<span>HTML</span>
</li>
<li>
<svg class="icon">
<use href="#javascript" />
</svg>
<span>JavaScript</span>
</li>
<li>
<svg class="icon">
<use href="#typescript" />
</svg>
<span>TypeScript</span>
</li>
<li>
<svg class="icon">
<use href="#react" />
</svg>
<span>React</span>
</li>
<li>
<svg class="icon">
<use href="#angular" />
</svg>
<span>Angular</span>
</li>
<li>
<svg class="icon">
<use href="#rxjs" />
</svg>
<span>RxJS</span>
</li>
<li>
<svg class="icon">
<use href="#redux" />
</svg>
<span>Redux</span>
</li>
</ul>
</section>
<section>
<h3 class="text-overline text-color-secondary label">Design</h3>
<ul class="text-subtitle">
<li>
<svg class="icon">
<use href="#adobe-illustrator" />
</svg>
<span>Adobe Illustrator</span>
</li>
<li>
<svg class="icon">
<use href="#adobe-xd" />
</svg>
<span>Adobe XD</span>
</li>
<li>
<svg class="icon">
<use href="#figma" />
</svg>
<span>Figma</span>
</li>
<li>
<svg class="icon">
<use href="#sketch" />
</svg>
<span>Sketch</span>
</li>
<li>
<svg class="icon">
<use href="#storybook" />
</svg>
<span>Storybook</span>
</li>
</ul>
</section>
</div>
<!-- INTRODUCTION -->
<div class="content introduction">
<h2 class="text-title-2">Welcome!</h2>
<p class="text-body text-color-secondary">
This is a digital space for exploring new ideas and sharing knowledge.
You can find the code for this website in my
<a
href="https://github.com/jmaloon/portfolio"
target="_blank"
rel="noopener"
>GitHub repo</a
>. Feel free to fork the code and make it your own!
</p>
<section>
<h3 class="text-subtitle">Dynamic Colour Palette</h3>
<p class="text-body text-color-secondary">
Colour is a powerful tool for building cohesive digital experiences.
Developing a thoughtful colour palette can create a sense of
continuity that would otherwise not exist.
</p>
<p class="text-body text-color-secondary">
For this website, I implemented a
<span class="text-color-accent">dynamic</span> colour system based
on a single hue value. Below you can change the base hue by sliding
the toggle on the range input.
</p>
<div class="hue">
<label class="text-caption text-color-secondary" for="hue-input"
>Hue</label
>
<input
id="hue-input"
type="range"
name="volume"
min="0"
max="360"
step="1"
value="220"
/>
</div>
<p class="text-body text-color-secondary">
The colour system is built with <code>CSS Variables</code> and
<code>hsla</code> colour definitions.
</p>
<p class="text-body text-color-secondary">
Using <code>hsla</code> colour definitions significantly simplified
the dynamic colour functionality I wanted to implement. Since
<code>hsla</code> functional notation accepts a hue value, all I had
to do was create a <code>CSS Variable</code> to represent the
dynamic hue value and use JavaScript whenever I want to update
the value.
</p>
<p class="text-body text-color-secondary">
Using <code>CSS Variables</code> was an easy decision as it allowed
me to define values in one location. This made it super easy to
create a "Dark Mode" as I was able redefine the colour definitions
in one location and the changes will propagate like magic! Try it
out below.
</p>
<button id="dark-mode-toggle">Toggle Dark Mode</button>
</section>
<section>
<h3 class="text-subtitle">Font Loading Strategy</h3>
<p class="text-body text-color-secondary">
I have implemented the <b>F</b>lash <b>O</b>f <b>U</b>nstyled
<b>T</b>ext (FOUT) loading strategy to handle web font loading on
this site. With FOUT, the content will be displayed using a system
(generic) font until the desired web (custom) font is loaded. This
all happens in an instant, or in other words, a "flash".
</p>
<p class="text-body text-color-secondary">
It probably happened so quickly that you didn't even notice it while
this site was loading (and don't bother reloading as your browser
has likely already cached the font). Fear not! Click the button
below to restore the text to it's "unstyled" glory.
</p>
<button id="font-toggle">Toggle Font</button>
<p class="text-body text-color-secondary">
Implementing FOUT is actually not very difficult at all. Most
browsers will do all the work for you natively using the
<code>font-display: swap</code> property. Even so, I went the
JavaScript route for even better support and control.
</p>
<p class="text-body text-color-secondary">
Implementation is only half of the story though. FOUT does not block
content rendering but it can result in dramatic layout shifts when
the system font is replaced by the web font. While not totally
avoidable, layout shifts can be minimized. On this site I've
mitigated layout shifts by styling the text according to the
rendered font in an effort to handle the differences in kerning,
leading, and tracking.
</p>
</section>
<section>
<h3 class="text-subtitle">Life Without CSS</h3>
<p class="text-body text-color-secondary">
CSS, or Cascading Style Sheets, bring flare and style to the
internet. While CSS is the expected default while browsing the web,
there are a number of reasons why CSS may fail to load for a
website. In the off chance CSS is not available, it’s important that
developers use sound HTML principles so that the content is still
accessible for users and web crawlers alike.
</p>
<p class="text-body text-color-secondary">
Click below to explore this website without CSS.
</p>
<button id="css-toggle">Toggle CSS</button>
</section>
</div>
</main>
<!-- ICON SYMBOLS -->
<svg xmlns="https://www.w3.org/2000/svg" style="display: none">
<symbol id="logo" viewBox="0 0 70 64" fill="currentColor">
<title>Josh Maloon's Portfolio Logo</title>
<path
d="M4.16 62A2.1 2.1 0 012 59.84v-.31c0-.57.18-1.06.54-1.47.36-.36.85-.59 1.47-.7a8.33 8.33 0 004.7-2.54c1.3-1.29 1.94-3.04 1.94-5.25V4.32c0-.67.2-1.21.61-1.63.47-.46 1.03-.69 1.7-.69.67 0 1.21.23 1.62.7.47.4.7.95.7 1.62v45.94c0 2.37-.57 4.43-1.7 6.18a10.8 10.8 0 01-4.25 4.1C7.63 61.5 5.91 62 4.16 62z"
/>
<path
d="M55.42 6.9c4.63 0 8.03 1.44 10.19 4.32 2.21 2.83 3.32 6.59 3.32 11.27v37.2c0 .66-.23 1.23-.7 1.7a2.2 2.2 0 01-1.62.61c-.67 0-1.23-.2-1.7-.62a2.47 2.47 0 01-.61-1.7V22.72c0-3.4-.83-6.15-2.47-8.26-1.6-2.16-4.1-3.24-7.5-3.24-2.15 0-4.21.51-6.17 1.54a12.66 12.66 0 00-4.63 4.25 10 10 0 00-1.78 5.71v21.62c0 .67-.23 1.23-.7 1.7a2.2 2.2 0 01-1.61.62c-.67 0-1.24-.21-1.7-.62a2.47 2.47 0 01-.62-1.7V22.49c0-3.35-.77-6.05-2.32-8.1-1.54-2.12-3.96-3.17-7.25-3.17-2.11 0-4.12.51-6.03 1.54a13.11 13.11 0 00-4.55 4.17 9.82 9.82 0 00-1.7 5.56v-8.26a16.78 16.78 0 015.64-5.25 14.57 14.57 0 017.49-2.09c2.98 0 5.55.72 7.72 2.17a11.8 11.8 0 014.63 6.33c1.08-2.27 3.06-4.25 5.94-5.95 2.89-1.7 5.8-2.55 8.73-2.55z"
/>
<path
d="M42.1 45.54a2.7 2.7 0 11-5.4 0 2.7 2.7 0 015.4 0zM15.68 2.95a2.7 2.7 0 11-5.4 0 2.7 2.7 0 015.4 0zM5.72 59.97a2.7 2.7 0 11-5.4 0 2.7 2.7 0 015.4 0zM69.4 60.7a2.7 2.7 0 11-5.41 0 2.7 2.7 0 015.4 0z"
fill="#fff"
fill-opacity=".5"
/>
</symbol>
<symbol id="css" viewBox="0 0 25 24" fill="currentColor">
<title>CSS3 Logo</title>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M6.89 20.4l5.78 1.6 5.8-1.6 1.3-14.47H5.6l1.29 14.46zM8.23 8.88l.16 1.77h6.79L15 12.48H8.55l.16 1.77h6.15l-.2 2.3-1.98.54-1.98-.54-.13-1.41H8.8l.25 2.78 3.63 1.01h.01l3.63-1 .03-.3.42-4.68.04-.47.32-3.6H8.23z"
/>
<path
d="M8.93 2h2.15v.9H9.83v.9h1.25v.9H8.93V2zM11.5 2h2.16v.78H12.4v.16h1.25v1.8H11.5V3.9h1.25v-.15H11.5V2zM14.09 2h2.15v.78h-1.25v.16h1.25v1.8h-2.15V3.9h1.25v-.15h-1.25V2z"
/>
</symbol>
<symbol id="html" viewBox="0 0 25 24" fill="currentColor">
<title>HTML5 Logo</title>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M17.86 20.4l1.3-14.47H4.97l1.3 14.46L12.05 22l5.8-1.6zM7.62 8.88h8.89l-.05.47-.08.9-.03.4H9.55l.16 1.82H16.2l-.05.47-.41 4.67-.03.3-3.63 1v.01l-3.64-1-.25-2.8H9.96l.13 1.42 1.97.54 1.98-.54.2-2.3H8.1l-.44-4.89-.04-.47z"
/>
<path
d="M6.3 2h.9v.9h.83V2h.9v2.7h-.9v-.9H7.2v.9h-.9V2zM10.12 2.9h-.8V2h2.5v.9h-.8v1.8h-.9V2.9zM12.2 2h.95l.57.95.58-.95h.94v2.7h-.9V3.36l-.62.96h-.01l-.62-.96V4.7h-.88V2zM15.7 2h.9v1.8h1.26v.9h-2.17V2z"
/>
</symbol>
<symbol id="javascript" viewBox="0 0 25 24" fill="currentColor">
<title>JavaScript Logo</title>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M3.46 3h18v18h-18V3zm13.76 15.09c-.84 0-1.3-.44-1.67-1.03l-1.38.8c.5.98 1.52 1.73 3.09 1.73 1.6 0 2.8-.83 2.8-2.36 0-1.4-.81-2.04-2.25-2.65l-.42-.18c-.73-.32-1.04-.52-1.04-1.03 0-.41.31-.73.8-.73.5 0 .8.2 1.1.73l1.31-.85c-.55-.98-1.33-1.35-2.4-1.35-1.51 0-2.48.96-2.48 2.23 0 1.38.81 2.03 2.03 2.55l.42.18c.78.34 1.24.55 1.24 1.13 0 .48-.45.83-1.15.83zm-6.56-.01c-.58 0-.82-.4-1.09-.87l-1.37.83c.4.85 1.18 1.55 2.53 1.55 1.5 0 2.53-.8 2.53-2.55v-5.78h-1.7v5.76c0 .84-.34 1.06-.9 1.06z"
/>
</symbol>
<symbol id="typescript" viewBox="0 0 25 24" fill="currentColor">
<title>TypeScript Logo</title>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M5.6 3H20.1c.97 0 1.75.79 1.75 1.76v14.48c0 .97-.78 1.76-1.75 1.76H5.6c-.97 0-1.76-.79-1.76-1.76V4.76c0-.97.8-1.76 1.76-1.76zM15 19.08v-1.76a3.38 3.38 0 002.76.75c.16-.04.3-.1.41-.17.12-.07.2-.16.25-.25.06-.1.09-.2.09-.32 0-.15-.05-.3-.13-.41-.1-.12-.21-.24-.37-.34-.15-.1-.33-.2-.54-.3-.2-.1-.43-.19-.67-.29a3.45 3.45 0 01-1.38-.94c-.3-.37-.46-.82-.46-1.34 0-.41.09-.76.25-1.06.17-.3.4-.54.68-.73.28-.19.6-.33.98-.42a7.15 7.15 0 012.28-.06c.32.05.61.13.88.23v1.64a2.66 2.66 0 00-.91-.41 3.68 3.68 0 00-.96-.14c-.2 0-.38.02-.55.06-.16.04-.3.1-.42.16a.8.8 0 00-.26.25.6.6 0 00-.1.33c0 .13.04.25.1.36.08.1.18.2.3.3.13.09.3.18.47.27l.63.28c.31.13.6.27.85.42.25.15.46.31.64.5a1.96 1.96 0 01.56 1.48c0 .44-.09.8-.25 1.1-.17.3-.4.55-.68.73-.29.19-.62.32-1 .4a6.68 6.68 0 01-2.44.01c-.39-.07-.73-.18-1.01-.33zm-.7-6.1h-2.26v6.44h-1.79v-6.43H7.99v-1.45h6.3V13z"
/>
</symbol>
<symbol id="react" viewBox="0 0 25 24" fill="currentColor">
<title>ReactJS Logo</title>
<path
d="M22.23 12c0-1.32-1.66-2.58-4.2-3.36.59-2.59.33-4.65-.82-5.31a1.79 1.79 0 00-.92-.23V4c.19 0 .34.04.47.11.55.32.8 1.53.6 3.09-.04.38-.11.79-.2 1.2-.8-.2-1.67-.35-2.6-.45a19.9 19.9 0 00-1.69-2.03C14.2 4.68 15.45 4 16.3 4v-.9c-1.12 0-2.6.8-4.08 2.18-1.48-1.38-2.95-2.17-4.07-2.17v.91c.85 0 2.1.67 3.43 1.9-.57.6-1.15 1.28-1.69 2.03-.92.1-1.8.25-2.6.45-.08-.4-.15-.8-.2-1.18-.2-1.56.04-2.77.6-3.09a.9.9 0 01.46-.1V3.1c-.34 0-.65.08-.92.23-1.15.66-1.4 2.72-.81 5.3-2.54.79-4.19 2.04-4.19 3.36 0 1.33 1.66 2.58 4.2 3.36-.58 2.6-.32 4.66.83 5.32.26.15.57.23.92.23 1.12 0 2.58-.8 4.07-2.19 1.48 1.38 2.95 2.17 4.07 2.17.34 0 .65-.07.92-.23 1.15-.66 1.4-2.72.81-5.3 2.53-.78 4.18-2.04 4.18-3.36zm-5.3-2.72c-.16.53-.34 1.07-.56 1.61a19.29 19.29 0 00-1.12-1.93c.58.09 1.14.2 1.67.32zm-1.87 4.34c-.32.55-.65 1.08-.99 1.56a21.21 21.21 0 01-3.67 0 22.45 22.45 0 01-1.84-3.17 21.26 21.26 0 011.83-3.18 21.21 21.21 0 013.68 0A22.5 22.5 0 0115.9 12c-.26.54-.54 1.1-.84 1.62zm1.31-.53c.22.55.41 1.1.57 1.63-.54.13-1.1.24-1.68.32a22.45 22.45 0 001.11-1.95zm-4.13 4.35c-.38-.39-.76-.82-1.13-1.3a25.25 25.25 0 002.25 0c-.37.48-.74.91-1.12 1.3zm-3.03-2.4c-.58-.08-1.14-.19-1.67-.32.15-.52.33-1.07.55-1.6a19.3 19.3 0 001.12 1.92zm3.01-8.48c.38.4.76.83 1.13 1.3a25.25 25.25 0 00-2.25 0c.37-.47.74-.9 1.12-1.3zM9.2 8.96a22.52 22.52 0 00-1.11 1.95c-.22-.55-.41-1.1-.57-1.63.54-.12 1.1-.23 1.68-.32zm-3.69 5.1c-1.44-.61-2.37-1.42-2.37-2.06 0-.64.93-1.45 2.37-2.06.35-.15.74-.29 1.13-.41.24.8.54 1.63.92 2.48a19.3 19.3 0 00-.9 2.47c-.4-.13-.8-.26-1.15-.42zm2.2 5.83c-.56-.32-.8-1.53-.61-3.09.04-.38.12-.78.2-1.2.8.2 1.68.35 2.6.45a19.9 19.9 0 001.7 2.04C10.25 19.32 9.01 20 8.16 20a.97.97 0 01-.46-.11zm9.67-3.1c.19 1.55-.05 2.76-.6 3.08a.9.9 0 01-.47.11c-.84 0-2.1-.67-3.42-1.9.57-.6 1.14-1.28 1.68-2.03.92-.1 1.8-.25 2.6-.45.09.4.16.8.2 1.18zm1.57-2.73c-.35.16-.74.29-1.13.42-.24-.8-.54-1.63-.92-2.49.38-.84.68-1.67.9-2.47.4.13.8.27 1.15.42 1.44.61 2.38 1.42 2.38 2.06 0 .64-.94 1.45-2.38 2.06z"
/>
<path d="M12.23 13.87a1.86 1.86 0 100-3.73 1.86 1.86 0 000 3.73z" />
</symbol>
<symbol id="angular" viewBox="0 0 25 24" fill="currentColor">
<title>AngularJS Logo</title>
<path d="M10.976 12.522h3.287L12.62 8.568l-1.643 3.954z" />
<path
d="M12.62 2.333l-9 3.21 1.373 11.9 7.627 4.224 7.627-4.225 1.373-11.9-9-3.209zm5.616 14.752H16.14l-1.131-2.823h-4.776l-1.13 2.823H7.002L12.62 4.469l5.616 12.616z"
/>
</symbol>
<symbol id="rxjs" viewBox="0 0 25 24" fill="currentColor">
<title>RxJS Logo</title>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M4.28 15.02a9.42 9.42 0 005.71 5.33c4.44 1.5 7.47-.71 7.47-.71 2.79-1.92 3.35-4.13 3.35-4.13-2.25 1.76-3.22 1.6-3.22 1.6a5.17 5.17 0 002.33-1.94c1.52-2.08 1-4.27 1-4.27-.97 2.11-1.86 2.7-1.86 2.7 2.4-3.65.02-5.85.02-5.85.97 2.07-.32 4.6-.32 4.6a6.95 6.95 0 01-2.63 3.1 3.73 3.73 0 002.98-.83c-2.46 2.66-5.13 2.53-5.13 2.53 1.12 1.26 2.8 1.15 2.8 1.15-2.2.52-4.26-.21-5.96-1.63a9.35 9.35 0 01-.9-.85s-.26-.27-.31-.34c-.04 1.3 1.33 2.53 1.33 2.53a5.33 5.33 0 01-2.5-2.25s-1.17-1.97-.33-4.22c.84-2.25 3.37-2.74 3.37-2.74a16.63 16.63 0 003.87 1.34c3.74.62 3.53-1.21 3.53-1.21.02-.86-.69-1.76-1.33-2.39-.53-.52-1.02-.87-1.02-.87a8.15 8.15 0 00-5.2-1.75s-.24-.23-.39-.33c-.8-.54-2.01-.71-2.74.05a7.2 7.2 0 00-.61.7 2.2 2.2 0 01-.85.59 2 2 0 01-.55.1l-.3.03c-.3.05-.61.16-.85.35-.26.21-.37.5-.4.82a5.6 5.6 0 00-.02.49L4.6 7c-.04.75-.28.96-.82 1.38-.23.17-.42.4-.56.64-.27.48-.1.96.08 1.45.1.28.2.56.21.84 0 .16 0 .31-.06.46-.04.12-.11.2-.18.3a2.3 2.3 0 00-.09.1.83.83 0 00-.17.62c.03.22.14.42.25.62a5.83 5.83 0 00.76.95 6.93 6.93 0 00.25.65zM14.5 7.15a.38.38 0 00-.39-.4c-.2 0-.37.17-.38.38a.38.38 0 00.77.01z"
/>
</symbol>
<symbol id="redux" viewBox="0 0 25 24" fill="currentColor">
<title>Redux Logo</title>
<path
d="M15.87 15.56a1.33 1.33 0 001.14-1.4c-.02-.72-.6-1.3-1.28-1.3h-.05c-.7.03-1.26.65-1.23 1.4.02.36.16.67.36.89a8.39 8.39 0 01-3.75 3.77 5.95 5.95 0 01-3.74.75A3.16 3.16 0 015 18.25a3.68 3.68 0 01-.19-3.73 5.59 5.59 0 011.56-1.92c-.09-.31-.23-.84-.3-1.22C2.74 13.9 3.1 17.3 4.1 18.92c.76 1.2 2.3 1.95 3.99 1.95a8.86 8.86 0 007.79-5.31zm4.03-2.98a9.11 9.11 0 00-7.24-3.32h-.37c-.2-.43-.64-.72-1.12-.72h-.04c-.71.02-1.26.65-1.24 1.4.02.71.6 1.3 1.28 1.3h.05c.5-.03.94-.37 1.12-.83h.41c1.74 0 3.4.53 4.88 1.57a6.38 6.38 0 012.43 3.07c.39 1.01.37 2-.05 2.84a3.35 3.35 0 01-3.13 1.97c-.92 0-1.8-.29-2.25-.5-.25.23-.7.62-1.03.86.99.48 2 .74 2.96.74 2.2 0 3.82-1.27 4.44-2.54.66-1.4.62-3.8-1.1-5.84zM8.26 15.97c.03.72.6 1.3 1.29 1.3h.04a1.32 1.32 0 001.24-1.4c-.02-.72-.6-1.3-1.28-1.3H9.5c-.05 0-.11 0-.16.03a9.15 9.15 0 01-1.2-5.34c.1-1.44.56-2.7 1.36-3.72a3.9 3.9 0 012.82-1.35c2.43-.05 3.46 3.12 3.52 4.4.3.07.8.24 1.15.36-.27-3.9-2.57-5.91-4.76-5.91-2.07 0-3.97 1.56-4.72 3.87a10.25 10.25 0 00.91 8.36c-.11.17-.18.43-.16.7z"
/>
</symbol>
<symbol id="adobe-illustrator" viewBox="0 0 25 24" fill="currentColor">
<title>Adobe Illustrator Logo</title>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M6.87 3.22h11.62a3.18 3.18 0 013.2 3.2v11.17a3.18 3.18 0 01-3.2 3.18H6.87a3.18 3.18 0 01-3.19-3.18V6.4a3.18 3.18 0 013.19-3.19zm5.51 10.5H9.6l-.57 1.77a.13.13 0 01-.14.1H7.47c-.08 0-.1-.04-.08-.13L9.8 8.5l.02-.06.06-.18c.03-.16.04-.33.04-.49 0-.04.02-.08.06-.08h1.94c.06 0 .1.02.1.06l2.74 7.72c.02.08 0 .12-.08.12h-1.56c-.06.01-.1-.03-.12-.08l-.62-1.79zm-2.35-1.52h1.9l-.17-.54-.2-.64-.11-.35a34.3 34.3 0 00-.31-1.01l-.08-.27-.09-.32h-.01c-.07.33-.15.65-.26.97l-.13.42-.21.7c-.1.38-.22.73-.33 1.04zm5.73-3.46c.18.17.42.27.67.26.26.01.51-.08.68-.26a.95.95 0 00.27-.7.95.95 0 00-.25-.66.9.9 0 00-.68-.26.96.96 0 00-.67.26.88.88 0 00-.27.67c0 .25.08.5.25.69zm-.17 1v5.77c0 .08.04.12.11.12h1.47c.07 0 .1-.04.1-.12V9.73c0-.06-.03-.1-.1-.1H15.7c-.07 0-.1.03-.1.1z"
/>
</symbol>
<symbol id="adobe-xd" viewBox="0 0 25 24" fill="currentColor">
<title>Adobe XD Logo</title>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M6.26 3.22h11.62a3.18 3.18 0 013.19 3.2v11.17a3.18 3.18 0 01-3.19 3.18H6.26a3.18 3.18 0 01-3.2-3.18V6.4a3.18 3.18 0 013.2-3.19zm6.27 4.62l-2.25 3.71 2.4 3.94c.02.03.03.06.02.09 0 .02-.02.01-.04.01H10.9c-.12 0-.2 0-.26-.08-.07-.16-.16-.31-.24-.47l-.24-.47-.5-.94-.55-.98H9.1l-.5.97a126.87 126.87 0 00-.69 1.28l-.34.63c-.03.07-.1.08-.17.08H5.73c-.02 0-.04 0-.04-.02 0-.04 0-.06.02-.09l2.33-3.82-2.27-3.85c-.02-.03-.03-.06-.02-.08.02-.02.05-.03.08-.03h1.7l.1.02c.04.01.06.04.08.07.14.32.3.64.48.96l.1.18.44.78c.18.31.35.63.5.95h.02l.49-.97.5-.94.3-.57a52.81 52.81 0 01.25-.45c.03-.02.06-.03.1-.02h1.58c.04 0 .08.02.09.05l-.03.06zm1.86 7.57c.5.23 1.05.35 1.6.34a6.62 6.62 0 002.39-.46c.05-.03.07-.07.07-.13v-.06l-.03-.37v-.04l-.01-.41V7.12c-.01-.03-.04-.06-.08-.05h-1.52c-.05 0-.08.03-.08.08v2.37h-.11l-.12-.01h-.16c-.74 0-1.37.13-1.9.43a3.11 3.11 0 00-1.6 2.74c0 .69.14 1.26.41 1.71.27.45.66.8 1.14 1.02zm2.34-4.46v3.3a4.04 4.04 0 01-.59.05c-.2 0-.41-.03-.61-.1a1.3 1.3 0 01-.85-.83 2.09 2.09 0 01-.13-.77c0-.39.08-.71.25-.95.16-.24.38-.43.64-.56a1.85 1.85 0 011.1-.18l.2.04z"
/>
</symbol>
<symbol id="figma" viewBox="0 0 25 24" fill="currentColor">
<title>Figma Logo</title>
<path
d="M9.123 22a3.335 3.335 0 003.334-3.333v-3.334H9.123a3.335 3.335 0 000 6.667zM5.79 12a3.335 3.335 0 013.333-3.333h3.334v6.666H9.123A3.335 3.335 0 015.79 12zM5.79 5.333A3.335 3.335 0 019.123 2h3.334v6.667H9.123A3.335 3.335 0 015.79 5.333zM12.457 2h3.333a3.335 3.335 0 013.334 3.333 3.335 3.335 0 01-3.334 3.334h-3.333V2z"
/>
<path
d="M19.123 12a3.335 3.335 0 01-6.666 0 3.335 3.335 0 016.666 0z"
/>
</symbol>
<symbol id="sketch" viewBox="0 0 25 24" fill="currentColor">
<title>Sketch Logo</title>
<path
d="M7.24 3.6l5.6-.6 5.61.6 4.34 5.82L12.84 21 2.9 9.42l4.34-5.83z"
/>
</symbol>
<symbol id="storybook" viewBox="0 0 25 24" fill="currentColor">
<title>StorybookJS Logo</title>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M4.83 20.43L4.2 3.93a1 1 0 01.94-1.05l11.01-.69-.1 2.27a.15.15 0 00.24.12l.88-.66.74.58a.15.15 0 00.25-.12l-.08-2.3 1.1-.08a1 1 0 011.07 1v18a1 1 0 01-1 1h-.05l-13.42-.6a1 1 0 01-.96-.97zM16.58 9.47c-.35.27-2.99.46-2.99.07.06-1.5-.6-1.56-.98-1.56-.35 0-.95.1-.95.9 0 .82.87 1.28 1.89 1.82 1.45.77 3.2 1.7 3.2 4.03 0 2.24-1.82 3.48-4.14 3.48-2.4 0-4.49-.97-4.25-4.33.1-.4 3.14-.3 3.14 0-.04 1.39.27 1.8 1.07 1.8.62 0 .9-.34.9-.91 0-.86-.91-1.37-1.95-1.95-1.41-.8-3.07-1.73-3.07-3.86 0-2.14 1.47-3.56 4.09-3.56 2.61 0 4.04 1.4 4.04 4.07z"
/>
</symbol>
</svg>
<!-- Adding JS after content -->
<script src="index.js"></script>
</body>
</html>