main
Basit Ali 2022-09-19 19:53:44 +05:00
parent 71be4e0c15
commit 859eaa2bff
135 changed files with 2418 additions and 0 deletions

5
.firebaserc 100644
View File

@ -0,0 +1,5 @@
{
"projects": {
"default": "rjbasitali-hosting"
}
}

66
.gitignore vendored 100644
View File

@ -0,0 +1,66 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
firebase-debug.log*
firebase-debug.*.log*
# Firebase cache
.firebase/
# Firebase config
# Uncomment this if you'd like others to create their own Firebase project.
# For a team working on the same Firebase project(s), it is recommended to leave
# it commented so all members can deploy to the same project(s) in .firebaserc.
# .firebaserc
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Coverage directory used by tools like istanbul
coverage
# nyc test coverage
.nyc_output
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# Bower dependency directory (https://bower.io/)
bower_components
# node-waf configuration
.lock-wscript
# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release
# Dependency directories
node_modules/
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn Integrity file
.yarn-integrity
# dotenv environment variables file
.env

16
firebase.json 100644
View File

@ -0,0 +1,16 @@
{
"hosting": {
"public": "public",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}

16
public/.htaccess 100644
View File

@ -0,0 +1,16 @@
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/plain
AddOutputFilterByType DEFLATE text/html
AddOutputFilterByType DEFLATE text/xml
AddOutputFilterByType DEFLATE text/css
AddOutputFilterByType DEFLATE application/xml
AddOutputFilterByType DEFLATE application/xhtml+xml
AddOutputFilterByType DEFLATE application/rss+xml
AddOutputFilterByType DEFLATE application/javascript
AddOutputFilterByType DEFLATE application/x-javascript
AddOutputFilterByType DEFLATE image/jpg
AddOutputFilterByType DEFLATE image/png
AddOutputFilterByType DEFLATE image/gif
AddOutputFilterByType DEFLATE image/jpeg
AddOutputFilterByType DEFLATE image/svg+xml
</IfModule>

377
public/404.html 100644
View File

@ -0,0 +1,377 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<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-XXXXXXX");
</script>
<title>404 Page Not Found | Raditian</title>
<style>
.rad-fade-in {
will-change: opacity, transform;
animation-name: rad-fade-in-fallback;
animation-duration: 5s;
animation-fill-mode: both;
}
@keyframes rad-fade-in-fallback {
0% {
opacity: 0;
}
75% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.fonts-loaded .rad-fade-in.rad-waiting {
animation-name: none;
opacity: 0;
}
.fonts-loaded .rad-fade-in.rad-animate {
animation-name: rad-fade-in;
animation-duration: 1.1s;
animation-fill-mode: both;
}
@keyframes rad-fade-in {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.rad-fade-in-long {
will-change: opacity, transform;
animation-name: rad-fade-in-long-fallback;
animation-duration: 8s;
animation-fill-mode: both;
}
@keyframes rad-fade-in-long-fallback {
0% {
opacity: 0;
}
75% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.fonts-loaded .rad-fade-in-long.rad-waiting {
animation-name: none;
opacity: 0;
}
.fonts-loaded .rad-fade-in-long.rad-animate {
animation-name: rad-fade-in-long;
animation-duration: 2s;
animation-fill-mode: both;
}
@keyframes rad-fade-in-long {
0% {
opacity: 0;
}
20% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.rad-fade-down {
will-change: opacity, transform;
animation-name: rad-fade-down-fallback;
animation-duration: 5s;
animation-fill-mode: both;
transform: translateY(-30px);
}
@keyframes rad-fade-down-fallback {
0% {
opacity: 0;
transform: translateY(-30px);
}
75% {
opacity: 0;
transform: translateY(-30px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
.fonts-loaded .rad-fade-down.rad-waiting {
animation-name: none;
opacity: 0;
transform: translateY(-30px);
}
.fonts-loaded .rad-fade-down.rad-animate {
animation-name: rad-fade-down;
animation-duration: 1.1s;
}
@keyframes rad-fade-down {
0% {
opacity: 0;
transform: translateY(-30px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
.rad-scale-down {
will-change: opacity, transform;
animation-name: rad-scale-down-fallback;
animation-duration: 5s;
animation-fill-mode: both;
transform-origin: 50% 0;
}
@keyframes rad-scale-down-fallback {
0% {
opacity: 0;
transform: scaleY(0.95);
}
75% {
opacity: 0;
transform: scaleY(0.95);
}
100% {
opacity: 1;
transform: scaleY(1);
}
}
.fonts-loaded .rad-scale-down.rad-waiting {
animation-name: none;
opacity: 0;
transform: scaleY(0.95);
}
.fonts-loaded .rad-scale-down.rad-animate {
animation-name: rad-scale-down;
animation-duration: 1.1s;
animation-fill-mode: both;
}
@keyframes rad-scale-down {
0% {
opacity: 0;
transform: scaleY(0.95);
}
100% {
opacity: 1;
transform: scaleY(1);
}
}
</style>
<link rel="stylesheet" href='https://rjbasitali.com/css/main.css' />
<link rel="stylesheet" href='https://rjbasitali.com/css/rad-icons.css' />
</head>
<body>
<header class="header fixed-top rad-animation-group" id="header">
<div class="container rad-fade-in">
<nav class="navbar navbar-expand-lg navbar-light p-0">
<a class="navbar-brand" href="https://rjbasitali.com/">
<span>Basit</span>
<span>Ali</span>
</a>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarSupportedContent, #header"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-lg-auto">
<li class="nav-item">
<a class="nav-link" href="https://rjbasitali.com/">HOME</a>
</li>
<li class="nav-item">
<a data-scroll class="nav-link" href="#about"
>ABOUT</a
>
</li>
<li class="nav-item">
<a data-scroll class="nav-link" href="#experience"
>EXPERIENCE</a
>
</li>
<li class="nav-item">
<a data-scroll class="nav-link" href="#contact"
>CONTACT</a
>
</li>
</ul>
</div>
</nav>
</div>
</header>
<section class="section four-o-four">
<div class="container text-center">
<h1 class="display-1">404</h1>
<h4>Page not found</h4>
<p>
Sorry, but the page you were looking for could not be found.
</p>
<a href="https://rjbasitali.com/" class="btn btn-primary">Back to homepage</a>
</div>
</section>
<footer class="footer">
<div class="container">
<div class="footer__left">
<div class="footer__copy">
© RjBasitAli. All rights reserved.
</div>
</div>
<div class="footer__links">
<ul class="navbar-nav ">
<li class="nav-item">
<a class="nav-link" href="/">HOME</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://rjbasitali.com/">ABOUT</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://rjbasitali.com/">EXPERIENCE</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://rjbasitali.com/">CONTACT</a>
</li>
</ul>
</div>
<div class="footer__right">
<a href="https://radity.com/"
><img
src="https://rjbasitali.com/"
srcset="https://rjbasitali.com/ 1x, https://rjbasitali.com/ 2x"
alt=""
/></a>
</div>
</div>
</footer>
<script src='https://rjbasitali.com/js/rad-animations.js'></script>
<script src='https://rjbasitali.com/js/library/lozad.min.js'></script>
<script>
window.addEventListener("load", function() {
var observer = window.lozad(".lozad", {
rootMargin: window.innerHeight / 2 + "px 0px",
threshold: 0.01
});
observer.observe();
});
</script>
<script src='https://rjbasitali.com/js/library/jquery-3.3.1.slim.min.js'></script>
<script src='https://rjbasitali.com/js/library/bootstrap.min.js'></script>
<script src='https://rjbasitali.com/js/sticky-header.js'></script>
<script src='https://rjbasitali.com/js/library/smooth-scroll.polyfills.min.js'></script>
<script src='https://rjbasitali.com/js/library/fontfaceobserver.js'></script>
<script>
(function(w) {
if (w.document.documentElement.className.indexOf("fonts-loaded") > -1) {
return;
}
var fontA = new w.FontFaceObserver("Inter", {
weight: 300
});
var fontB = new w.FontFaceObserver("Inter", {
weight: 400
});
var fontC = new w.FontFaceObserver("Inter", {
weight: 500
});
var fontD = new w.FontFaceObserver("Inter", {
weight: 600
});
var fontE = new w.FontFaceObserver("Inter", {
weight: 700
});
var fontF = new w.FontFaceObserver("Inter", {
weight: 900
});
w.Promise.all([fontA.load(), fontC.load(), fontF.load()]).then(function() {
w.document.documentElement.className += " fonts-loaded";
});
})(this);
</script>
<script>
const scroll = new SmoothScroll('a[href*="#"]');
$('a.nav-link').on('click', () => {
const navbar = $('.navbar-collapse');
if (navbar && navbar.hasClass('show')) {
$('.navbar-toggler').click();
}
})
</script>
</body>
</html>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Categories on </title>
<link>https://rjbasitali.com/categories/</link>
<description>Recent content in Categories on </description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language><atom:link href="https://rjbasitali.com/categories/index.xml" rel="self" type="application/rss+xml" />
</channel>
</rss>

View File

@ -0,0 +1,85 @@
/*
Animation example, for spinners
*/
.animate-spin {
-moz-animation: spin 2s infinite linear;
-o-animation: spin 2s infinite linear;
-webkit-animation: spin 2s infinite linear;
animation: spin 2s infinite linear;
display: inline-block;
}
@-moz-keyframes spin {
0% {
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@-webkit-keyframes spin {
0% {
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@-o-keyframes spin {
0% {
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@-ms-keyframes spin {
0% {
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@keyframes spin {
0% {
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}

View File

@ -0,0 +1 @@
/* You can customize theme styles here */

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,17 @@
.icon-arrow-right:before { content: '\e800'; } /* '' */
.icon-behance-line:before { content: '\e801'; } /* '' */
.icon-dribbble-line:before { content: '\e803'; } /* '' */
.icon-instagram-line:before { content: '\e806'; } /* '' */
.icon-linkedin-fill:before { content: '\e807'; } /* '' */
.icon-profile-fill:before { content: '\e809'; } /* '' */
.icon-smile-fill:before { content: '\e80a'; } /* '' */
.icon-twitter-line:before { content: '\e80b'; } /* '' */
.icon-youtube-line:before { content: '\e80c'; } /* '' */
.icon-quote:before { content: '\e80d'; } /* '' */
.icon-mail-fill:before { content: '\e80e'; } /* '' */
.icon-codepen-line:before { content: '\e80f'; } /* '' */
.icon-facebook-line:before { content: '\e810'; } /* '' */
.icon-github-line:before { content: '\e811'; } /* '' */
.icon-linkedin-line:before { content: '\e812'; } /* '' */
.icon-yelp-line:before { content: '\e82c'; } /* '' */

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,17 @@
.icon-arrow-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe800;&nbsp;'); }
.icon-behance-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe801;&nbsp;'); }
.icon-dribbble-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe803;&nbsp;'); }
.icon-instagram-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe806;&nbsp;'); }
.icon-linkedin-fill { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe807;&nbsp;'); }
.icon-profile-fill { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe809;&nbsp;'); }
.icon-smile-fill { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80a;&nbsp;'); }
.icon-twitter-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80b;&nbsp;'); }
.icon-youtube-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80c;&nbsp;'); }
.icon-quote { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80d;&nbsp;'); }
.icon-mail-fill { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80e;&nbsp;'); }
.icon-codepen-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80f;&nbsp;'); }
.icon-facebook-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe810;&nbsp;'); }
.icon-github-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe811;&nbsp;'); }
.icon-linkedin-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe812;&nbsp;'); }
.icon-yelp-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82c;&nbsp;'); }

View File

@ -0,0 +1,28 @@
[class^="icon-"], [class*=" icon-"] {
font-family: 'rad-icons';
font-style: normal;
font-weight: normal;
/* fix buttons height */
line-height: 1em;
/* you can be more comfortable with increased icons size */
/* font-size: 120%; */
}
.icon-arrow-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe800;&nbsp;'); }
.icon-behance-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe801;&nbsp;'); }
.icon-dribbble-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe803;&nbsp;'); }
.icon-instagram-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe806;&nbsp;'); }
.icon-linkedin-fill { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe807;&nbsp;'); }
.icon-profile-fill { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe809;&nbsp;'); }
.icon-smile-fill { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80a;&nbsp;'); }
.icon-twitter-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80b;&nbsp;'); }
.icon-youtube-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80c;&nbsp;'); }
.icon-quote { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80d;&nbsp;'); }
.icon-mail-fill { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80e;&nbsp;'); }
.icon-codepen-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80f;&nbsp;'); }
.icon-facebook-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe810;&nbsp;'); }
.icon-github-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe811;&nbsp;'); }
.icon-linkedin-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe812;&nbsp;'); }
.icon-yelp-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82c;&nbsp;'); }

View File

@ -0,0 +1,73 @@
@font-face {
font-family: 'rad-icons';
src: url('../fonts/rad-icons.eot?32706191');
src: url('../fonts/rad-icons.eot?32706191#iefix') format('embedded-opentype'),
url('../fonts/rad-icons.woff2?32706191') format('woff2'),
url('../fonts/rad-icons.woff?32706191') format('woff'),
url('../fonts/rad-icons.ttf?32706191') format('truetype'),
url('../fonts/rad-icons.svg?32706191#rad-icons') format('svg');
font-weight: normal;
font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face {
font-family: 'rad-icons';
src: url('../font/rad-icons.svg?32706191#rad-icons') format('svg');
}
}
*/
[class^="icon-"]:before, [class*=" icon-"]:before {
font-family: "rad-icons";
font-style: normal;
font-weight: normal;
speak: none;
display: inline-block;
text-decoration: inherit;
width: 1em;
margin-right: .2em;
text-align: center;
/* opacity: .8; */
/* For safety - reset parent styles, that can break glyph codes*/
font-variant: normal;
text-transform: none;
/* fix buttons height, for twitter bootstrap */
line-height: 1em;
/* Animation center compensation - margins should be symmetric */
/* remove if not needed */
margin-left: .2em;
/* you can be more comfortable with increased icons size */
/* font-size: 120%; */
/* Font smoothing. That was taken from TWBS */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
/* Uncomment for 3D effect */
/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
.icon-arrow-right:before { content: '\e800'; } /* '' */
.icon-behance-line:before { content: '\e801'; } /* '' */
.icon-dribbble-line:before { content: '\e803'; } /* '' */
.icon-instagram-line:before { content: '\e806'; } /* '' */
.icon-linkedin-fill:before { content: '\e807'; } /* '' */
.icon-profile-fill:before { content: '\e809'; } /* '' */
.icon-smile-fill:before { content: '\e80a'; } /* '' */
.icon-twitter-line:before { content: '\e80b'; } /* '' */
.icon-youtube-line:before { content: '\e80c'; } /* '' */
.icon-quote:before { content: '\e80d'; } /* '' */
.icon-mail-fill:before { content: '\e80e'; } /* '' */
.icon-codepen-line:before { content: '\e80f'; } /* '' */
.icon-facebook-line:before { content: '\e810'; } /* '' */
.icon-github-line:before { content: '\e811'; } /* '' */
.icon-linkedin-line:before { content: '\e812'; } /* '' */
.icon-yelp-line:before { content: '\e82c'; } /* '' */

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,234 @@
{
"name": "rad-icons",
"css_prefix_text": "icon-",
"css_use_suffix": false,
"hinting": true,
"units_per_em": 1000,
"ascent": 850,
"glyphs": [
{
"uid": "ee40dd0a8dcd95ecd9f4913c697b8d28",
"css": "linkedin-line",
"code": 59410,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M490.9 381.8C527.3 345.5 577.3 318.2 631.8 318.2 754.5 318.2 850 418.2 850 536.4V836.4H772.7V536.4C772.7 459.1 709.1 395.5 631.8 395.5S490.9 459.1 490.9 536.4V836.4H409.1V336.4H490.9V381.8ZM209.1 263.6C177.3 263.6 150 236.4 150 204.5S177.3 145.5 209.1 145.5 268.2 172.7 268.2 204.5 240.9 263.6 209.1 263.6L209.1 263.6ZM168.2 340.9H250V840.9H168.2V340.9Z",
"width": 1000
},
"search": [
"linkedin-line"
]
},
{
"uid": "12ce787270cfe350aa0958de82654e09",
"css": "github-line",
"code": 59409,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M263.6 763.6C250 754.5 240.9 745.5 227.3 731.8 222.7 722.7 213.6 713.6 209.1 709.1 190.9 686.4 177.3 672.7 163.6 668.2 140.9 659.1 131.8 636.4 136.4 613.6 145.5 590.9 168.2 581.8 190.9 586.4 222.7 595.5 245.5 618.2 272.7 654.5 268.2 650 286.4 672.7 290.9 677.3 300 686.4 304.5 690.9 309.1 695.5 318.2 700 331.8 704.5 359.1 700 359.1 686.4 363.6 668.2 368.2 654.5 240.9 627.3 172.7 545.5 172.7 390.9 172.7 340.9 186.4 295.5 218.2 254.5 209.1 213.6 209.1 168.2 227.3 118.2 231.8 104.5 240.9 95.5 254.5 95.5 259.1 95.5 259.1 95.5 263.6 95.5 295.5 90.9 345.5 104.5 404.5 140.9 440.9 131.8 477.3 127.3 518.2 127.3 554.5 127.3 595.5 131.8 631.8 140.9 695.5 100 740.9 90.9 772.7 95.5 777.3 95.5 777.3 95.5 781.8 95.5 795.5 100 804.5 109.1 809.1 118.2 827.3 168.2 831.8 213.6 822.7 250 850 290.9 868.2 336.4 868.2 386.4 868.2 540.9 800 622.7 672.7 654.5 677.3 672.7 681.8 690.9 681.8 713.6 681.8 750 681.8 790.9 681.8 827.3 704.5 831.8 718.2 854.5 713.6 877.3 709.1 895.5 695.5 904.5 681.8 909.1 636.4 918.2 600 886.4 600 845.5L600 827.3 600 800C600 772.7 600 745.5 600 718.2 600 690.9 590.9 668.2 581.8 663.6 563.6 650 563.6 622.7 577.3 604.5 586.4 595.5 595.5 590.9 604.5 590.9 727.3 577.3 786.4 527.3 786.4 395.5 786.4 354.5 772.7 322.7 750 295.5 740.9 281.8 736.4 268.2 740.9 250 750 231.8 750 209.1 745.5 181.8L745.5 181.8C727.3 186.4 700 200 668.2 222.7 650 222.7 636.4 227.3 627.3 222.7 590.9 213.6 554.5 209.1 518.2 209.1 481.8 209.1 445.5 213.6 409.1 222.7 400 227.3 386.4 222.7 377.3 218.2 345.5 195.5 318.2 181.8 295.5 177.3 290.9 204.5 295.5 227.3 300 245.5 304.5 259.1 304.5 277.3 290.9 290.9 268.2 313.6 254.5 350 254.5 390.9 254.5 522.7 313.6 572.7 436.4 586.4 459.1 590.9 477.3 609.1 472.7 631.8 472.7 640.9 468.2 650 459.1 659.1 450 668.2 440.9 690.9 440.9 718.2V850C440.9 890.9 404.5 922.7 359.1 913.6 336.4 909.1 322.7 886.4 327.3 863.6 331.8 845.5 340.9 831.8 359.1 831.8V790.9C318.2 786.4 286.4 781.8 263.6 763.6L263.6 763.6Z",
"width": 1000
},
"search": [
"github-line"
]
},
{
"uid": "da5bcab36ea7b71c608dd99e7690bc9d",
"css": "facebook-line",
"code": 59408,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M518.2 436.4H704.5L681.8 518.2H513.6V895.5H436.4V518.2H268.2V436.4H436.4V359.1C436.4 286.4 445.5 259.1 459.1 231.8 472.7 204.5 495.5 181.8 522.7 168.2 550 154.5 577.3 145.5 650 145.5 672.7 145.5 690.9 145.5 709.1 150V227.3H650C595.5 227.3 577.3 231.8 559.1 240.9 545.5 245.5 536.4 259.1 531.8 268.2 522.7 286.4 518.2 304.5 518.2 359.1V436.4Z",
"width": 1000
},
"search": [
"facebook-line"
]
},
{
"uid": "3c0183b9a93d5c916b99950a14a507e7",
"css": "codepen-line",
"code": 59407,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M686.4 550L540.9 645.5V790.9L795.5 622.7 686.4 550ZM609.1 500L500 427.3 390.9 500 500 572.7 609.1 500ZM827.3 454.5L759.1 500 827.3 545.5V454.5ZM795.5 377.3L540.9 209.1V354.5L686.4 450 795.5 377.3ZM313.6 450L459.1 354.5V209.1L204.5 377.3 313.6 450ZM204.5 622.7L459.1 790.9V645.5L313.6 550C313.6 550 204.5 622.7 204.5 622.7ZM172.7 545.5L240.9 500 172.7 454.5V545.5ZM90.9 377.3C90.9 363.6 100 350 109.1 345.5L477.3 100C490.9 90.9 509.1 90.9 522.7 100L890.9 345.5C900 350 909.1 363.6 909.1 377.3V622.7C909.1 636.4 900 650 890.9 654.5L522.7 900C509.1 909.1 490.9 909.1 477.3 900L109.1 654.5C100 650 90.9 636.4 90.9 622.7V377.3Z",
"width": 1000
},
"search": [
"codepen-line"
]
},
{
"uid": "c5373c46a94dea270c5d5e5a2a91e4d2",
"css": "mail-fill",
"code": 59406,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M90.9 90.9H900C922.7 90.9 950 109.1 950 140.9V863.6C950 886.4 931.8 913.6 900 913.6H90.9C68.2 909.1 45.5 890.9 45.5 859.1V131.8C45.5 109.1 63.6 90.9 90.9 90.9ZM495.5 481.8L204.5 236.4 145.5 300 495.5 595.5 836.4 300 777.3 231.8 495.5 481.8 495.5 481.8 495.5 481.8Z",
"width": 1000
},
"search": [
"mail-fill"
]
},
{
"uid": "478a071e885b346a4c702ff2ffe3029d",
"css": "quote",
"code": 59405,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M218.2 868.2C104.5 868.2 9.1 781.8 9.1 631.8 9.1 413.6 118.2 250 204.5 145.5 213.6 136.4 227.3 131.8 236.4 131.8H281.8C300 131.8 309.1 145.5 300 159.1 254.5 254.5 218.2 350 218.2 472.7 331.8 472.7 422.7 559.1 422.7 668.2S336.4 868.2 218.2 868.2ZM786.4 868.2C672.7 868.2 577.3 781.8 577.3 631.8 577.3 413.6 686.4 250 772.7 145.5 781.8 136.4 790.9 131.8 804.5 131.8H850C868.2 131.8 877.3 145.5 868.2 159.1 822.7 254.5 786.4 350 786.4 472.7 900 472.7 990.9 559.1 990.9 668.2S900 868.2 786.4 868.2Z",
"width": 1000
},
"search": [
"quote"
]
},
{
"uid": "ef2510404ab8f8689ca2099e29511135",
"css": "youtube-line",
"code": 59404,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M886.4 245.5C881.8 231.8 872.7 218.2 859.1 213.6 836.4 209.1 727.3 195.5 500 195.5S163.6 209.1 140.9 218.2C131.8 218.2 118.2 231.8 113.6 245.5 109.1 268.2 95.5 359.1 95.5 500S109.1 731.8 113.6 754.5C118.2 768.2 127.3 781.8 140.9 786.4 163.6 790.9 272.7 809.1 500 809.1S836.4 795.5 859.1 790.9C872.7 786.4 881.8 777.3 886.4 759.1 890.9 736.4 904.5 645.5 904.5 504.5S890.9 268.2 886.4 245.5L886.4 245.5ZM963.6 231.8C981.8 318.2 981.8 500 981.8 500S981.8 681.8 959.1 768.2C945.5 813.6 909.1 854.5 863.6 868.2 781.8 890.9 495.5 890.9 495.5 890.9S209.1 890.9 127.3 868.2C81.8 854.5 45.5 818.2 31.8 768.2 13.6 681.8 13.6 500 13.6 500S13.6 318.2 36.4 231.8C50 186.4 86.4 145.5 131.8 131.8 213.6 113.6 500 113.6 500 113.6S786.4 113.6 868.2 136.4C913.6 150 950 186.4 963.6 231.8ZM409.1 663.6V336.4L690.9 500 409.1 663.6 409.1 663.6Z",
"width": 1000
},
"search": [
"youtube-line"
]
},
{
"uid": "4cbc1bb802110f04581dfcb17c681b70",
"css": "twitter-line",
"code": 59403,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M672.7 213.6C600 213.6 545.5 272.7 545.5 340.9L545.5 409.1C545.5 422.7 531.8 436.4 518.2 436.4 518.2 436.4 518.2 436.4 513.6 436.4L440.9 427.3C350 413.6 263.6 372.7 181.8 304.5 154.5 450 209.1 554.5 331.8 631.8L409.1 677.3C422.7 686.4 427.3 700 418.2 713.6 418.2 718.2 413.6 718.2 413.6 722.7L340.9 772.7C381.8 777.3 422.7 772.7 454.5 768.2 663.6 727.3 804.5 568.2 804.5 309.1 800 290.9 759.1 213.6 672.7 213.6ZM454.5 340.9C454.5 222.7 554.5 127.3 677.3 127.3 731.8 127.3 786.4 150 827.3 190.9 859.1 190.9 886.4 200 945.5 163.6 931.8 236.4 922.7 268.2 890.9 309.1 890.9 650 681.8 813.6 472.7 854.5 327.3 881.8 118.2 836.4 59.1 772.7 90.9 768.2 213.6 759.1 286.4 704.5 227.3 663.6-18.2 522.7 140.9 136.4 218.2 222.7 290.9 281.8 368.2 313.6 418.2 336.4 431.8 336.4 454.5 340.9L454.5 340.9Z",
"width": 1000
},
"search": [
"twitter-line"
]
},
{
"uid": "9780efb6a4760136c5b4105bc4bcf457",
"css": "smile-fill",
"code": 59402,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M500 909.1C272.7 909.1 90.9 727.3 90.9 500S272.7 90.9 500 90.9 909.1 272.7 909.1 500 727.3 909.1 500 909.1ZM295.5 500C295.5 613.6 386.4 704.5 500 704.5S704.5 613.6 704.5 500H622.7C622.7 568.2 568.2 622.7 500 622.7S377.3 568.2 377.3 500H295.5Z",
"width": 1000
},
"search": [
"smile-fill"
]
},
{
"uid": "6453234c88f0eb299ae9f4fd79c19208",
"css": "linkedin-fill",
"code": 59399,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M786.4 786.4H663.6V595.5C663.6 550 663.6 490.9 600 490.9 536.4 490.9 527.3 540.9 527.3 590.9V781.8H409.1V400H527.3V454.5H527.3C545.5 422.7 581.8 390.9 640.9 390.9 763.6 390.9 786.4 472.7 786.4 577.3L786.4 786.4 786.4 786.4ZM272.7 345.5C231.8 345.5 204.5 313.6 204.5 272.7 204.5 272.7 204.5 272.7 204.5 272.7 204.5 231.8 236.4 204.5 272.7 204.5S345.5 236.4 345.5 272.7C345.5 313.6 313.6 345.5 272.7 345.5ZM331.8 786.4H213.6V400H336.4L331.8 786.4 331.8 786.4ZM850 90.9H150C118.2 90.9 90.9 118.2 90.9 150 90.9 150 90.9 150 90.9 150V850C90.9 881.8 118.2 909.1 150 909.1H845.5C877.3 909.1 904.5 881.8 904.5 850V150C909.1 118.2 881.8 90.9 850 90.9 850 90.9 850 90.9 850 90.9Z",
"width": 1000
},
"search": [
"linkedin-fill"
]
},
{
"uid": "e847cfcc361ab29699b098f25b76a77b",
"css": "profile-fill",
"code": 59401,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M90.9 172.7C90.9 150 109.1 131.8 131.8 131.8H868.2C890.9 131.8 909.1 150 909.1 172.7V827.3C909.1 850 890.9 868.2 868.2 868.2H131.8C109.1 868.2 90.9 850 90.9 827.3 90.9 827.3 90.9 172.7 90.9 172.7ZM254.5 622.7V704.5H745.5V622.7H254.5ZM254.5 295.5V540.9H500V295.5H254.5ZM581.8 295.5V377.3H745.5V295.5H581.8ZM581.8 459.1V540.9H745.5V459.1H581.8ZM336.4 377.3H418.2V459.1H336.4V377.3Z",
"width": 1000
},
"search": [
"profile-fill"
]
},
{
"uid": "87c7be607add71fabf58c9706eb30893",
"css": "instagram-line",
"code": 59398,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M500 377.3C431.8 377.3 377.3 431.8 377.3 500S431.8 622.7 500 622.7 622.7 568.2 622.7 500 568.2 377.3 500 377.3ZM500 295.5C613.6 295.5 704.5 386.4 704.5 500S613.6 704.5 500 704.5 295.5 613.6 295.5 500 386.4 295.5 500 295.5ZM763.6 286.4C763.6 313.6 740.9 336.4 713.6 336.4 686.4 336.4 663.6 313.6 663.6 286.4S686.4 236.4 713.6 236.4C740.9 231.8 763.6 259.1 763.6 286.4ZM500 172.7C400 172.7 381.8 172.7 336.4 177.3 304.5 177.3 281.8 181.8 263.6 190.9 245.5 195.5 231.8 204.5 218.2 218.2 204.5 231.8 195.5 245.5 190.9 263.6 181.8 281.8 177.3 304.5 177.3 336.4 177.3 381.8 172.7 395.5 172.7 500 172.7 600 172.7 618.2 177.3 663.6 177.3 695.5 181.8 718.2 190.9 736.4 200 754.5 204.5 768.2 218.2 781.8 231.8 795.5 245.5 804.5 263.6 809.1 281.8 818.2 304.5 822.7 336.4 822.7 381.8 822.7 395.5 827.3 500 827.3 600 827.3 618.2 827.3 663.6 822.7 695.5 822.7 718.2 818.2 736.4 809.1 754.5 804.5 768.2 790.9 781.8 781.8 795.5 768.2 804.5 754.5 809.1 736.4 818.2 718.2 822.7 695.5 822.7 663.6 822.7 618.2 827.3 604.5 827.3 500 827.3 400 827.3 381.8 822.7 336.4 822.7 304.5 818.2 281.8 809.1 263.6 804.5 245.5 790.9 231.8 781.8 218.2 768.2 204.5 754.5 195.5 736.4 190.9 718.2 181.8 695.5 177.3 663.6 177.3 618.2 172.7 604.5 172.7 500 172.7ZM500 90.9C609.1 90.9 627.3 90.9 668.2 95.5 713.6 95.5 740.9 104.5 768.2 113.6 795.5 122.7 818.2 136.4 840.9 159.1 863.6 177.3 877.3 204.5 886.4 231.8 895.5 259.1 904.5 286.4 904.5 331.8 904.5 377.3 909.1 390.9 909.1 500S909.1 627.3 904.5 668.2C904.5 713.6 895.5 740.9 886.4 768.2 877.3 795.5 859.1 818.2 840.9 840.9 818.2 863.6 795.5 877.3 768.2 886.4 740.9 895.5 713.6 904.5 668.2 904.5 622.7 904.5 609.1 909.1 500 909.1S372.7 909.1 331.8 904.5C286.4 904.5 259.1 895.5 231.8 886.4 204.5 877.3 181.8 859.1 159.1 840.9 136.4 818.2 122.7 795.5 113.6 768.2 104.5 740.9 95.5 713.6 95.5 668.2 90.9 622.7 90.9 609.1 90.9 500 90.9 390.9 90.9 372.7 95.5 331.8 95.5 286.4 104.5 259.1 113.6 231.8 122.7 204.5 140.9 181.8 159.1 159.1 177.3 136.4 204.5 122.7 231.8 113.6 259.1 104.5 286.4 95.5 331.8 95.5 372.7 90.9 390.9 90.9 500 90.9Z",
"width": 1000
},
"search": [
"instagram-line"
]
},
{
"uid": "c0596241074f58c890c47adf358b9ebf",
"css": "behance-line",
"code": 59393,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M313.6 459.1C359.1 459.1 395.5 422.7 395.5 377.3S359.1 290.9 313.6 290.9H127.3V459.1H313.6ZM354.5 540.9H127.3V709.1H354.5C400 709.1 436.4 672.7 436.4 627.3S400 540.9 354.5 540.9ZM440.9 481.8C518.2 527.3 545.5 631.8 500 709.1 468.2 759.1 413.6 790.9 359.1 790.9H40.9V209.1H313.6C404.5 209.1 481.8 281.8 481.8 377.3 477.3 413.6 463.6 450 440.9 481.8ZM645.5 250H872.7V313.6H645.5V250ZM959.1 604.5H645.5V613.6C645.5 677.3 695.5 727.3 759.1 727.3 800 727.3 840.9 704.5 859.1 663.6H950C922.7 768.2 813.6 831.8 704.5 800 618.2 777.3 559.1 700 559.1 609.1V545.5C559.1 436.4 650 350 759.1 350 863.6 350 950 436.4 954.5 545.5V604.5ZM872.7 522.7C854.5 463.6 790.9 427.3 731.8 445.5 695.5 454.5 663.6 486.4 654.5 522.7H872.7Z",
"width": 1000
},
"search": [
"behance-line"
]
},
{
"uid": "c93f9e1428e5a893da8110bf2b3ee475",
"css": "dribbble-line",
"code": 59395,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M500 140.9C300 140.9 140.9 300 140.9 500S300 859.1 500 859.1C700 859.1 859.1 700 859.1 500S700 140.9 500 140.9ZM736.4 304.5C781.8 359.1 804.5 427.3 804.5 495.5 795.5 495.5 690.9 472.7 590.9 486.4 586.4 481.8 586.4 477.3 586.4 468.2 581.8 454.5 572.7 436.4 568.2 422.7 681.8 381.8 731.8 313.6 736.4 304.5L736.4 304.5ZM500 190.9C577.3 190.9 650 218.2 704.5 268.2 700 277.3 654.5 336.4 545.5 377.3 495.5 286.4 440.9 209.1 431.8 195.5 450 195.5 477.3 190.9 500 190.9ZM368.2 222.7C409.1 277.3 450 336.4 481.8 400 336.4 436.4 209.1 436.4 195.5 436.4 218.2 340.9 281.8 263.6 368.2 222.7ZM190.9 500V490.9C204.5 490.9 354.5 495.5 504.5 445.5 513.6 463.6 522.7 481.8 527.3 500 522.7 500 518.2 504.5 513.6 504.5 363.6 554.5 277.3 695.5 272.7 704.5 218.2 650 190.9 577.3 190.9 500ZM500 809.1C431.8 809.1 363.6 786.4 313.6 745.5 318.2 736.4 381.8 613.6 554.5 554.5 554.5 554.5 554.5 554.5 554.5 554.5 581.8 631.8 604.5 709.1 618.2 786.4 581.8 800 540.9 809.1 500 809.1ZM672.7 754.5C668.2 736.4 654.5 645.5 613.6 536.4 709.1 522.7 795.5 545.5 804.5 550 790.9 631.8 740.9 709.1 672.7 754.5L672.7 754.5Z",
"width": 1000
},
"search": [
"dribbble-line"
]
},
{
"uid": "58032312267c7fea6936a73c0c472bd5",
"css": "arrow-right",
"code": 59392,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M640.9 463.6L459.1 277.3 509.1 227.3 772.7 500 509.1 772.7 459.1 722.7 640.9 536.4H227.3V468.2H640.9Z",
"width": 1000
},
"search": [
"arrow-right"
]
},
{
"uid": "315bd7dceb8083b37f60c66fce2f8758",
"css": "yelp-line",
"code": 59436,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M410.5 118.6C409.4 102.5 406.7 64.8 361.8 56.8 317.4 48.8 203.3 82.1 159.7 106.8 141.5 117.1 128.2 133.5 124.1 150.6 121 163.7 123.3 176.8 130.6 187.7 149.2 215.4 300 463 324.4 488.5 339.9 504.6 361.7 512.1 383.1 506.9 403.4 501.9 419.3 486 425.6 464.5 435.6 430.5 415.7 197.4 410.5 118.6ZM375.5 450.2C374.9 452.3 373.4 455.6 370.7 456.2 368.1 456.9 364.9 455.4 362 452.4 343.4 432.6 196.2 192.9 175.5 161.1 176.9 158.8 180.3 155 185.4 152.1 225.4 129.5 325.4 103.1 352.6 108.1 355 108.5 356.3 109 356.8 109.3 357.8 111.5 358.2 118.2 358.5 122.2 361.4 161.7 381.4 420.4 375.5 450.2ZM97.8 449.9C86.8 455.8 72.1 468.9 64.8 497.7 54.8 537.2 51.2 608.2 62.7 654.1 70.5 684.9 98.6 703.3 128.3 696.6 142 693.5 288.2 646.9 317.3 637.6 343.4 629.3 359.7 603.7 357.8 574.1 356.2 548.4 342.8 529.1 320.1 519.7 223.9 479.8 176.4 459.9 140.2 447.1 125.8 442 110.7 443 97.8 449.9ZM122.1 496C122.3 496 122.5 496.1 122.9 496.2 160 509.3 211.9 531.3 300.2 567.8 303 569 305.4 570 305.8 577.4 306.2 583 304.6 587 301.5 587.9 235.5 609 127 643.4 116.9 645.8 114.6 646.3 113.5 642.2 113.3 641.4 105 608.6 106 547.4 115.3 510.5 117.7 500.9 120.9 496.9 122.1 496ZM649.9 324.6C634.6 310.5 616 303 598.6 303.9 584.4 304.7 572 310.8 562.6 321.7 558.9 325.9 525.6 370.1 499.4 405.7 437.1 490.6 436.1 496.6 434.9 504.2 431.6 524.6 439.1 546.5 454.5 561.3 470.2 576.3 491.6 582.3 513.2 577.9 519.7 576.6 696 531.7 697.5 531.3 717.5 526 727.3 513.8 732 504.5 740.4 488.2 740 467.5 731.1 444.7 715.7 405.3 680 352.6 649.9 324.6L649.9 324.6ZM685.7 480.4C685.4 480.5 685 480.7 684.3 480.8 675.4 483.2 511.8 524.8 502.5 526.9 497.8 527.8 493.8 526.7 490.6 523.7 488.1 521.3 486.5 518 486.3 515 500.7 490.1 591.5 368.8 601.8 355.9 603.7 356 608.7 357.6 614.4 362.8 638.8 385.4 670 431.6 682.6 463.7 686.2 473 686.1 478.5 685.7 480.4L685.7 480.4ZM690.7 655.7C635.6 637.3 580.4 619 525.3 600.7 497.5 591.5 470 601.2 453.5 626.1 439.4 647.5 438.6 671.9 451.4 693 494.3 763.5 522.5 808.3 533.2 825.7 550 853.2 566.6 881.2 598.9 881.2 618.6 881.2 635.2 869.4 646.4 860.1 677.5 834.1 715.5 785.8 732.9 749.9 744.1 727 746.2 707.9 739.4 691.7 729.7 668.7 705.3 660.6 690.7 655.7L690.7 655.7ZM686.1 727.2C671.6 756.8 638.9 798.5 613.1 820 605.1 826.7 600.8 828.4 599.3 828.9 593 824.7 519.5 704.6 496 665.9 494.2 663.1 493.2 660.5 497 654.8 499.8 650.6 502.3 649.4 504.8 649.4 506.1 649.4 507.5 649.7 508.9 650.2 564 668.5 619.1 686.8 674.3 705.1 683.2 708.1 688.8 710.5 691.2 712.2 691 714 690.2 718.6 686.1 727.2L686.1 727.2ZM380.1 637.6C355.2 631.2 332.7 638.1 316.7 657 220.9 770.4 206.4 788.7 191.7 808.6 179.4 825.3 179.4 840.8 181.6 850.8 185.6 869.4 200.3 885.5 226.4 900.1 250.2 913.4 276.9 924.4 308.1 933.7 327.4 939.4 348 944.4 366.8 944.4 406 944.4 427.1 921.2 427.2 887.6 427.4 842 427.3 823 427.2 695.3 427.2 668.1 408.3 644.9 380.1 637.6L380.1 637.6ZM374.8 891.5C371.8 892.7 360.3 894.9 323 883.7 295.5 875.5 272.2 866 251.8 854.6 238.9 847.4 234.4 842.5 233 840.5 242.4 825.2 340.2 709.9 356.6 690.6 358.6 688.2 360.2 686.3 367.1 688.1 372.3 689.4 375.2 692.1 375.2 695.4 375.4 897.6 375.4 889.1 374.8 891.5Z",
"width": 778
},
"search": [
"yelp"
]
}
]
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,179 @@
@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 100;
src: url("Inter-Thin-BETA.woff2") format("woff2"),
url("Inter-Thin-BETA.woff") format("woff");
}
@font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 100;
src: url("Inter-ThinItalic-BETA.woff2") format("woff2"),
url("Inter-ThinItalic-BETA.woff") format("woff");
}
@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 200;
src: url("Inter-ExtraLight-BETA.woff2") format("woff2"),
url("Inter-ExtraLight-BETA.woff") format("woff");
}
@font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 200;
src: url("Inter-ExtraLightItalic-BETA.woff2") format("woff2"),
url("Inter-ExtraLightItalic-BETA.woff") format("woff");
}
@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 300;
src: url("Inter-Light-BETA.woff2") format("woff2"),
url("Inter-Light-BETA.woff") format("woff");
}
@font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 300;
src: url("Inter-LightItalic-BETA.woff2") format("woff2"),
url("Inter-LightItalic-BETA.woff") format("woff");
}
@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 400;
src: url("Inter-Regular.woff2") format("woff2"),
url("Inter-Regular.woff") format("woff");
}
@font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 400;
src: url("Inter-Italic.woff2") format("woff2"),
url("Inter-Italic.woff") format("woff");
}
@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 500;
src: url("Inter-Medium.woff2") format("woff2"),
url("Inter-Medium.woff") format("woff");
}
@font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 500;
src: url("Inter-MediumItalic.woff2") format("woff2"),
url("Inter-MediumItalic.woff") format("woff");
}
@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 600;
src: url("Inter-SemiBold.woff2") format("woff2"),
url("Inter-SemiBold.woff") format("woff");
}
@font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 600;
src: url("Inter-SemiBoldItalic.woff2") format("woff2"),
url("Inter-SemiBoldItalic.woff") format("woff");
}
@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 700;
src: url("Inter-Bold.woff2") format("woff2"),
url("Inter-Bold.woff") format("woff");
}
@font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 700;
src: url("Inter-BoldItalic.woff2") format("woff2"),
url("Inter-BoldItalic.woff") format("woff");
}
@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 800;
src: url("Inter-ExtraBold.woff2") format("woff2"),
url("Inter-ExtraBold.woff") format("woff");
}
@font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 800;
src: url("Inter-ExtraBoldItalic.woff2") format("woff2"),
url("Inter-ExtraBoldItalic.woff") format("woff");
}
@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 900;
src: url("Inter-Black.woff2") format("woff2"),
url("Inter-Black.woff") format("woff");
}
@font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 900;
src: url("Inter-BlackItalic.woff2") format("woff2"),
url("Inter-BlackItalic.woff") format("woff");
}
/* -------------------------------------------------------
Variable font.
Usage:
html { font-family: 'Inter', sans-serif; }
@supports (font-variation-settings: normal) {
html { font-family: 'Inter var', sans-serif; }
}
*/
@font-face {
font-family: 'Inter var';
font-weight: 100 900;
font-style: normal;
font-named-instance: 'Regular';
src: url("Inter-upright.var.woff2") format("woff2");
}
@font-face {
font-family: 'Inter var';
font-weight: 100 900;
font-style: italic;
font-named-instance: 'Italic';
src: url("Inter-italic.var.woff2") format("woff2");
}
/* --------------------------------------------------------------------------
[EXPERIMENTAL] Multi-axis, single variable font.
Slant axis is not yet widely supported (as of February 2019) and thus this
multi-axis single variable font is opt-in rather than the default.
When using this, you will probably need to set font-variation-settings
explicitly, e.g.
* { font-variation-settings: "slnt" 0deg }
.italic { font-variation-settings: "slnt" 10deg }
*/
@font-face {
font-family: 'Inter var experimental';
font-weight: 100 900;
font-style: oblique 0deg 10deg;
src: url("Inter.var.woff2") format("woff2");
}

