Added Buttons (#130)

* Added Teespring

* Add Xing

* Fix Lint

* Added Keybase
Fixed Image

* Added OnlyFans

* Added Session

* Add Threema

* Fix Docker Image

* Add Streamlabs

* Add Privatebin

* Added Missing Razzles
This commit is contained in:
Kieran 2022-06-15 00:31:36 +01:00 committed by GitHub
parent c6fb101a3d
commit 4a7a15e85b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 420 additions and 2 deletions

View File

@ -79,6 +79,14 @@ services:
- INSTANTGAMING=https://www.instant-gaming.com/
- TRAKT=https://trakt.tv
- CASHAPP=https://cash.app/
- TEESPRING=https://teespring.com/
- XING=https://www.xing.com/en
- KEYBASE=https://keybase.io/
- ONLYFANS=https://onlyfans.com/
- SESSION=https://getsession.org/
- THREEMA=https://threema.ch/en/
- STREAMLABS=https://streamlabs.com/
- PRIVATEBIN=https://privatebin.net/
- OG_SITE_NAME=Techno Tim Live (OG)
- OG_TITLE=Techno Tim (OG)
- OG_DESCRIPTION=Techno Tim Link page (OG)

View File

@ -366,5 +366,54 @@ button {
/* CashApp */
.button.button-cashapp {
color: #000;
background-color: #f8f9f9;
}
background-color: #fff;
}
/* Teespring */
.button.button-teespring {
color: #eb4373;
background-color: #2f2464;
}
/* Xing */
.button.button-xing {
color: #0b6162;
background-color: #c6f16d;
}
/* Keybase */
.button.button-keybase {
color: #fff;
background-color: #3663ea;
}
/* Onlyfans */
.button.button-onlyfans {
color: #008ccf;
background-color: #fff;
}
/* Session */
.button.button-session {
color: #04f383;
background-color: #000;
}
/* Threema */
.button.button-threema {
color: #000;
background-color: #fff;
}
/* Streamlabs */
.button.button-streamlabs {
color: #000;
background-color: #88f4d4;
}
/* Privatebin */
.button.button-privatebin {
color: #f19d13;
background-color: #000;
}

View File

@ -52,6 +52,14 @@ import instantGamingLogo from '../../icons/instantgaming.svg';
import ghostLogo from '../../icons/ghost.svg';
import traktLogo from '../../icons/trakt.svg';
import cashappLogo from '../../icons/cashapp.svg';
import teespringLogo from '../../icons/teespring.svg';
import xingLogo from '../../icons/xing.svg';
import keybaseLogo from '../../icons/keybase.svg';
import onlyfansLogo from '../../icons/onlyfans.svg';
import sessionLogo from '../../icons/session.svg';
import threemaLogo from '../../icons/threema.svg';
import streamlabsLogo from '../../icons/streamlabs.svg';
import privatebinLogo from '../../icons/privatebin.svg';
function Home(props) {
let order = [];
@ -568,6 +576,78 @@ function Home(props) {
order={buttonOrder('CASHAPP')}
/>
)}
{runtimeConfig.TEESPRING && (
<Button
name="teespring"
href={runtimeConfig.TEESPRING}
displayName="Teespring"
logo={teespringLogo}
order={buttonOrder('TEESPRING')}
/>
)}
{runtimeConfig.XING && (
<Button
name="xing"
href={runtimeConfig.XING}
displayName="Xing"
logo={xingLogo}
order={buttonOrder('XING')}
/>
)}
{runtimeConfig.KEYBASE && (
<Button
name="keybase"
href={runtimeConfig.KEYBASE}
displayName="Keybase"
logo={keybaseLogo}
order={buttonOrder('KEYBASE')}
/>
)}
{runtimeConfig.ONLYFANS && (
<Button
name="onlyfans"
href={runtimeConfig.ONLYFANS}
displayName="OnlyFans"
logo={onlyfansLogo}
order={buttonOrder('ONLYFANS')}
/>
)}
{runtimeConfig.SESSION && (
<Button
name="session"
href={runtimeConfig.SESSION}
displayName="Session"
logo={sessionLogo}
order={buttonOrder('SESSION')}
/>
)}
{runtimeConfig.THREEMA && (
<Button
name="threema"
href={runtimeConfig.THREEMA}
displayName="Threema"
logo={threemaLogo}
order={buttonOrder('THREEMA')}
/>
)}
{runtimeConfig.STREAMLABS && (
<Button
name="streamlabs"
href={runtimeConfig.STREAMLABS}
displayName="Streamlabs"
logo={streamlabsLogo}
order={buttonOrder('STREAMLABS')}
/>
)}
{runtimeConfig.PRIVATEBIN && (
<Button
name="privatebin"
href={runtimeConfig.PRIVATEBIN}
displayName="Private Bin"
logo={privatebinLogo}
order={buttonOrder('PRIVATEBIN')}
/>
)}
</Sort>
<div>
<p className="footer">{runtimeConfig.FOOTER}</p>

View File

@ -93,6 +93,14 @@ export const runtimeConfig =
GHOST: window?.env?.GHOST,
TRAKT: window?.env?.TRAKT,
CASHAPP: window?.env?.CASHAPP,
TEESPRING: window?.env?.TEESPRING,
XING: window?.env?.XING,
KEYBASE: window?.env?.KEYBASE,
ONLYFANS: window?.env?.ONLYFANS,
SESSION: window?.env?.SESSION,
THREEMA: window?.env?.THREEMA,
STREAMLABS: window?.env?.STREAMLABS,
PRIVATEBIN: window?.env?.PRIVATEBIN,
MATOMO_URL: window?.env?.MATOMO_URL,
MATOMO_SITE_ID: window?.env?.MATOMO_SITE_ID,
}
@ -335,6 +343,28 @@ export const runtimeConfig =
CASHAPP: nodeIsProduction
? process.env.CASHAPP
: process.env.RAZZLE_CASHAPP,
TEESPRING: nodeIsProduction
? process.env.TEESPRING
: process.env.RAZZLE_TEESPRING,
XING: nodeIsProduction ? process.env.XING : process.env.RAZZLE_XING,
KEYBASE: nodeIsProduction
? process.env.KEYBASE
: process.env.RAZZLE_KEYBASE,
ONLYFANS: nodeIsProduction
? process.env.KEYBASE
: process.env.RAZZLE_ONLYFANS,
SESSION: nodeIsProduction
? process.env.KEYBASE
: process.env.RAZZLE_SESSION,
THREEMA: nodeIsProduction
? process.env.KEYBASE
: process.env.RAZZLE_THREEMA,
STREAMLABS: nodeIsProduction
? process.env.KEYBASE
: process.env.RAZZLE_STREAMLABS,
PRIVATEBIN: nodeIsProduction
? process.env.PRIVATEBIN
: process.env.RAZZLE_PRIVATEBIN,
MATOMO_URL: nodeIsProduction
? process.env.MATOMO_URL
: process.env.RAZZLE_MATOMO_URL,

91
src/icons/keybase.svg Normal file
View File

@ -0,0 +1,91 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 223.33333 204.89906"
height="204.89906"
width="223.33333"
xml:space="preserve"
id="svg4504"
version="1.1"><metadata
id="metadata4510"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs4508"><clipPath
id="clipPath4520"
clipPathUnits="userSpaceOnUse"><path
id="path4518"
d="M 0,600 H 600 V 0 H 0 Z" /></clipPath></defs><g
transform="matrix(1.3333333,0,0,-1.3333333,-288.33333,502.44932)"
id="g4512"><g
id="g4514"><g
clip-path="url(#clipPath4520)"
id="g4516"><g
transform="translate(300,362.4287)"
id="g4522"><path
id="path4524"
style="fill:#33a0ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 0,0 c -44.183,0 -80,-35.817 -80,-80 0,-15.254 4.271,-29.509 11.679,-41.639 l 20.9,22.191 105.783,-0.661 -0.766,-35.407 C 71.467,-121.129 80,-101.562 80,-80 80,-35.817 44.183,0 0,0" /></g><g
transform="translate(263.8363,339.6274)"
id="g4526"><path
id="path4528"
style="fill:#3dcc8e;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 0,0 c -3.899,0.239 -6.887,3.608 -6.66,7.511 l 0.529,8.547 c 0.232,3.739 3.35,6.669 7.097,6.669 0.14,0 0.281,-0.004 0.422,-0.013 L 9.93,22.185 c 1.89,-0.115 3.627,-0.962 4.885,-2.386 1.26,-1.424 1.888,-3.256 1.767,-5.156 L 16.058,6.129 C 16.027,5.637 15.928,5.247 15.867,5.034 L 15.563,3.547 9.942,-0.615 Z" /></g><g
transform="translate(264.8025,366.6468)"
id="g4530"><path
id="path4532"
style="fill:#282828;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 0,0 c -6.01,0 -11.009,-4.698 -11.381,-10.696 l -0.529,-8.532 -10e-4,-0.016 -0.001,-0.015 c -0.364,-6.259 4.43,-11.662 10.686,-12.045 l 8.375,-0.518 3.123,-0.193 2.515,1.862 3.042,2.251 2.643,1.957 0.607,2.967 c 0.12,0.455 0.25,1.068 0.297,1.818 l 0.524,8.522 c 0.192,3.045 -0.817,5.98 -2.839,8.266 -2.013,2.278 -4.8,3.638 -7.843,3.823 L 0.7,-0.021 H 0.688 L 0.675,-0.02 C 0.451,-0.007 0.224,0 0,0 m 6.378,-18.621 0.314,5.075 -5.076,0.314 -0.315,-5.076 5.077,-0.313 M 0,-8.585 c 0.056,0 0.113,-0.002 0.17,-0.005 l 8.528,-0.529 c 0.747,-0.045 1.436,-0.38 1.933,-0.943 0.5,-0.565 0.749,-1.29 0.701,-2.041 l -0.525,-8.524 c -0.008,-0.132 -0.061,-0.248 -0.086,-0.374 l -3.042,-2.252 -8.38,0.518 c -1.546,0.095 -2.73,1.43 -2.64,2.977 l 0.529,8.531 c 0.092,1.489 1.327,2.642 2.812,2.642" /></g><g
transform="translate(300,320.9623)"
id="g4534"><path
id="path4536"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 0,0 c -33.402,0 -60.48,-27.078 -60.48,-60.48 0,-12.421 3.746,-23.965 10.167,-33.569 H 52.742 c 5.424,9.907 7.738,21.637 7.738,33.569 C 60.48,-29.566 33.402,0 0,0" /></g><g
transform="translate(299.9999,325.255)"
id="g4538"><path
id="path4540"
style="fill:#282827;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 0,0 c -35.716,0 -64.773,-29.057 -64.773,-64.773 0,-12.28 3.436,-23.774 9.396,-33.569 h 10.347 c -7.005,9.372 -11.157,20.995 -11.157,33.569 0,30.982 25.205,56.188 56.187,56.188 14.716,0 28.811,-6.161 39.688,-17.348 10.486,-10.783 16.5,-24.94 16.5,-38.84 0,-9.517 -1.572,-22.45 -8.405,-33.569 h 9.799 c 4.729,9.519 7.191,20.9 7.191,33.569 0,16.116 -6.899,32.454 -18.929,44.826 C 33.336,-7.084 17.055,0 0,0" /></g><g
transform="translate(287.7891,242.9254)"
id="g4542"><path
id="path4544"
style="fill:#282827;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 0,0 c 0,-3.207 -2.599,-5.806 -5.806,-5.806 -3.207,0 -5.806,2.599 -5.806,5.806 0,3.207 2.599,5.806 5.806,5.806 C -2.599,5.806 0,3.207 0,0" /></g><g
transform="translate(323.8228,242.9254)"
id="g4546"><path
id="path4548"
style="fill:#282827;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 0,0 c 0,-3.207 -2.599,-5.806 -5.806,-5.806 -3.207,0 -5.806,2.599 -5.806,5.806 0,3.207 2.599,5.806 5.806,5.806 C -2.599,5.806 0,3.207 0,0" /></g><g
transform="translate(234.0117,245.2287)"
id="g4550"><path
id="path4552"
style="fill:#ff6f21;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="M 0,0 32.228,34.18 24.471,9.861 c 25.161,18.31 51.575,15.415 70.174,9.953 19.741,-5.796 33.562,11.639 20.032,30.238 C 108.248,58.891 99.429,66.23 89.412,70.681 63.139,82.352 36.724,75.547 18.905,57.547 0.029,38.479 0,17.33 0,0" /></g><g
transform="translate(296.9716,317.3886)"
id="g4554"><path
id="path4556"
style="fill:#282827;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 0,0 c -3.741,0 -7.456,-0.373 -11.107,-1.124 -11.135,-2.29 -21.473,-7.999 -29.897,-16.509 -13.993,-14.135 -16.901,-29.306 -17.505,-43.549 l 37.603,39.881 -9.955,-31.208 c 18.708,9.781 40.099,11.228 63.755,4.282 7.528,-2.21 14.351,-0.535 17.808,4.371 3.551,5.041 2.633,12.227 -2.456,19.223 -6.081,8.36 -14.44,15.189 -23.537,19.231 C 16.641,-1.818 8.259,0 0,0 m -67.252,-82.97 v 10.81 c 0,17.917 0,40.215 20.146,60.567 9.62,9.717 21.47,16.245 34.269,18.878 13.474,2.772 27.662,1.098 41.032,-4.841 10.453,-4.644 20.04,-12.467 26.994,-22.026 7.243,-9.958 8.213,-21.154 2.531,-29.218 -5.555,-7.885 -16.247,-10.892 -27.245,-7.664 -25.364,7.448 -47.718,4.317 -66.438,-9.306 l -10.6,-7.713 6.005,18.825 z" /></g><g
transform="translate(315.4395,324.1835)"
id="g4558"><path
id="path4560"
style="fill:#ff6f21;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 0,0 c -3.821,-9.956 -14.901,-15.515 -25.167,-12.625 -11.566,3.257 -17.673,12.552 -16.207,24.342 1.459,11.725 9.382,22.005 18.515,34.677 -7.502,-15.969 -1.129,-17.465 0.887,-17.385 1.992,0.079 4.9,-0.261 9.039,-1.634 C -1.656,23.632 4.305,11.218 0,0" /></g><g
transform="translate(285.8294,353.465)"
id="g4562"><path
id="path4564"
style="fill:#282827;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 0,0 c -3.962,-6.212 -6.744,-11.986 -7.504,-18.094 -1.203,-9.673 3.698,-17.03 13.111,-19.68 8.172,-2.301 16.954,2.105 19.996,10.03 1.649,4.298 1.477,8.947 -0.484,13.091 -1.963,4.148 -5.441,7.228 -9.794,8.672 -3.82,1.268 -6.198,1.469 -7.516,1.419 C 4.85,-4.678 2.119,-3.3 0.509,-0.872 0.323,-0.592 0.153,-0.302 0,0 m 9.977,-46.963 c -2.226,0 -4.475,0.299 -6.697,0.925 -6.666,1.877 -11.993,5.587 -15.404,10.729 -3.401,5.126 -4.749,11.445 -3.9,18.275 1.5,12.057 8.931,22.329 17.535,34.223 0.58,0.802 1.166,1.612 1.758,2.433 l 7.367,-4.335 C 7,7.546 7.417,4.68 7.608,4.026 c 2.925,0.089 6.431,-0.534 10.421,-1.858 6.601,-2.191 11.875,-6.86 14.85,-13.149 2.974,-6.284 3.236,-13.33 0.739,-19.839 C 29.83,-40.689 20.172,-46.963 9.977,-46.963" /></g><g
transform="translate(304.5916,286.1613)"
id="g4566"><path
id="path4568"
style="fill:#3dcc8e;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 0,0 c -1.503,0 -2.911,0.668 -3.861,1.832 l -2.888,3.537 c -1.674,2.05 -1.434,5.049 0.501,6.811 -0.625,0.306 -1.184,0.747 -1.638,1.303 l -0.659,0.807 c -1.734,2.123 -1.417,5.26 0.705,6.993 l 0.415,0.339 -4.23,5.192 c -1.881,2.304 -1.536,5.713 0.77,7.597 0.967,0.788 2.179,1.219 3.417,1.219 1.626,0 3.151,-0.722 4.182,-1.982 L 14.757,11.441 C 16.635,9.14 16.29,5.731 13.984,3.847 13.348,3.327 12.586,2.953 11.784,2.768 11.386,2.676 10.976,2.63 10.567,2.63 v 0 C 9.161,2.63 7.832,3.169 6.831,4.128 L 3.15,1.123 C 2.263,0.399 1.144,0 0,0" /></g><g
transform="translate(304.0229,322.0345)"
id="g4570"><path
id="path4572"
style="fill:#282828;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 0,0 c -1.701,2.078 -4.216,3.269 -6.899,3.269 -2.044,0 -4.044,-0.712 -5.631,-2.004 -3.814,-3.116 -4.382,-8.741 -1.275,-12.547 l 2.35,-2.885 c -1.726,-2.968 -1.539,-6.824 0.758,-9.637 l 0.442,-0.542 c -1.039,-2.741 -0.63,-5.95 1.354,-8.379 l 2.888,-3.538 c 1.619,-1.984 4.018,-3.122 6.581,-3.122 1.952,0 3.86,0.679 5.372,1.914 l 1.73,1.412 c 1.082,-0.455 2.257,-0.697 3.466,-0.697 0.674,0 1.349,0.077 2.006,0.229 1.324,0.305 2.58,0.921 3.633,1.781 3.805,3.109 4.373,8.734 1.267,12.54 L 0.017,-0.021 Z m -6.899,-3.755 c 0.547,0 1.09,-0.238 1.464,-0.696 L 12.6,-26.647 c 0.66,-0.809 0.539,-1.999 -0.269,-2.659 -0.233,-0.19 -0.496,-0.314 -0.769,-0.377 -0.14,-0.033 -0.283,-0.049 -0.426,-0.049 -0.548,0 -1.091,0.237 -1.465,0.695 l -1.796,2.213 -6.377,-5.205 c -0.273,-0.224 -0.602,-0.332 -0.93,-0.332 -0.426,0 -0.849,0.185 -1.14,0.541 l -2.888,3.537 c -0.508,0.622 -0.415,1.538 0.207,2.046 l 6.408,5.231 -2.618,3.228 -3.17,-2.59 c -0.26,-0.211 -0.572,-0.314 -0.882,-0.314 -0.404,0 -0.805,0.175 -1.081,0.512 l -0.66,0.809 c -0.509,0.623 -0.417,1.541 0.206,2.05 l 3.133,2.558 -6.447,7.913 c -0.66,0.808 -0.539,1.998 0.269,2.658 0.353,0.287 0.776,0.427 1.196,0.427" /></g></g></g></g></svg>