Binary file not shown.

View File

@ -0,0 +1,42 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>Copyright (C) 2020 by original authors @ fontello.com</metadata>
<defs>
<font id="rad-icons" horiz-adv-x="1000" >
<font-face font-family="rad-icons" font-weight="400" font-stretch="normal" units-per-em="1000" ascent="850" descent="-150" />
<missing-glyph horiz-adv-x="1000" />
<glyph glyph-name="arrow-right" unicode="&#xe800;" d="M641 386l-182 187 50 50 264-273-264-273-50 50 182 187h-414v68h414z" horiz-adv-x="1000" />
<glyph glyph-name="behance-line" unicode="&#xe801;" d="M314 391c45 0 82 36 82 82s-37 86-82 86h-187v-168h187z m41-82h-228v-168h228c45 0 81 36 81 82s-36 86-81 86z m86 59c77-45 105-150 59-227-32-50-86-82-141-82h-318v582h273c91 0 168-73 168-168-5-37-18-73-41-105z m205 232h227v-64h-227v64z m313-354h-313v-10c0-63 50-113 113-113 41 0 82 23 100 63h91c-27-104-136-168-245-136-87 23-146 100-146 191v64c0 109 91 195 200 195 105 0 191-86 196-195v-59z m-86 81c-18 59-82 96-141 78-36-9-68-41-77-78h218z" horiz-adv-x="1000" />
<glyph glyph-name="dribbble-line" unicode="&#xe803;" d="M500 709c-200 0-359-159-359-359s159-359 359-359c200 0 359 159 359 359s-159 359-359 359z m236-163c46-55 69-123 69-191-9 0-114 22-214 9-5 4-5 9-5 18-4 14-13 32-18 45 114 41 164 109 168 119l0 0z m-236 113c77 0 150-27 205-77-5-9-50-68-159-109-50 91-105 168-114 182 18 0 45 4 68 4z m-132-32c41-54 82-113 114-177-146-36-273-36-286-36 22 95 86 172 172 213z m-177-277v9c14 0 164-4 314 46 9-19 18-37 22-55-4 0-9-4-13-4-150-50-237-191-241-200-55 54-82 127-82 204z m309-309c-68 0-136 23-186 64 4 9 68 131 241 191 0 0 0 0 0 0 27-78 50-155 63-232-36-14-77-23-118-23z m173 55c-5 18-18 109-59 218 95 13 182-9 191-14-14-82-64-159-132-204l0 0z" horiz-adv-x="1000" />
<glyph glyph-name="instagram-line" unicode="&#xe806;" d="M500 473c-68 0-123-55-123-123s55-123 123-123 123 55 123 123-55 123-123 123z m0 82c114 0 205-91 205-205s-91-204-205-204-204 90-204 204 90 205 204 205z m264 9c0-28-23-50-50-50-28 0-50 22-50 50s22 50 50 50c27 4 50-23 50-50z m-264 113c-100 0-118 0-164-4-31 0-54-5-72-14-18-4-32-13-46-27-13-14-22-27-27-46-9-18-14-40-14-72 0-46-4-59-4-164 0-100 0-118 4-164 0-31 5-54 14-72 9-18 14-32 27-46 14-13 28-22 46-27 18-9 41-14 72-14 46 0 60-4 164-4 100 0 118 0 164 4 32 0 54 5 72 14 19 5 32 18 46 27 14 14 23 28 27 46 9 18 14 41 14 72 0 46 4 60 4 164 0 100 0 118-4 164 0 32-5 54-14 72-4 19-18 32-27 46-14 14-27 23-46 27-18 9-40 14-72 14-46 4-59 4-164 4z m0 82c109 0 127 0 168-4 46 0 73-9 100-19 28-9 50-22 73-45 23-18 36-45 45-73 10-27 19-54 19-100 0-45 4-59 4-168s0-127-4-168c0-46-9-73-19-100-9-27-27-50-45-73-23-23-45-36-73-45-27-10-54-19-100-19-45 0-59-4-168-4s-127 0-168 4c-46 0-73 9-100 19-27 9-50 27-73 45-23 23-36 46-45 73-9 27-18 54-18 100-5 45-5 59-5 168 0 109 0 127 5 168 0 46 9 73 18 100 9 28 27 50 45 73 18 23 46 36 73 45 27 10 54 19 100 19 41 4 59 4 168 4z" horiz-adv-x="1000" />
<glyph glyph-name="linkedin-fill" unicode="&#xe807;" d="M786 64h-122v191c0 45 0 104-64 104-64 0-73-50-73-100v-191h-118v382h118v-54h0c19 31 55 63 114 63 123 0 145-82 145-186l0-209 0 0z m-513 441c-41 0-68 31-68 72 0 0 0 0 0 0 0 41 31 69 68 69s73-32 73-69c0-41-32-72-73-72z m59-441h-118v386h122l-4-386 0 0z m518 695h-700c-32 0-59-27-59-59 0 0 0 0 0 0v-700c0-32 27-59 59-59h696c31 0 59 27 59 59v700c4 32-23 59-55 59 0 0 0 0 0 0z" horiz-adv-x="1000" />
<glyph glyph-name="profile-fill" unicode="&#xe809;" d="M91 677c0 23 18 41 41 41h736c23 0 41-18 41-41v-654c0-23-18-41-41-41h-736c-23 0-41 18-41 41 0 0 0 654 0 654z m164-450v-81h491v81h-491z m0 328v-246h245v246h-245z m327 0v-82h164v82h-164z m0-164v-82h164v82h-164z m-246 82h82v-82h-82v82z" horiz-adv-x="1000" />
<glyph glyph-name="smile-fill" unicode="&#xe80a;" d="M500-59c-227 0-409 182-409 409s182 409 409 409 409-182 409-409-182-409-409-409z m-204 409c0-114 90-204 204-204s205 90 205 204h-82c0-68-55-123-123-123s-123 55-123 123h-81z" horiz-adv-x="1000" />
<glyph glyph-name="twitter-line" unicode="&#xe80b;" d="M673 636c-73 0-127-59-127-127l0-68c0-14-14-27-28-27 0 0 0 0-4 0l-73 9c-91 13-177 54-259 123-27-146 27-250 150-328l77-45c14-9 18-23 9-37 0-4-4-4-4-9l-73-50c41-4 82 0 114 5 209 41 350 200 350 459-5 18-46 95-132 95z m-218-127c0 118 100 214 222 214 55 0 109-23 150-64 32 0 59-9 119 27-14-72-23-104-55-145 0-341-209-505-418-546-146-27-355 19-414 82 32 5 155 14 227 69-59 40-304 181-145 568 77-87 150-146 227-178 50-22 64-22 87-27l0 0z" horiz-adv-x="1000" />
<glyph glyph-name="youtube-line" unicode="&#xe80c;" d="M886 605c-4 13-13 27-27 31-23 5-132 19-359 19s-336-14-359-23c-9 0-23-14-27-27-5-23-18-114-18-255s13-232 18-254c4-14 13-28 27-32 23-5 132-23 359-23s336 14 359 18c14 5 23 14 27 32 5 23 19 114 19 255s-14 236-19 259l0 0z m78 13c18-86 18-268 18-268s0-182-23-268c-13-46-50-87-95-100-82-23-368-23-368-23s-287 0-369 23c-45 13-81 50-95 100-18 86-18 268-18 268s0 182 22 268c14 46 50 87 96 100 82 18 368 18 368 18s286 0 368-22c46-14 82-50 96-96z m-555-432v328l282-164-282-164 0 0z" horiz-adv-x="1000" />
<glyph glyph-name="quote" unicode="&#xe80d;" d="M218-18c-113 0-209 86-209 236 0 218 109 382 196 487 9 9 22 13 31 13h46c18 0 27-13 18-27-45-95-82-191-82-314 114 0 205-86 205-195s-87-200-205-200z m568 0c-113 0-209 86-209 236 0 218 109 382 196 487 9 9 18 13 32 13h45c18 0 27-13 18-27-45-95-82-191-82-314 114 0 205-86 205-195s-91-200-205-200z" horiz-adv-x="1000" />
<glyph glyph-name="mail-fill" unicode="&#xe80e;" d="M91 759h809c23 0 50-18 50-50v-723c0-22-18-50-50-50h-809c-23 5-45 23-45 55v727c0 23 18 41 45 41z m405-391l-291 246-59-64 350-295 340 295-59 68-281-250 0 0 0 0z" horiz-adv-x="1000" />
<glyph glyph-name="codepen-line" unicode="&#xe80f;" d="M686 300l-145-95v-146l255 168-110 73z m-77 50l-109 73-109-73 109-73 109 73z m218 46l-68-46 68-45v91z m-31 77l-255 168v-145l145-96 110 73z m-482-73l145 96v145l-254-168 109-73z m-109-173l254-168v146l-145 95c0 0-109-73-109-73z m-32 78l68 45-68 46v-91z m-82 168c0 13 9 27 18 32l368 245c14 9 32 9 46 0l368-245c9-5 18-19 18-32v-246c0-13-9-27-18-31l-368-246c-14-9-32-9-46 0l-368 246c-9 4-18 18-18 31v246z" horiz-adv-x="1000" />
<glyph glyph-name="facebook-line" unicode="&#xe810;" d="M518 414h187l-23-82h-168v-378h-78v378h-168v82h168v77c0 73 10 100 23 127 14 28 37 50 64 64 27 14 54 23 127 23 23 0 41 0 59-5v-77h-59c-54 0-73-5-91-14-13-4-23-18-27-27-9-18-14-36-14-91v-77z" horiz-adv-x="1000" />
<glyph glyph-name="github-line" unicode="&#xe811;" d="M264 86c-14 10-23 19-37 32-4 9-13 18-18 23-18 23-32 36-45 41-23 9-32 32-28 54 10 23 32 32 55 28 32-9 55-32 82-68-5 4 13-19 18-23 9-9 14-14 18-18 9-5 23-9 50-5 0 14 5 32 9 46-127 27-195 109-195 263 0 50 13 96 45 137-9 40-9 86 9 136 5 14 14 23 28 23 4 0 4 0 9 0 32 4 82-9 141-46 36 9 72 14 113 14 37 0 78-5 114-14 64 41 109 50 141 46 4 0 4 0 9 0 14-5 23-14 27-23 18-50 23-96 14-132 27-41 45-86 45-136 0-155-68-237-195-268 4-19 9-37 9-60 0-36 0-77 0-113 23-5 36-28 32-50-5-19-18-28-32-32-46-9-82 23-82 64l0 18 0 27c0 27 0 55 0 82 0 27-9 50-18 54-18 14-18 41-5 60 9 9 19 13 28 13 122 14 181 64 181 196 0 41-13 72-36 100-9 13-14 27-9 45 9 18 9 41 5 68l0 0c-19-4-46-18-78-41-18 0-32-4-41 0-36 9-72 14-109 14-36 0-72-5-109-14-9-4-23 0-32 5-31 23-59 36-81 41-5-27 0-50 4-68 5-14 5-32-9-46-23-23-36-59-36-100 0-132 59-182 181-195 23-5 41-23 37-46 0-9-5-18-14-27-9-9-18-32-18-59v-132c0-41-36-73-82-64-23 5-36 28-32 50 5 19 14 32 32 32v41c-41 5-73 9-95 27l0 0z" horiz-adv-x="1000" />
<glyph glyph-name="linkedin-line" unicode="&#xe812;" d="M491 468c36 37 86 64 141 64 123 0 218-100 218-218v-300h-77v300c0 77-64 141-141 141s-141-64-141-141v-300h-82v500h82v-46z m-282 118c-32 0-59 28-59 60s27 59 59 59 59-28 59-59-27-60-59-60l0 0z m-41-77h82v-500h-82v500z" horiz-adv-x="1000" />
<glyph glyph-name="yelp-line" unicode="&#xe82c;" d="M411 731c-2 17-4 54-49 62-45 8-159-25-202-50-18-10-32-26-36-44-3-13-1-26 7-37 18-27 169-275 193-300 16-17 38-24 59-19 20 5 36 21 43 43 10 34-10 267-15 345z m-35-331c-1-2-3-6-5-6-3-1-6 1-9 4-19 19-166 259-186 291 1 2 4 6 9 9 40 23 140 49 168 44 2 0 3-1 4-1 1-2 1-9 2-13 2-40 22-298 17-328z m-278 0c-11-6-26-19-33-48-10-39-14-110-2-156 8-31 36-49 65-43 14 4 160 50 189 59 26 9 43 34 41 64-2 26-15 45-38 54-96 40-144 60-180 73-14 5-29 4-42-3z m24-46c0 0 1 0 1 0 37-13 89-35 177-72 3-1 5-2 6-9 0-6-1-10-4-11-66-21-175-55-185-58-2 0-3 4-4 5-8 32-7 94 2 131 3 9 6 13 7 14z m528 171c-15 15-34 22-51 21-15-1-27-7-36-18-4-4-37-48-64-84-62-85-63-91-64-98-3-21 4-42 20-57 15-15 37-21 58-17 7 1 183 46 185 47 20 5 29 17 34 27 8 16 8 37-1 59-15 40-51 92-81 120l0 0z m36-155c-1 0-1-1-2-1-9-2-172-44-181-46-5-1-9 0-12 3-3 3-4 6-5 9 15 25 106 146 116 159 2 0 7-2 12-7 25-22 56-69 69-101 3-9 3-14 3-16l0 0z m5-176c-55 19-111 37-166 55-27 10-55 0-71-25-15-21-15-46-3-67 43-70 72-115 82-133 17-27 34-55 66-55 20 0 36 12 47 21 32 26 70 74 87 110 11 23 13 42 6 58-9 23-34 31-48 36l0 0z m-5-71c-14-30-47-71-73-93-8-7-12-8-14-9-6 4-79 124-103 163-2 3-3 6 1 11 3 4 5 6 8 6 1 0 3-1 4-1 55-18 110-37 165-55 9-3 15-5 17-7 0-2-1-7-5-15l0 0z m-306 89c-25 7-47 0-63-19-96-113-111-132-125-152-13-16-13-32-10-42 4-18 18-35 44-49 24-13 51-24 82-34 19-5 40-10 59-10 39 0 60 23 60 56 0 46 0 65 0 193 0 27-19 50-47 57l0 0z m-5-254c-3-1-15-3-52 8-27 8-51 18-71 29-13 8-18 13-19 15 9 15 107 130 124 149 2 3 3 5 10 3 5-1 8-4 8-7 0-203 0-194 0-197z" horiz-adv-x="778" />
</font>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 9.1 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -0,0 +1,10 @@
<svg xmlns="http://www.w3.org/2000/svg" width="82" height="51" viewBox="0 0 82 51">
<g fill="none" fill-rule="evenodd" transform="translate(1 1)">
<rect width="80.291" height="49.02" fill="#E0E0E0" fill-opacity="0" stroke="#FFF" stroke-width=".845" rx="3.381"/>
<path fill="#FFF" d="M3.38 0h73.53a3.38 3.38 0 0 1 3.38 3.38V19.44H0V3.38A3.38 3.38 0 0 1 3.38 0z"/>
<text fill="#000" font-family="IBMPlexSans, IBM Plex Sans" font-size="10.142">
<tspan x="6.761" y="13.381">Design &amp; Code</tspan>
</text>
<path fill="#FFF" d="M42.818 36.858h-1.961l-1.507-2.551h-.867v2.551h-1.825v-7.764h3.194c.765 0 1.404.255 1.94.776a2.52 2.52 0 0 1 .798 1.886c0 .943-.593 1.808-1.471 2.251l1.7 2.851zm-2.966-6.1h-1.369v1.996h1.37c.502 0 .912-.432.912-.998 0-.566-.41-.998-.913-.998zm7.499 1.076v-.522h1.711v5.546h-1.711v-.52c-.399.454-.97.675-1.7.675-.753 0-1.391-.277-1.928-.843-.536-.565-.798-1.264-.798-2.085s.262-1.509.798-2.074c.536-.566 1.175-.854 1.928-.854.73 0 1.3.222 1.7.676v.001zm-2.339 3.238c.25.244.582.366.981.366.4 0 .73-.122.981-.366.251-.243.377-.576.377-.987 0-.41-.126-.743-.377-.987-.25-.244-.582-.366-.98-.366-.4 0-.73.122-.982.366-.25.244-.376.577-.376.987 0 .41.125.744.376.987zm9.324-3.239v-2.74h1.71v7.765h-1.71v-.52c-.4.454-.97.675-1.7.675-.753 0-1.391-.277-1.928-.843-.536-.565-.798-1.264-.798-2.085s.262-1.509.798-2.074c.536-.566 1.175-.854 1.928-.854.73 0 1.3.222 1.7.676zm-2.339 3.24c.25.243.582.365.981.365.4 0 .73-.122.981-.366.251-.243.377-.576.377-.987 0-.41-.126-.743-.377-.987-.25-.244-.582-.366-.98-.366-.4 0-.73.122-.982.366-.25.244-.376.577-.376.987 0 .41.125.744.376.987zm6.757-4.537a1.048 1.048 0 0 1-1.449 0 .979.979 0 0 1 0-1.409c.41-.4 1.05-.4 1.45 0a.96.96 0 0 1 0 1.409zm.137 6.322h-1.712v-5.546h1.712v5.546zm4.475-5.546v1.597H62.19v1.964c0 .443.343.52 1.175.477v1.508c-1.084.111-1.837.011-2.259-.3-.422-.321-.627-.875-.627-1.685v-1.964h-.913v-1.597h.913v-1.054l1.71-.499v1.553h1.176zm3.483 3.394l1.072-3.394h1.825l-1.95 5.38c-.64 1.741-1.643 2.462-3.252 2.385v-1.553c.787 0 1.164-.244 1.426-.921l-2.27-5.29h1.883l1.266 3.393zM9.423 24.51h12.194c.536 0 .971.435.971.971v.175a.972.972 0 0 1-.971.971H9.423a.972.972 0 0 1-.971-.971v-.175c0-.536.435-.971.971-.971zm0 3.246h16.5c.536 0 .971.435.971.972v.174a.972.972 0 0 1-.971.972h-16.5a.972.972 0 0 1-.971-.972v-.174c0-.537.435-.972.971-.972zm0 3.247h16.5c.536 0 .971.435.971.971v.175a.972.972 0 0 1-.971.971h-16.5a.972.972 0 0 1-.971-.971v-.175c0-.536.435-.971.971-.971zm0 3.247h10.759c.536 0 .971.435.971.971v.175a.972.972 0 0 1-.971.971H9.423a.972.972 0 0 1-.971-.971v-.175c0-.536.435-.971.971-.971zm0 3.247h12.912c.536 0 .971.434.971.971v.175a.972.972 0 0 1-.971.971H9.423a.972.972 0 0 1-.971-.971v-.175c0-.537.435-.971.971-.971zm0 3.246h15.064c.537 0 .972.435.972.972v.174a.972.972 0 0 1-.972.972H9.423a.972.972 0 0 1-.971-.972v-.174c0-.537.435-.972.971-.972z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