After

Width:  |  Height:  |  Size: 9.3 KiB

1
src/icons/onlyfans.svg Normal file
View File

@ -0,0 +1 @@
<svg viewBox="-20.62 0.53 820.42 555.49" xmlns="http://www.w3.org/2000/svg" width="2500" height="1650"><path d="M266.82.53c35 0 69.65 6.91 101.98 20.34s61.71 33.11 86.45 57.93c24.75 24.81 44.37 54.27 57.77 86.7a267.919 267.919 0 0 1 20.29 102.27c0 108.09-64.93 205.53-164.51 246.89s-214.2 18.5-290.41-57.93C2.18 380.3-20.62 265.36 20.62 165.5 61.87 65.64 159.04.53 266.82.53zm0 347.4c10.5.01 20.9-2.05 30.61-6.07s18.52-9.93 25.95-17.38 13.31-16.29 17.33-26.02a80.365 80.365 0 0 0 6.06-30.7c0-32.43-19.48-61.66-49.35-74.07s-64.26-5.55-87.12 17.38-29.7 57.41-17.33 87.37 41.53 49.49 73.86 49.49z" fill="#00aeef"/><path d="M566.35 200.96c67.71 19.54 147.63 0 147.63 0-23.19 101.55-96.75 165.15-202.81 172.89a266.766 266.766 0 0 1-40.48 65.86 266.208 266.208 0 0 1-57.62 51.43c-21.6 14.24-45.15 25.25-69.92 32.68s-50.48 11.19-76.33 11.18l79.95-254.81C428.95 18.28 471.08.54 665.98.54H799.8c-22.38 98.88-99.54 174.41-233.44 200.42z" fill="#008ccf"/></svg>

After

Width:  |  Height:  |  Size: 950 B

1
src/icons/privatebin.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="38" width="38" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 38 38" xmlns:dc="http://purl.org/dc/elements/1.1/"><defs><radialGradient id="a" gradientUnits="userSpaceOnUse" cx="261" cy="240" r="341" gradientTransform="matrix(1.3 .000949 -.00102 1.4 -89.2 -86.2)"><stop stop-color="#ff0" offset="0"/><stop stop-color="#fa0" offset="1"/></radialGradient></defs><path stroke-linejoin="round" d="m250 3.16-227 123-0.42 247 227 124 227-123 0.42-247zm-0.711 97.9v0.006c3.78 0 7.6 0.297 11.5 0.875 41.1 6.17 72.2 40.6 66.4 70.5-5.8 29.8-33.3 56-40.1 61.7s37.1 165 37.1 165h-149s46.2-157 36.5-165c-9.7-8.14-41.2-36.9-36.4-68.9 4.81-32.1 37.6-64 74.2-64.1z" transform="matrix(.0709 0 0 .0709 1.4 1.38)" stroke="#000" stroke-linecap="round" stroke-width="10.6" fill="url(#a)"/></svg>

After

Width:  |  Height:  |  Size: 943 B

1
src/icons/session.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1024 1024"><circle cx="512" cy="512.3" r="511.3" fill="#333132"/><path d="M431 574.8c-.8-7.4-6.7-8.2-10.8-10.6-13.6-7.9-27.5-15.4-41.3-23l-22.5-12.3c-8.5-4.7-17.1-9.2-25.6-14.1-10.5-6-21-11.9-31.1-18.6-18.9-12.5-33.8-29.1-46.3-48.1-8.3-12.6-14.8-26.1-19.2-40.4-6.7-21.7-10.8-44.1-7.8-66.8 1.8-14 4.6-28 9.7-41.6 7.8-20.8 19.3-38.8 34.2-54.8 9.8-10.6 21.2-19.1 33.4-26.8 14.7-9.3 30.7-15.4 47.4-19 13.8-3 28.1-4.3 42.2-4.4 89.9-.4 179.7-.3 269.6 0 12.6 0 25.5 1 37.7 4.1 24.3 6.2 45.7 18.2 63 37 11.2 12.2 20.4 25.8 25.8 41.2 7.3 20.7 12.3 42.1 6.7 64.4-2.1 8.5-2.7 17.5-6.1 25.4-4.7 10.9-10.8 21.2-17.2 31.2-8.7 13.5-20.5 24.3-34.4 32.2-10.1 5.7-21 10.2-32 14.3-18.1 6.7-37.2 5-56.1 5.2-17.2.2-34.5 0-51.7.1-1.7 0-3.4 1.2-5.1 1.9 1.3 1.8 2.1 4.3 3.9 5.3 13.5 7.8 27.2 15.4 40.8 22.9 11 6 22.3 11.7 33.2 17.9 15.2 8.5 30.2 17.4 45.3 26.1 19.3 11.1 34.8 26.4 47.8 44.3 9.7 13.3 17.2 27.9 23 43.5 6.1 16.6 9.2 33.8 10.4 51.3.6 9.1-.7 18.5-1.9 27.6-1.2 9.1-2.7 18.4-5.6 27.1-3.3 10.2-7.4 20.2-12.4 29.6-8.4 15.7-19.6 29.4-32.8 41.4-12.7 11.5-26.8 20.6-42.4 27.6-22.9 10.3-46.9 14.4-71.6 14.5-89.7.3-179.4.2-269.1-.1-12.6 0-25.5-1-37.7-3.9-24.5-5.7-45.8-18-63.3-36.4-11.6-12.3-20.2-26.5-26.6-41.9-2.7-6.4-4.1-13.5-5.4-20.4-1.5-8.1-2.8-16.3-3.1-24.5-.6-15.7 2.8-30.9 8.2-45.4 8.2-22 21.7-40.6 40.2-55.2 10-7.9 21.3-13.7 33.1-18.8 16.6-7.2 34-8.1 51.4-8.5 21.9-.5 43.9-.1 65.9-.1 1.9-.1 3.9-.3 6.2-.4zm96.3-342.4c0 .1 0 .1 0 0-48.3.1-96.6-.6-144.9.5-13.5.3-27.4 3.9-40.1 8.7-14.9 5.6-28.1 14.6-39.9 25.8-20.2 19-32.2 42.2-37.2 68.9-3.6 19-1.4 38.1 4.1 56.5 4.1 13.7 10.5 26.4 18.5 38.4 14.8 22.2 35.7 36.7 58.4 49.2 11 6.1 22.2 11.9 33.2 18 13.5 7.5 26.9 15.1 40.4 22.6 13.1 7.3 26.2 14.5 39.2 21.7 9.7 5.3 19.4 10.7 29.1 16.1 2.9 1.6 4.1.2 4.5-2.4.3-2 .3-4 .3-6.1v-58.8c0-19.9.1-39.9 0-59.8 0-6.6 1.7-12.8 7.6-16.1 3.5-2 8.2-2.8 12.4-2.8 50.3-.2 100.7-.2 151-.1 19.8 0 38.3-4.4 55.1-15.1 23.1-14.8 36.3-36.3 40.6-62.9 3.4-20.8-1-40.9-12.4-58.5-17.8-27.5-43.6-43-76.5-43.6-47.8-.8-95.6-.2-143.4-.2zm-30.6 559.7c45.1 0 90.2-.2 135.3.1 18.9.1 36.6-3.9 53.9-11.1 18.4-7.7 33.6-19.8 46.3-34.9 9.1-10.8 16.2-22.9 20.8-36.5 4.2-12.4 7.4-24.7 7.3-37.9-.1-10.3.2-20.5-3.4-30.5-2.6-7.2-3.4-15.2-6.4-22.1-3.9-8.9-8.9-17.3-14-25.5-12.9-20.8-31.9-34.7-52.8-46.4-10.6-5.9-21.2-11.6-31.8-17.5-10.3-5.7-20.4-11.7-30.7-17.4-11.2-6.1-22.5-11.9-33.7-18-16.6-9.1-33.1-18.4-49.8-27.5-4.9-2.7-6.1-1.9-6.4 3.9-.1 2-.1 4.1-.1 6.1v114.5c0 14.8-5.6 20.4-20.4 20.4-47.6.1-95.3-.1-142.9.2-10.5.1-21.1 1.4-31.6 2.8-16.5 2.2-30.5 9.9-42.8 21-17 15.5-27 34.7-29.4 57.5-1.1 10.9-.4 21.7 2.9 32.5 3.7 12.3 9.2 23.4 17.5 33 19.2 22.1 43.4 33.3 72.7 33.3 46.6.1 93 0 139.5 0z" fill="#00f782"/></svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

15
src/icons/streamlabs.svg Normal file
View File

@ -0,0 +1,15 @@
<svg width="188" height="33" viewBox="0 0 188 33" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M55.95 23.265C58.8714 23.265 61.1128 21.905 61.1128 18.9081V18.8577C61.1128 16.3897 58.9217 15.483 57.0329 14.8534C55.5722 14.3498 54.2878 13.9972 54.2878 13.2416V13.1913C54.2878 12.6624 54.7663 12.2595 55.6982 12.2595C56.5041 12.2595 57.5366 12.5869 58.6195 13.1157C58.8714 13.2416 59.0477 13.292 59.3247 13.292C60.1809 13.292 60.8609 12.6372 60.8609 11.781C60.8609 11.1262 60.5083 10.6225 59.9543 10.3455C58.6447 9.69067 57.184 9.31291 55.7737 9.31291C53.0538 9.31291 50.8376 10.8491 50.8376 13.5942V13.6446C50.8376 16.2638 52.9783 17.1452 54.8671 17.6993C56.3529 18.1526 57.6625 18.4296 57.6625 19.2607V19.311C57.6625 19.9155 57.1588 20.3184 56.0507 20.3184C54.9678 20.3184 53.6834 19.9155 52.399 19.1096C52.1976 18.9836 51.9205 18.9081 51.6435 18.9081C50.7872 18.9081 50.1324 19.5629 50.1324 20.4192C50.1324 21.0236 50.4598 21.4769 50.8628 21.7287C52.4998 22.7865 54.2878 23.265 55.95 23.265Z" fill="#09161D"/>
<path d="M68.1691 23.2398C69.0001 23.2398 69.6549 23.139 70.3601 22.862C70.889 22.6605 71.3423 22.1065 71.3423 21.4265C71.3423 20.5451 70.6119 19.8399 69.7557 19.8399C69.6801 19.8399 69.4283 19.8651 69.3024 19.8651C68.4461 19.8651 68.0683 19.437 68.0683 18.5555V12.7883H69.7557C70.6623 12.7883 71.3926 12.058 71.3926 11.1514C71.3926 10.2447 70.6623 9.51438 69.7557 9.51438H68.0683V7.82704C68.0683 6.7693 67.2121 5.91304 66.1543 5.91304C65.0966 5.91304 64.2403 6.7693 64.2403 7.82704V9.51438H64.1144C63.2078 9.51438 62.4774 10.2447 62.4774 11.1514C62.4774 12.058 63.2078 12.7883 64.1144 12.7883H64.2403V19.1851C64.2403 22.308 65.8269 23.2398 68.1691 23.2398Z" fill="#09161D"/>
<path d="M74.0632 21.2502C74.0632 22.308 74.9194 23.1642 75.9772 23.1642C77.0349 23.1642 77.8912 22.308 77.8912 21.2502V17.6741C77.8912 14.9542 78.9741 13.4683 80.9133 13.015C81.694 12.8387 82.3488 12.2343 82.3488 11.2269C82.3488 10.144 81.6688 9.36328 80.4851 9.36328C79.3518 9.36328 78.4452 10.5721 77.8912 11.8817V11.2773C77.8912 10.2195 77.0349 9.36328 75.9772 9.36328C74.9194 9.36328 74.0632 10.2195 74.0632 11.2773V21.2502Z" fill="#09161D"/>
<path d="M87.3181 15.206C87.6203 13.4683 88.6529 12.335 90.2395 12.335C91.8513 12.335 92.8586 13.4935 93.0853 15.206H87.3181ZM95.3015 21.6784C95.5785 21.4265 95.8052 21.0488 95.8052 20.5451C95.8052 19.6888 95.1756 19.034 94.3193 19.034C93.9164 19.034 93.6645 19.1348 93.3875 19.3362C92.6068 19.9155 91.7254 20.2429 90.6676 20.2429C88.9551 20.2429 87.7462 19.3362 87.3685 17.5985H94.9489C95.9563 17.5985 96.737 16.8682 96.737 15.7601C96.737 12.9646 94.7475 9.26254 90.2395 9.26254C86.3107 9.26254 83.5657 12.4358 83.5657 16.2889V16.3393C83.5657 20.4695 86.5626 23.3153 90.6172 23.3153C92.5816 23.3153 94.1179 22.6857 95.3015 21.6784Z" fill="#09161D"/>
<path d="M103.493 23.265C105.357 23.265 106.641 22.585 107.573 21.5524V21.5776C107.573 22.3835 108.304 23.1642 109.412 23.1642C110.444 23.1642 111.275 22.3583 111.275 21.3258V15.1808C111.275 13.3676 110.822 11.8817 109.815 10.8743C108.858 9.91733 107.347 9.36328 105.256 9.36328C103.468 9.36328 102.159 9.61512 100.95 10.0684C100.345 10.2951 99.9173 10.8743 99.9173 11.5543C99.9173 12.4358 100.622 13.1157 101.504 13.1157C101.68 13.1157 101.831 13.0905 102.058 13.015C102.788 12.7883 103.645 12.6372 104.702 12.6372C106.616 12.6372 107.598 13.5187 107.598 15.1053V15.3319C106.641 15.0045 105.659 14.7779 104.299 14.7779C101.101 14.7779 98.8596 16.1378 98.8596 19.0844V19.1348C98.8596 21.8043 100.95 23.265 103.493 23.265ZM104.652 20.6206C103.418 20.6206 102.562 20.0162 102.562 18.9837V18.9333C102.562 17.7244 103.569 17.0696 105.206 17.0696C106.138 17.0696 106.994 17.2711 107.649 17.5733V18.2533C107.649 19.6384 106.44 20.6206 104.652 20.6206Z" fill="#09161D"/>
<path d="M114.569 21.2502C114.569 22.308 115.426 23.1642 116.483 23.1642C117.541 23.1642 118.397 22.308 118.397 21.2502V15.483C118.397 13.6698 119.279 12.738 120.714 12.738C122.15 12.738 122.956 13.6698 122.956 15.483V21.2502C122.956 22.308 123.812 23.1642 124.87 23.1642C125.927 23.1642 126.784 22.308 126.784 21.2502V15.483C126.784 13.6698 127.665 12.738 129.101 12.738C130.536 12.738 131.342 13.6698 131.342 15.483V21.2502C131.342 22.308 132.198 23.1642 133.256 23.1642C134.314 23.1642 135.17 22.308 135.17 21.2502V14.2238C135.17 10.9751 133.458 9.26254 130.612 9.26254C128.773 9.26254 127.363 10.0181 126.179 11.4032C125.474 10.0433 124.139 9.26254 122.377 9.26254C120.437 9.26254 119.279 10.2951 118.397 11.4284V11.2773C118.397 10.2195 117.541 9.36328 116.483 9.36328C115.426 9.36328 114.569 10.2195 114.569 11.2773V21.2502Z" fill="#09161D"/>
<path d="M138.676 21.2502C138.676 22.308 139.532 23.1642 140.59 23.1642C141.647 23.1642 142.504 22.308 142.504 21.2502V6.39154C142.504 5.3338 141.647 4.47754 140.59 4.47754C139.532 4.47754 138.676 5.3338 138.676 6.39154V21.2502Z" fill="#09161D"/>
<path d="M149.927 23.265C151.79 23.265 153.075 22.585 154.007 21.5524V21.5776C154.007 22.3835 154.737 23.1642 155.845 23.1642C156.878 23.1642 157.709 22.3583 157.709 21.3258V15.1808C157.709 13.3676 157.255 11.8817 156.248 10.8743C155.291 9.91733 153.78 9.36328 151.69 9.36328C149.902 9.36328 148.592 9.61512 147.383 10.0684C146.779 10.2951 146.351 10.8743 146.351 11.5543C146.351 12.4358 147.056 13.1157 147.937 13.1157C148.114 13.1157 148.265 13.0905 148.491 13.015C149.222 12.7883 150.078 12.6372 151.136 12.6372C153.05 12.6372 154.032 13.5187 154.032 15.1053V15.3319C153.075 15.0045 152.093 14.7779 150.733 14.7779C147.534 14.7779 145.293 16.1378 145.293 19.0844V19.1348C145.293 21.8043 147.383 23.265 149.927 23.265ZM151.085 20.6206C149.851 20.6206 148.995 20.0162 148.995 18.9837V18.9333C148.995 17.7244 150.002 17.0696 151.639 17.0696C152.571 17.0696 153.427 17.2711 154.082 17.5733V18.2533C154.082 19.6384 152.873 20.6206 151.085 20.6206Z" fill="#09161D"/>
<path d="M161.003 21.2502C161.003 22.308 161.859 23.1642 162.917 23.1642C163.975 23.1642 164.831 22.308 164.831 21.2754V21.2502C165.737 22.3331 166.997 23.265 169.037 23.265C172.235 23.265 175.181 20.7969 175.181 16.2889V16.2386C175.181 11.7306 172.185 9.26254 169.037 9.26254C167.047 9.26254 165.763 10.1944 164.831 11.4536V6.39154C164.831 5.3338 163.975 4.47754 162.917 4.47754C161.859 4.47754 161.003 5.3338 161.003 6.39154V21.2502ZM168.054 20.0162C166.266 20.0162 164.78 18.5303 164.78 16.2889V16.2386C164.78 13.9972 166.266 12.5113 168.054 12.5113C169.842 12.5113 171.354 13.9972 171.354 16.2386V16.2889C171.354 18.5555 169.842 20.0162 168.054 20.0162Z" fill="#09161D"/>
<path d="M182.732 23.265C185.653 23.265 187.895 21.905 187.895 18.9081V18.8577C187.895 16.3897 185.704 15.483 183.815 14.8534C182.354 14.3498 181.07 13.9972 181.07 13.2416V13.1913C181.07 12.6624 181.548 12.2595 182.48 12.2595C183.286 12.2595 184.318 12.5869 185.401 13.1157C185.653 13.2416 185.829 13.292 186.107 13.292C186.963 13.292 187.643 12.6372 187.643 11.781C187.643 11.1262 187.29 10.6225 186.736 10.3455C185.427 9.69067 183.966 9.31291 182.556 9.31291C179.836 9.31291 177.619 10.8491 177.619 13.5942V13.6446C177.619 16.2638 179.76 17.1452 181.649 17.6993C183.135 18.1526 184.444 18.4296 184.444 19.2607V19.311C184.444 19.9155 183.941 20.3184 182.833 20.3184C181.75 20.3184 180.465 19.9155 179.181 19.1096C178.979 18.9836 178.702 18.9081 178.425 18.9081C177.569 18.9081 176.914 19.5629 176.914 20.4192C176.914 21.0236 177.242 21.4769 177.645 21.7287C179.282 22.7865 181.07 23.265 182.732 23.265Z" fill="#09161D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M39.9474 11.4769V17.9327C39.9474 20.3096 38.0311 22.2365 35.6673 22.2365H33.5273V24.6754C33.5273 26.6562 31.9304 28.2619 29.9605 28.2619H18.3921C18.3542 28.2619 18.3179 28.2771 18.2912 28.304L13.8735 32.7462C13.3343 33.2884 12.4122 32.9044 12.4122 32.1375V28.4054C12.4122 28.3262 12.3483 28.2619 12.2695 28.2619H9.98684C8.01699 28.2619 6.42011 26.6562 6.42011 24.6754V22.2365H4.28008C1.91625 22.2365 0 20.3096 0 17.9327V11.4769C0 9.09998 1.91625 7.17308 4.28008 7.17308V6.31231C4.28008 2.82612 7.09058 0 10.5575 0H29.3899C32.8568 0 35.6673 2.82612 35.6673 6.31231V7.17308C38.0311 7.17308 39.9474 9.09998 39.9474 11.4769ZM8.56015 6.31231C8.56015 5.20307 9.45441 4.30385 10.5575 4.30385H29.3899C30.493 4.30385 31.3872 5.20307 31.3872 6.31231V7.17308H8.56015V6.31231ZM19.9737 18.0762L18.9389 21.429C18.7907 21.9092 18.3489 22.2365 17.8488 22.2365H8.56015V24.6754C8.56015 25.4677 9.19889 26.11 9.98684 26.11H13.8389C14.2329 26.11 14.5523 26.4312 14.5523 26.8273V29.0204L17.2376 26.3201C17.3714 26.1856 17.5528 26.11 17.742 26.11H29.9605C30.7485 26.11 31.3872 25.4677 31.3872 24.6754V22.2365H22.0985C21.5985 22.2365 21.1567 21.9092 21.0085 21.429L19.9737 18.0762ZM2.85335 11.4769C2.85335 10.6846 3.49209 10.0423 4.28005 10.0423V8.60767C2.70417 8.60767 1.42666 9.89227 1.42666 11.4769V17.9327C1.42666 18.3288 1.74603 18.65 2.14001 18.65C2.53398 18.65 2.85335 18.3288 2.85335 17.9327V11.4769ZM37.094 11.4769C37.094 10.6846 36.4552 10.0423 35.6673 10.0423V8.60767C37.2431 8.60767 38.5206 9.89227 38.5206 11.4769V17.9327C38.5206 18.3288 38.2013 18.65 37.8073 18.65C37.4133 18.65 37.094 18.3288 37.094 17.9327V11.4769ZM6.42008 9.32503H33.5272V17.9327C33.5272 19.1212 32.5691 20.0847 31.3872 20.0847H22.7514C22.6266 20.0847 22.5163 20.0031 22.4791 19.8834L21.063 15.3301C20.7291 14.2566 19.2182 14.2566 18.8843 15.3301L17.4682 19.8834C17.431 20.0031 17.3207 20.0847 17.1959 20.0847H8.56012C7.37821 20.0847 6.42008 19.1212 6.42008 17.9327V9.32503Z" fill="#09161D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.8402 10.7596C11.2644 10.7596 9.98684 12.0442 9.98684 13.6289V15.7808C9.98684 17.3655 11.2644 18.65 12.8402 18.65C14.4161 18.65 15.6936 17.3655 15.6936 15.7808V13.6289C15.6936 12.0442 14.4161 10.7596 12.8402 10.7596ZM11.4803 12.3982C11.2611 12.6504 11.1282 12.9806 11.1282 13.342C11.1282 14.1343 11.7669 14.7766 12.5549 14.7766C12.9489 14.7766 13.3055 14.616 13.5637 14.3564C13.6591 14.2604 13.7411 14.1509 13.8065 14.031C13.9181 13.8265 13.9816 13.5917 13.9816 13.3419C13.9816 12.5496 13.3429 11.9073 12.5549 11.9073C12.1263 11.9073 11.7418 12.0973 11.4803 12.3982Z" fill="#09161D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M27.1071 10.7596C25.5313 10.7596 24.2538 12.0442 24.2538 13.6289V15.7808C24.2538 17.3655 25.5313 18.65 27.1071 18.65C28.683 18.65 29.9605 17.3655 29.9605 15.7808V13.6289C29.9605 12.0442 28.683 10.7596 27.1071 10.7596ZM25.5506 12.6899C25.4512 12.8856 25.3951 13.1072 25.3951 13.342C25.3951 14.1343 26.0339 14.7766 26.8218 14.7766C27.2158 14.7766 27.5725 14.616 27.8306 14.3564C27.9949 14.1912 28.1194 13.9858 28.1881 13.7562C28.2274 13.6251 28.2485 13.486 28.2485 13.3419C28.2485 12.5496 27.6098 11.9073 26.8218 11.9073C26.4278 11.9073 26.0712 12.0679 25.813 12.3275C25.7078 12.4333 25.619 12.5555 25.5506 12.6899Z" fill="#09161D"/>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