View File

@ -0,0 +1,10 @@
<svg xmlns="http://www.w3.org/2000/svg" width="156" height="53" viewBox="0 0 156 53">
<g fill="none" fill-rule="evenodd" font-size="32.941" letter-spacing="-1.167">
<text fill="#E93E34" font-family="Inter-Black, Inter" font-weight="700" transform="translate(0 -7)">
<tspan x="0" y="32">ANDREAS</tspan>
</text>
<text fill="#000" font-family="AutumnMoon, Autumn Moon" transform="translate(0 -7)">
<tspan x="37.351" y="53.5">Ellure</tspan>
</text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 521 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

View File

@ -0,0 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="14" viewBox="0 0 16 14">
<g fill="none" fill-rule="evenodd">
<path d="M-1-2h18v18H-1z"/>
<path fill="#FFF" fill-rule="nonzero" d="M1.25.25h13.5a.75.75 0 0 1 .75.75v12a.75.75 0 0 1-.75.75H1.25A.75.75 0 0 1 .5 13V1a.75.75 0 0 1 .75-.75zm6.795 6.512L3.236 2.68l-.971 1.143 5.79 4.916 5.686-4.92-.982-1.135-4.713 4.08h-.001z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 419 B

View File

@ -0,0 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<g fill="none" fill-rule="evenodd">
<path d="M-1-1h18v18H-1z"/>
<path fill="#FFF" fill-rule="nonzero" d="M8 15.5a7.5 7.5 0 1 1 0-15 7.5 7.5 0 0 1 0 15zM4.25 8a3.75 3.75 0 0 0 7.5 0h-1.5a2.25 2.25 0 1 1-4.5 0h-1.5z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 337 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 95 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 344 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 78 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 258 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Some files were not shown because too many files have changed in this diff Show More