4
src/icons/teespring.svg Normal file
View File

@ -0,0 +1,4 @@
<svg width="1024px" height="1024px" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg">
<circle cx="512" cy="512" r="512" style="fill:#ed2761"/>
<path d="M609.64 417.66c-19.89 0-36.06 15.87-36.06 35.39a109.16 109.16 0 0 0 27.77 72.66 113.26 113.26 0 0 0 24.71 20.86 131.63 131.63 0 0 0 13.75-26.66 129.47 129.47 0 0 0 5.27-73.43c-.15-.75-.34-1.5-.52-2.25a36 36 0 0 0-34.89-26.58zM387.16 519.91a130.24 130.24 0 0 0 13.78 26.66 113.8 113.8 0 0 0 24.68-20.86A109.05 109.05 0 0 0 453.41 453c0-19.51-16.17-35.39-36.09-35.39a36 36 0 0 0-34.89 26.57c-.15.75-.36 1.5-.52 2.25a131.05 131.05 0 0 0-3 27.8 129.22 129.22 0 0 0 8.28 45.65zm400.46-17.31L822 519.5c-24.86 48.67-76.15 82.13-135.44 82.13a153.92 153.92 0 0 1-49.75-8.24 175.34 175.34 0 0 1-246.67 0 153.54 153.54 0 0 1-49.76 8.24c-61.7 0-114.79-36.24-138.38-88.21L237.19 498a113.17 113.17 0 0 0 103.18 65.83 115.18 115.18 0 0 0 24.44-2.64A167.47 167.47 0 0 1 344.15 439c.36-1.65.75-3.23 1.15-4.85 8.49-31.21 37.5-54.18 72-54.18h2c2.1.06 4.19.19 6.26.42 37.29 4 66.25 35 66.25 72.68 0 50.59-25.79 95.25-65.14 122.05a136.15 136.15 0 0 0 173.56 0c-39.36-26.81-65.14-71.48-65.14-122.05 0-37.65 29-68.65 66.22-72.69 2.07-.21 4.15-.34 6.26-.4h2.05c34.5 0 63.5 23 72 54.21.4 1.6.79 3.2 1.15 4.84a167.47 167.47 0 0 1-20.67 122.28 115 115 0 0 0 24.41 2.64 113.33 113.33 0 0 0 101-61.28z" style="fill:#fff"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

127
src/icons/threema.svg Normal file
View File

@ -0,0 +1,127 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 992 672" style="enable-background:new 0 0 992 672;" xml:space="preserve">
<style type="text/css">
.st0{fill-rule:evenodd;clip-rule:evenodd;}
</style>
<g id="Threema-Logo">
<g id="Threema:-Wortmarke-_x2B_-Bildmarke-_x2B_-Claim-_x28_Portrait_x29_" transform="translate(-370.000000, -176.000000)">
<path class="st0" d="M686.673,795.181l4.68,13.728l3.045,9.023l1.308,3.913c0.767,2.308,1.492,4.517,2.121,6.486l0.545-1.578
l0.977-2.864c1.339-3.947,2.807-8.347,4.199-12.462l0.909-2.674l4.68-13.572h5.226l-15.366,43.368
c-2.184,6.162-4.056,9.282-10.608,9.282c-1.456,0-3.097-0.185-4.539-0.5l-0.531-0.124l0.858-4.056
c1.56,0.312,2.808,0.468,3.9,0.468c3.13,0,4.691-1.345,6.438-6.228l0.114-0.324l0.702-2.106l-14.118-39.78H686.673z
M1292.353,794.167c5.952,0,10.187,2.613,12.705,6.962l0.165,0.292v-6.24h4.836v37.284c0,9.438-6.084,15.288-16.458,15.288
c-6.284,0-11.538-1.984-16.264-5.239l-0.428-0.299l2.652-3.822l0.817,0.516c4.195,2.618,8.021,4.476,13.223,4.476
c6.146,0,11.232-3.102,11.385-10.945l0.003-0.365v-6.24c-2.574,4.29-6.786,6.786-12.636,6.786
c-9.906,0-16.458-8.112-16.458-19.188C1275.895,802.279,1282.447,794.167,1292.353,794.167z M1194.282,794.167
c5.952,0,10.187,2.613,12.705,6.962l0.165,0.292v-6.24h4.836v37.284c0,9.438-6.084,15.288-16.458,15.288
c-6.284,0-11.538-1.984-16.264-5.239l-0.428-0.299l2.652-3.822l0.817,0.516l0.808,0.497c3.886,2.353,7.548,3.979,12.415,3.979
c6.146,0,11.232-3.102,11.385-10.945l0.004-0.365v-6.24c-2.574,4.29-6.786,6.786-12.636,6.786
c-9.906,0-16.458-8.112-16.458-19.188C1177.824,802.279,1184.376,794.167,1194.282,794.167z M1155.066,794.167
c9.461,0,14.75,4.93,14.895,11.873l0.003,0.295v26.52h-4.758v-4.992c-2.652,4.212-7.566,6.162-13.104,6.162
c-7.41,0-13.494-2.964-13.494-10.374c0-8.68,7.953-11.191,17.475-12.975l0.699-0.129l8.19-1.482v-2.34
c0-5.382-3.978-8.346-9.672-8.346c-4.497,0-7.877,1.564-12.397,6.222l-0.317,0.33l-3.276-2.964
C1143.99,796.507,1148.982,794.167,1155.066,794.167z M442.363,776.305c7.859,0,13.778,2.389,19.946,7.531l0.412,0.347
l-3.198,3.822c-6.006-5.226-10.998-6.942-17.082-6.942c-8.19,0-13.806,4.212-13.806,9.984c0,6.552,5.538,8.112,15.912,10.452
l0.933,0.222l0.907,0.225c12.358,3.134,17.114,7.202,17.114,15.387c0,10.218-8.424,16.692-19.734,16.692
c-8.645,0-14.813-2.626-22.332-8.835l-0.444-0.369l3.198-3.9l0.861,0.694c8.074,6.414,13.141,7.652,18.717,7.652
c8.19,0,14.274-4.368,14.274-11.778c0-7.41-6.24-9.126-16.146-11.388l-0.912-0.208l-0.886-0.209
c-12.218-2.934-16.766-6.291-16.766-14.481C423.331,781.843,432.379,776.305,442.363,776.305z M646.07,794.167
c5.924,0,10.073,1.405,14.823,5.079l0.387,0.303l-2.886,3.51c-5.07-3.822-7.956-4.68-12.168-4.68
c-5.694,0-9.204,2.808-9.204,6.552c0,3.259,2.897,4.299,8.525,5.64l3.11,0.725l0.843,0.206c8.42,2.116,12.404,4.825,12.404,10.901
c0,6.942-6.006,11.466-14.664,11.466c-6.406,0-10.799-1.715-16.533-6.604l-0.393-0.338l3.12-3.432
c5.616,4.758,9.126,6.084,13.806,6.084c5.46,0,9.594-2.652,9.594-6.942c0-4.68-4.836-6.084-11.232-7.41l-0.863-0.191l-0.819-0.189
c-8.444-1.984-11.889-4.115-11.889-9.76C632.03,798.457,638.036,794.167,646.07,794.167z M599.132,795.181v25.116
c0,6.006,3.198,9.126,8.658,9.126c5.834,0,10.761-3.551,10.916-10.8l0.004-0.354v-23.088h5.148v37.674h-4.836v-4.992
c-2.418,4.134-6.864,6.006-11.544,6.006c-9.62,0-13.393-5.543-13.492-12.209l-0.002-0.271v-26.208H599.132z M827.08,794.167
c6.181,0,10.271,1.941,14.535,6.845l0.285,0.331l-3.51,3.042c-4.212-4.68-7.41-6.006-11.466-6.006
c-8.346,0-12.246,7.956-12.246,15.678s3.9,15.444,12.48,15.444c4.12,0,6.897-1.269,11.397-6.144l0.303-0.33l3.432,2.886
c-4.836,6.006-9.126,7.956-15.054,7.956c-10.998,0-17.862-7.956-17.862-19.812S816.394,794.167,827.08,794.167z M568.184,794.167
c10.842,0,18.252,8.112,18.252,19.89c0,11.7-7.41,19.812-18.252,19.812c-10.764,0-18.174-8.112-18.174-19.812
C550.01,802.279,557.42,794.167,568.184,794.167z M853.582,795.181v25.116c0,6.006,3.198,9.126,8.658,9.126
c5.834,0,10.761-3.551,10.916-10.8l0.004-0.354v-23.088h5.148v37.674h-4.836v-4.992c-2.418,4.134-6.864,6.006-11.544,6.006
c-9.62,0-13.393-5.543-13.492-12.209l-0.002-0.271v-26.208H853.582z M787.239,794.167c10.53,0,16.692,7.02,16.692,17.862
l-0.007,0.362c-0.018,0.559-0.07,1.377-0.126,1.871l-0.023,0.186h-28.86c0.234,7.644,3.9,15.132,12.87,15.132
c4.955,0,8.047-1.788,12.699-6.529l0.327-0.336l3.276,3.12c-5.538,6.006-10.14,8.034-16.302,8.034
c-11.154,0-18.096-7.878-18.096-19.578C769.689,802.435,776.631,794.167,787.239,794.167z M926.866,794.167
c10.53,0,16.692,7.02,16.692,17.862l-0.007,0.362c-0.018,0.559-0.07,1.377-0.126,1.871l-0.023,0.186h-28.86
c0.234,7.644,3.9,15.132,12.87,15.132c4.955,0,8.047-1.788,12.699-6.529l0.327-0.336l3.276,3.12
c-5.538,6.006-10.14,8.034-16.302,8.034c-11.154,0-18.096-7.878-18.096-19.578C909.316,802.435,916.258,794.167,926.866,794.167z
M1116.864,794.167c5.924,0,10.073,1.405,14.823,5.079l0.387,0.303l-2.886,3.51c-5.07-3.822-7.956-4.68-12.168-4.68
c-5.694,0-9.204,2.808-9.204,6.552c0,3.462,3.27,4.42,9.613,5.896l1.151,0.266c9.594,2.184,14.118,4.836,14.118,11.31
c0,6.942-6.006,11.466-14.664,11.466c-6.406,0-10.799-1.715-16.533-6.604l-0.393-0.338l3.12-3.432
c5.616,4.758,9.126,6.084,13.806,6.084c5.46,0,9.594-2.652,9.594-6.942c0-4.68-4.836-6.084-11.232-7.41l-0.863-0.191l-0.819-0.189
c-8.444-1.984-11.889-4.115-11.889-9.76C1102.824,798.457,1108.83,794.167,1116.864,794.167z M486.961,794.167
c10.41,0,16.551,6.861,16.69,17.494l0.002,0.368c0,0.491-0.063,1.615-0.133,2.232l-0.023,0.186h-28.86
c0.234,7.644,3.9,15.132,12.87,15.132c4.955,0,8.047-1.788,12.699-6.529l0.327-0.336l3.276,3.12
c-5.538,6.006-10.14,8.034-16.302,8.034c-11.154,0-18.096-7.878-18.096-19.578C469.411,802.435,476.353,794.167,486.961,794.167z
M748.725,794.167c5.924,0,10.073,1.405,14.823,5.079l0.387,0.303l-2.886,3.51c-5.07-3.822-7.956-4.68-12.168-4.68
c-5.694,0-9.204,2.808-9.204,6.552c0,3.259,2.897,4.299,8.525,5.64l3.11,0.725l0.842,0.206c8.42,2.116,12.404,4.825,12.404,10.901
c0,6.942-6.006,11.466-14.664,11.466c-6.406,0-10.799-1.715-16.533-6.604l-0.393-0.338l3.12-3.432
c5.616,4.758,9.126,6.084,13.806,6.084c5.46,0,9.594-2.652,9.594-6.942c0-4.68-4.836-6.084-11.232-7.41l-0.863-0.191l-0.819-0.189
c-8.444-1.984-11.889-4.115-11.889-9.76C734.685,798.457,740.691,794.167,748.725,794.167z M1044.593,794.167
c10.53,0,16.692,7.02,16.692,17.862l-0.009,0.409c-0.02,0.557-0.07,1.343-0.124,1.824l-0.023,0.186h-28.86
c0.234,7.644,3.9,15.132,12.87,15.132c4.955,0,8.047-1.788,12.699-6.529l0.327-0.336l3.276,3.12
c-5.538,6.006-10.14,8.034-16.302,8.034c-11.154,0-18.096-7.878-18.096-19.578
C1027.043,802.435,1033.985,794.167,1044.593,794.167z M1081.547,794.167c5.924,0,10.073,1.405,14.823,5.079l0.387,0.303
l-2.886,3.51c-5.07-3.822-7.956-4.68-12.168-4.68c-5.694,0-9.204,2.808-9.204,6.552c0,3.259,2.897,4.299,8.526,5.64l3.11,0.725
l0.843,0.206c8.42,2.116,12.404,4.825,12.404,10.901c0,6.942-6.006,11.466-14.664,11.466c-6.406,0-10.799-1.715-16.533-6.604
l-0.393-0.338l3.12-3.432c5.616,4.758,9.126,6.084,13.806,6.084c5.46,0,9.594-2.652,9.594-6.942c0-4.68-4.836-6.084-11.232-7.41
l-0.864-0.191c-9.041-2.041-12.708-4.125-12.708-9.949C1067.507,798.457,1073.513,794.167,1081.547,794.167z M1254.541,794.167
c9.232,0,13.38,5.918,13.492,12.592l0.002,0.279v25.818h-5.148v-24.102c0-6.864-3.432-10.296-9.516-10.296
c-5.832,0-10.532,4.53-10.682,10.396l-0.004,0.29v23.712h-5.148v-37.674h4.836v5.226
C1244.947,796.039,1249.393,794.167,1254.541,794.167z M902.704,794.791c2.194,0,4.182,0.48,5.643,0.99l0.285,0.102l-1.014,4.134
c-1.872-0.546-3.354-0.78-4.914-0.78c-4.99,0-8.921,4.306-9.045,12.249l-0.003,0.387v20.982h-5.148v-37.674h4.836v5.85
C895.06,797.209,898.336,794.791,902.704,794.791z M1227.336,795.181v37.674h-5.148v-37.674H1227.336z M674.756,777.475v55.38
h-5.148v-55.38H674.756z M542.305,795.181v37.674h-5.148v-37.674H542.305z M1006.937,794.167c8.377,0,12.438,5.376,12.555,12.1
l0.003,0.302v26.286h-5.148v-24.882c0-6.084-2.808-9.516-8.346-9.516c-5.521,0-9.383,4.146-9.513,10.14l-0.003,0.312v23.946
h-5.148v-24.882c0-6.084-2.808-9.516-8.346-9.516c-5.061,0-9.292,3.618-9.434,10.113l-0.004,0.339v23.946h-5.148v-37.674h4.836
v4.758c2.262-3.9,5.928-5.772,10.92-5.772c5.616,0,9.282,2.73,10.998,6.552C997.577,796.819,1001.399,794.167,1006.937,794.167z
M525.787,794.791c2.194,0,4.182,0.48,5.643,0.99l0.285,0.102l-1.014,4.134c-1.872-0.546-3.354-0.78-4.914-0.78
c-4.99,0-8.921,4.306-9.045,12.249l-0.003,0.387v20.982h-5.148v-37.674h4.836v5.85
C518.143,797.209,521.419,794.791,525.787,794.791z M1164.972,813.043l-7.098,1.404l-1.486,0.302
c-7.42,1.536-12.71,3.188-12.71,8.824c0,3.9,3.276,6.162,8.658,6.162c7.219,0,12.472-4.159,12.632-10.094l0.004-0.28V813.043z
M568.184,798.379c-7.878,0-12.87,6.474-12.87,15.678c0,9.048,4.992,15.522,12.87,15.522c7.956,0,12.948-6.474,12.948-15.522
C581.132,804.853,576.14,798.379,568.184,798.379z M1194.828,798.457c-7.566,0-11.7,6.318-11.7,14.976
c0,8.58,4.134,14.82,11.7,14.82c7.41,0,12.168-6.24,12.168-14.82C1206.996,804.775,1202.238,798.457,1194.828,798.457z
M1292.899,798.457c-7.566,0-11.7,6.318-11.7,14.976c0,8.58,4.134,14.82,11.7,14.82c7.41,0,12.168-6.24,12.168-14.82
C1305.067,804.775,1300.309,798.457,1292.899,798.457z M486.961,798.379c-6.523,0-11.083,3.926-12.12,11.779l-0.048,0.389h23.712
C498.271,803.293,494.137,798.379,486.961,798.379z M787.239,798.379c-6.523,0-11.083,3.926-12.12,11.779l-0.048,0.389h23.712
C798.549,803.293,794.415,798.379,787.239,798.379z M926.866,798.379c-6.523,0-11.083,3.926-12.12,11.779l-0.048,0.389h23.712
C938.176,803.293,934.042,798.379,926.866,798.379z M1044.593,798.379c-6.523,0-11.083,3.926-12.12,11.779l-0.048,0.389h23.712
C1055.903,803.293,1051.769,798.379,1044.593,798.379z M1227.336,779.503v7.332h-5.148v-7.332H1227.336z M542.305,779.503v7.332
h-5.148v-7.332H542.305z M1254.393,590.065c36.383,0,55.123,18.377,55.494,44.943l0.006,0.807v86.25h-29.25v-13.25
c-7.75,10.75-21.5,17.5-41.25,17.5c-24.25,0-45.75-10.5-45.75-36.5c0-29.205,25.728-39.543,54.381-44.841l30.869-5.659v-3
c0-12.5-9.25-19.5-24-19.5c-16.293,0-25.218,6.935-37.065,18.181l-2.685,2.569l-20.5-18.75
C1210.643,599.815,1229.143,590.065,1254.393,590.065z M795.921,590.065c39,0,59.75,24.5,59.75,63.75l-0.008,1.35l-0.024,1.449
l-0.037,1.509c-0.082,2.884-0.227,5.882-0.378,7.816l-0.053,0.626h-91.75c2.75,18.5,13.75,32,36,32
c14.81,0,22.796-4.874,37.434-17.029l0.566-0.471l18.25,20c-18.75,19-36.25,25-57,25c-41.25,0-67-26.5-67-67.25
C731.671,619.315,755.671,590.065,795.921,590.065z M927.579,590.065c39,0,59.75,24.5,59.75,63.75l-0.003,0.854l-0.02,1.489
l-0.033,1.492l-0.029,1.016c-0.084,2.718-0.221,5.473-0.363,7.285l-0.052,0.614h-91.75c2.75,18.5,13.75,32,36,32
c14.81,0,22.796-4.874,37.434-17.029l0.566-0.471l18.25,20c-18.75,19-36.25,25-57,25c-41.25,0-67-26.5-67-67.25
C863.329,619.315,887.329,590.065,927.579,590.065z M714.514,592.565c6.75,0,12.57,1.395,19.478,3.512l0.772,0.238l-5.75,28.5
c-6.75-1.75-12-2.5-16.25-2.5c-17.078,0-27.784,13.476-27.997,36.063l-0.003,0.687v63h-32.5v-127.75h30.25v18.75
C688.514,600.815,698.764,592.565,714.514,592.565z M1361.55,685.815v36.25h-35.5v-36.25H1361.55z M555.357,544.565v61.25
c8-9.75,20.25-15.75,36.25-15.75c29.453,0,45.429,18.132,45.745,43.722l0.005,0.778v87.5h-32.5v-77.75
c0-16.75-8.25-26.25-23.75-26.25c-14.85,0-25.535,10.781-25.747,26.521l-0.003,0.479v77h-32.5v-177.5H555.357z M512.45,544.565v30
h-53.5v147.5h-35v-147.5h-53.5v-30H512.45z M1139.986,590.065c27.225,0,42.199,16.417,42.495,41.973l0.005,0.777v89.25h-32.5
v-79.5c0-14.25-5.5-24.5-20.25-24.5c-14.603,0-22.344,10.781-22.498,25.066l-0.002,0.434v78.5h-32.5v-79.5
c0-14.25-5.25-24.5-20.25-24.5c-14.603,0-22.344,11.026-22.498,25.073l-0.002,0.427v78.5h-32.5v-127.75h30.25v14.25
c6.75-11,18.5-18.5,36.5-18.5c16.75,0,28.75,7,35.5,18.75C1109.236,598.065,1121.236,590.065,1139.986,590.065z M1278.893,662.565
l-22.647,4.741l-1.109,0.237l-1.602,0.352c-17.077,3.821-28.142,8.491-28.142,19.67c0,8,7.25,12.75,19.5,12.75
c16.335,0,33.65-7.841,33.995-29.587l0.005-0.663V662.565z M926.579,615.565c-17.077,0-27.049,11.026-30.643,27.257l-0.107,0.493
h59.75C954.329,626.315,944.329,615.565,926.579,615.565z M794.921,615.565c-17.078,0-27.049,11.026-30.643,27.257l-0.107,0.493
h59.75C822.671,626.315,812.671,615.565,794.921,615.565z M951.301,452.057c13.08,0,23.66,10.604,23.66,23.655
c0,13.076-10.581,23.664-23.66,23.664c-13.057,0-23.638-10.588-23.638-23.664C927.663,462.661,938.244,452.057,951.301,452.057z
M780.656,452.057c13.08,0,23.66,10.604,23.66,23.655c0,13.076-10.581,23.664-23.66,23.664c-13.058,0-23.638-10.588-23.638-23.664
C757.018,462.661,767.598,452.057,780.656,452.057z M865.979,452.057c13.08,0,23.66,10.604,23.66,23.655
c0,13.076-10.581,23.664-23.66,23.664c-13.058,0-23.638-10.588-23.638-23.664C842.34,462.661,852.921,452.057,865.979,452.057z
M866,176.169c76.768,0,139,54.761,139,122.312s-62.232,122.312-139,122.312c-21.848,0-42.519-4.436-60.914-12.339l-69.637,17.409
l14.882-59.529C735.593,346.918,727,323.582,727,298.481C727,230.93,789.232,176.169,866,176.169z M865.982,233.206
c-21.772,0-39.414,17.648-39.414,39.373v15.749h-1.549c-3.5,0-6.337,2.837-6.337,6.337v55.571c0,3.5,2.837,6.337,6.337,6.337
h81.964c3.5,0,6.337-2.837,6.337-6.337v-55.571c0-3.5-2.837-6.337-6.337-6.337h-1.549v-15.749
C905.433,250.853,887.791,233.206,865.982,233.206z M865.989,248.955c13.085,0,23.671,10.591,23.671,23.626v15.746H842.34v-15.746
C842.34,259.546,852.926,248.955,865.989,248.955z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

11
src/icons/xing.svg Normal file
View File

@ -0,0 +1,11 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="256" height="256" viewBox="0 0 256 256" xml:space="preserve">
<desc>Created with Fabric.js 1.7.22</desc>
<defs>
</defs>
<g transform="translate(128 128) scale(0.72 0.72)" style="">
<g style="stroke: none; stroke-width: 0; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: none; fill-rule: nonzero; opacity: 1;" transform="translate(-175.05 -175.05000000000004) scale(3.89 3.89)" >
<path d="M 13.677 17.774 c -0.782 0 -1.44 0.274 -1.77 0.811 c -0.342 0.555 -0.289 1.269 0.074 1.991 l 8.776 15.193 c 0.015 0.029 0.015 0.047 0 0.074 L 6.966 60.181 c -0.36 0.717 -0.342 1.437 0 1.991 c 0.33 0.534 0.915 0.885 1.696 0.885 h 12.98 c 1.941 0 2.876 -1.31 3.54 -2.508 c 0 0 13.488 -23.854 14.013 -24.78 c -0.053 -0.086 -8.924 -15.561 -8.924 -15.561 c -0.646 -1.151 -1.623 -2.434 -3.614 -2.434 H 13.677 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,90,95); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round" />
<path d="M 68.208 0 c -1.938 0 -2.779 1.221 -3.475 2.472 c 0 0 -27.963 49.59 -28.884 51.219 c 0.047 0.089 18.444 33.837 18.444 33.837 C 54.936 88.678 55.93 90 57.919 90 h 12.966 c 0.782 0 1.392 -0.295 1.723 -0.829 c 0.345 -0.555 0.336 -1.286 -0.027 -2.006 L 54.281 53.732 c -0.018 -0.027 -0.018 -0.059 0 -0.085 L 83.02 2.832 c 0.36 -0.717 0.369 -1.449 0.027 -2.003 C 82.717 0.295 82.103 0 81.321 0 H 68.208 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(212,214,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB