damus.io

damus.io website
git clone git://jb55.com/damus.io
Log | Files | Refs

commit ba0211b18878ca6e58e29b03bd4d3d6f129693b4
Author: William Casarin <jb55@jb55.com>
Date:   Fri, 13 May 2022 14:02:17 -0700

initial commit

Signed-off-by: William Casarin <jb55@jb55.com>

Diffstat:
Acss/custom.css | 177+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Acss/normalize.css | 429+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Acss/skeleton.css | 420+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Aimg/activation.svg | 2++
Aimg/bitcoin-p2p.svg | 2++
Aimg/bitcoin-phone.svg | 2++
Aimg/bot.svg | 2++
Aimg/communication.svg | 2++
Aimg/damus-nobg.svg | 186+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Aimg/digital-nomad.svg | 2++
Aimg/freelance.svg | 2++
Aimg/message.svg | 2++
Aimg/protection.svg | 2++
Aimg/social-media.svg | 2++
Aimg/undercover.svg | 2++
Aindex.html | 68++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
16 files changed, 1302 insertions(+), 0 deletions(-)

diff --git a/css/custom.css b/css/custom.css @@ -0,0 +1,177 @@ +@import url('https://rsms.me/inter/inter.css'); +html { font-family: 'Inter', sans-serif; } +@supports (font-variation-settings: normal) { + html { font-family: 'Inter var', sans-serif; } +} + +.container { + max-width: 800px; +} + +label { + white-space: nowrap; +} + +blockquote { + font-style: italic; +} + +blockquote:before { + color: #ccc; + content: open-quote; + display: block; + position: relative; + left: -0.6em; + top: 0.3em; + font-size: 4em; + line-height: 0.1em; + vertical-align: -0.4em; +} + +blockquote:after { + color: #ccc; + content: close-quote; + font-size: 4em; + position:relative; + top: 0.2em; + left: -0.1em; + line-height: 0.1em; + vertical-align: -0.4em; +} + +.author { + font-weight: bold; +} + +label input { + margin-left: 10px; + margin-right: 10px; +} + +ul.socials { + margin: 0; + padding: 0; + list-style-type: none; + overflow: hidden; +} + +.profile { + display: flex; + align-content: center; + align-items: center; +} + +.socials-container { + display: flex; + margin: auto; + justify-content: space-evenly; + width: 110px; +} + +ul.socials > li { + float: left; + display: block; + text-align: center; +} + +.socials-container img { + color: #ff0000; + width: 20px; +} + +.row { + margin-bottom: 8rem; +} + +.hero { + margin-top: 5rem; + text-align: center; + clear: left; +} + +.header { + display: flex; + margin-left: 50px; + align-items: center; +} + +.portrait { + border-radius: 50%; + width: 100%; + text-align: center; + box-shadow: 0px 0px 10px #aaa; + border: 2px solid white; +} + +.centered { + text-align: center; +} + +.value-img { + margin: 2.5rem auto 2.5rem auto; + width: 100px; + display: block; + text-align: center; +} + +.credits { + margin-top: 10rem; + text-align: center; + color: #252D3A; +} + +.code-example { + width: 80%; +} + +.value-prop { + margin-top: 3rem; +} + +.value-props { + margin-bottom: 7rem; +} + +.damus { + font-size: 4rem; + letter-spacing: -0.08em; + font-weight: 100; + margin-bottom: 20px; +} + +.title { + font-size: 8rem; + font-weight: 500; + letter-spacing: -0.055em; +} + + +.logo { + margin-bottom: 0; + letter-spacing: -0.05em; +} + +.logo img { + padding-right: 18px; + width: 60px; +} + +.wizards { + font-size: 1.5rem; + top: -2em; + left: 0.2em; + position: relative; + color: #999; +} + +body { + letter-spacing: -0.044em; + margin: 3rem 0 10em 0; + color: white; + background: linear-gradient(45deg, rgba(28,85,255,1) 0%, rgba(127,53,171,1) 59%, rgba(255,11,214,1) 100%); +} + +input { + color: #252D3A; +} + diff --git a/css/normalize.css b/css/normalize.css @@ -0,0 +1,429 @@ +/*! normalize.css v3.0.2 | MIT License | git.io/normalize */ + +/** + * 1. Set default font family to sans-serif. + * 2. Prevent iOS text size adjust after orientation change, without disabling + * user zoom. + */ + +html { + -ms-text-size-adjust: 100%; /* 2 */ + -webkit-text-size-adjust: 100%; /* 2 */ +} + +/** + * Remove default margin. + */ + +body { + margin: 0; +} + +/* HTML5 display definitions + ========================================================================== */ + +/** + * Correct `block` display not defined for any HTML5 element in IE 8/9. + * Correct `block` display not defined for `details` or `summary` in IE 10/11 + * and Firefox. + * Correct `block` display not defined for `main` in IE 11. + */ + +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +main, +menu, +nav, +section, +summary { + display: block; +} + +/** + * 1. Correct `inline-block` display not defined in IE 8/9. + * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. + */ + +audio, +canvas, +progress, +video { + display: inline-block; /* 1 */ + vertical-align: baseline; /* 2 */ +} + +/** + * Prevent modern browsers from displaying `audio` without controls. + * Remove excess height in iOS 5 devices. + */ + +audio:not([controls]) { + display: none; + height: 0; +} + +/** + * Address `[hidden]` styling not present in IE 8/9/10. + * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22. + */ + +[hidden], +template { + display: none; +} + +/* Links + ========================================================================== */ + +/** + * Remove the gray background color from active links in IE 10. + */ + +a { + background-color: transparent; +} + +/** + * Improve readability when focused and also mouse hovered in all browsers. + */ + +a:active, +a:hover { + outline: 0; +} + +/* Text-level semantics + ========================================================================== */ + +/** + * Address styling not present in IE 8/9/10/11, Safari, and Chrome. + */ + +abbr[title] { + border-bottom: 1px dotted; +} + +/** + * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. + */ + +b, +strong { + font-weight: bold; +} + +/** + * Address styling not present in Safari and Chrome. + */ + +dfn { + font-style: italic; +} + +/** + * Address variable `h1` font-size and margin within `section` and `article` + * contexts in Firefox 4+, Safari, and Chrome. + */ + +@media only screen and (max-width: 988px) +{ + h1 { + font-size: calc(100vw / 12.2); + } +} + + +/** + * Address styling not present in IE 8/9. + */ + +mark { + background: #ff0; + color: #000; +} + +/** + * Address inconsistent and variable font size in all browsers. + */ + +small { + font-size: 80%; +} + +/** + * Prevent `sub` and `sup` affecting `line-height` in all browsers. + */ + +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} + +sup { + top: -0.5em; +} + +sub { + bottom: -0.25em; +} + +/* Embedded content + ========================================================================== */ + +/** + * Remove border when inside `a` element in IE 8/9/10. + */ + +img { + border: 0; +} + +/** + * Correct overflow not hidden in IE 9/10/11. + */ + +svg:not(:root) { + overflow: hidden; +} + +/* Grouping content + ========================================================================== */ + +/** + * Address margin not present in IE 8/9 and Safari. + */ + +figure { + margin: 1em 40px; +} + +/** + * Address differences between Firefox and other browsers. + */ + +hr { + -moz-box-sizing: content-box; + box-sizing: content-box; + height: 0; +} + +/** + * Contain overflow in all browsers. + */ + +pre { + overflow: auto; +} + +/** + * Address odd `em`-unit font size rendering in all browsers. + */ + +code, +kbd, +pre, +samp { + font-family: monospace, monospace; + font-size: 1em; +} + +/* Forms + ========================================================================== */ + +/** + * Known limitation: by default, Chrome and Safari on OS X allow very limited + * styling of `select`, unless a `border` property is set. + */ + +/** + * 1. Correct color not being inherited. + * Known issue: affects color of disabled elements. + * 2. Correct font properties not being inherited. + * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. + */ + +button, +input, +optgroup, +select, +textarea { + color: inherit; /* 1 */ + font: inherit; /* 2 */ + margin: 0; /* 3 */ +} + +/** + * Address `overflow` set to `hidden` in IE 8/9/10/11. + */ + +button { + overflow: visible; +} + +/** + * Address inconsistent `text-transform` inheritance for `button` and `select`. + * All other form control elements do not inherit `text-transform` values. + * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera. + * Correct `select` style inheritance in Firefox. + */ + +button, +select { + text-transform: none; +} + +/** + * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` + * and `video` controls. + * 2. Correct inability to style clickable `input` types in iOS. + * 3. Improve usability and consistency of cursor style between image-type + * `input` and others. + */ + +button, +html input[type="button"], /* 1 */ +input[type="reset"], +input[type="submit"] { + -webkit-appearance: button; /* 2 */ + cursor: pointer; /* 3 */ +} + +/** + * Re-set default cursor for disabled elements. + */ + +button[disabled], +html input[disabled] { + cursor: default; +} + +/** + * Remove inner padding and border in Firefox 4+. + */ + +button::-moz-focus-inner, +input::-moz-focus-inner { + border: 0; + padding: 0; +} + +/** + * Address Firefox 4+ setting `line-height` on `input` using `!important` in + * the UA stylesheet. + */ + +input { + line-height: normal; +} + +/** + * It's recommended that you don't attempt to style these elements. + * Firefox's implementation doesn't respect box-sizing, padding, or width. + * + * 1. Address box sizing set to `content-box` in IE 8/9/10. + * 2. Remove excess padding in IE 8/9/10. + */ + +input[type="checkbox"], +input[type="radio"] { + box-sizing: border-box; /* 1 */ + padding: 0; /* 2 */ +} + +/** + * Fix the cursor style for Chrome's increment/decrement buttons. For certain + * `font-size` values of the `input`, it causes the cursor style of the + * decrement button to change from `default` to `text`. + */ + +input[type="number"]::-webkit-inner-spin-button, +input[type="number"]::-webkit-outer-spin-button { + height: auto; +} + +/** + * 1. Address `appearance` set to `searchfield` in Safari and Chrome. + * 2. Address `box-sizing` set to `border-box` in Safari and Chrome + * (include `-moz` to future-proof). + */ + +input[type="search"] { + -webkit-appearance: textfield; /* 1 */ + -moz-box-sizing: content-box; + -webkit-box-sizing: content-box; /* 2 */ + box-sizing: content-box; +} + +/** + * Remove inner padding and search cancel button in Safari and Chrome on OS X. + * Safari (but not Chrome) clips the cancel button when the search input has + * padding (and `textfield` appearance). + */ + +input[type="search"]::-webkit-search-cancel-button, +input[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} + +/** + * Define consistent border, margin, and padding. + */ + +fieldset { + border: 1px solid #c0c0c0; + margin: 0 2px; + padding: 0.35em 0.625em 0.75em; +} + +/** + * 1. Correct `color` not being inherited in IE 8/9/10/11. + * 2. Remove padding so people aren't caught out if they zero out fieldsets. + */ + +legend { + border: 0; /* 1 */ + padding: 0; /* 2 */ +} + +/** + * Remove default vertical scrollbar in IE 8/9/10/11. + */ + +textarea { + overflow: auto; +} + +/** + * Don't inherit the `font-weight` (applied by a rule above). + * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. + */ + +optgroup { + font-weight: bold; +} + +/* Tables + ========================================================================== */ + +/** + * Remove most spacing between table cells. + */ + +table { + border-collapse: collapse; + border-spacing: 0; +} + +td, +th { + padding: 0; +} diff --git a/css/skeleton.css b/css/skeleton.css @@ -0,0 +1,420 @@ +/* +* Skeleton V2.0.4 +* Copyright 2014, Dave Gamache +* www.getskeleton.com +* Free to use under the MIT license. +* http://www.opensource.org/licenses/mit-license.php +* 12/29/2014 +*/ + + +/* Table of contents +–––––––––––––––––––––––––––––––––––––––––––––––––– +- Grid +- Base Styles +- Typography +- Links +- Buttons +- Forms +- Lists +- Code +- Tables +- Spacing +- Utilities +- Clearing +- Media Queries +*/ + + +/* Grid +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +.container { + position: relative; + width: 100%; + max-width: 960px; + margin: 0 auto; + padding: 0 20px; + box-sizing: border-box; } +.column, +.columns { + width: 100%; + float: left; + box-sizing: border-box; } + +/* For devices larger than 400px */ +@media (min-width: 400px) { + .container { + width: 85%; + padding: 0; } +} + +/* For devices larger than 550px */ +@media (min-width: 550px) { + .container { + width: 80%; } + .column, + .columns { + margin-left: 4%; } + .column:first-child, + .columns:first-child { + margin-left: 0; } + + .one.column, + .one.columns { width: 4.66666666667%; } + .two.columns { width: 13.3333333333%; } + .three.columns { width: 22%; } + .four.columns { width: 30.6666666667%; } + .five.columns { width: 39.3333333333%; } + .six.columns { width: 48%; } + .seven.columns { width: 56.6666666667%; } + .eight.columns { width: 65.3333333333%; } + .nine.columns { width: 74.0%; } + .ten.columns { width: 82.6666666667%; } + .eleven.columns { width: 91.3333333333%; } + .twelve.columns { width: 100%; margin-left: 0; } + + .one-third.column { width: 30.6666666667%; } + .two-thirds.column { width: 65.3333333333%; } + + .one-half.column { width: 48%; } + + /* Offsets */ + .offset-by-one.column, + .offset-by-one.columns { margin-left: 8.66666666667%; } + .offset-by-two.column, + .offset-by-two.columns { margin-left: 17.3333333333%; } + .offset-by-three.column, + .offset-by-three.columns { margin-left: 26%; } + .offset-by-four.column, + .offset-by-four.columns { margin-left: 34.6666666667%; } + .offset-by-five.column, + .offset-by-five.columns { margin-left: 43.3333333333%; } + .offset-by-six.column, + .offset-by-six.columns { margin-left: 52%; } + .offset-by-seven.column, + .offset-by-seven.columns { margin-left: 60.6666666667%; } + .offset-by-eight.column, + .offset-by-eight.columns { margin-left: 69.3333333333%; } + .offset-by-nine.column, + .offset-by-nine.columns { margin-left: 78.0%; } + .offset-by-ten.column, + .offset-by-ten.columns { margin-left: 86.6666666667%; } + .offset-by-eleven.column, + .offset-by-eleven.columns { margin-left: 95.3333333333%; } + + .offset-by-one-third.column, + .offset-by-one-third.columns { margin-left: 34.6666666667%; } + .offset-by-two-thirds.column, + .offset-by-two-thirds.columns { margin-left: 69.3333333333%; } + + .offset-by-one-half.column, + .offset-by-one-half.columns { margin-left: 52%; } + +} + + +/* Base Styles +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +/* NOTE +html is set to 62.5% so that all the REM measurements throughout Skeleton +are based on 10px sizing. So basically 1.5rem = 15px :) */ +html { + font-size: 62.5%; } +body { + font-size: 1.6em; /* currently ems cause chrome bug misinterpreting rems on body element */ + line-height: 1.6; + font-weight: 400; + color: #222; } + + +/* Typography +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +h1, h2, h3, h4, h5, h6 { + margin-top: 0; + margin-bottom: 2rem; + font-weight: 300; } +h1 { font-size: 4.0rem; line-height: 1.2; letter-spacing: -.1rem;} +h2 { font-size: 3.6rem; line-height: 1.25; letter-spacing: -.1rem; } +h3 { font-size: 3.0rem; line-height: 1.3; letter-spacing: -.1rem; } +h4 { font-size: 2.4rem; line-height: 1.35; letter-spacing: -.08rem; } +h5 { font-size: 1.8rem; line-height: 1.5; letter-spacing: -.08rem; } +h6 { font-size: 1.5rem; line-height: 1.6; letter-spacing: 0; } + +/* Larger than phablet */ +@media (min-width: 550px) { + h1 { font-size: 5.0rem; } + h2 { font-size: 4.2rem; } + h3 { font-size: 3.6rem; } + h4 { font-size: 3.0rem; } + h5 { font-size: 2.4rem; } + h6 { font-size: 1.5rem; } +} + +p { + margin-top: 0; } + + +/* Links +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +a { + color: #0595ad; + text-decoration: none; +} +a:hover { + color: #9BBDF2; +} + + +/* Buttons +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +.button, +button, +input[type="submit"], +input[type="reset"], +input[type="button"] { + display: inline-block; + height: 38px; + padding: 0 30px; + color: white; + text-align: center; + font-size: 11px; + font-weight: 600; + line-height: 38px; + letter-spacing: .1rem; + text-transform: uppercase; + text-decoration: none; + white-space: nowrap; + background-color: transparent; + border-radius: 4px; + border: 1px solid #bbb; + cursor: pointer; + box-sizing: border-box; } +.button:hover, +button:hover, +input[type="submit"]:hover, +input[type="reset"]:hover, +input[type="button"]:hover, +.button:focus, +button:focus, +input[type="submit"]:focus, +input[type="reset"]:focus, +input[type="button"]:focus { + color: #999; + border-color: #999; + outline: 0; } +.button.button-primary, +button.button-primary, +input[type="submit"].button-primary, +input[type="reset"].button-primary, +input[type="button"].button-primary { + color: #FFF; + background-color: #33C3F0; + border-color: #33C3F0; } +.button.button-primary:hover, +button.button-primary:hover, +input[type="submit"].button-primary:hover, +input[type="reset"].button-primary:hover, +input[type="button"].button-primary:hover, +.button.button-primary:focus, +button.button-primary:focus, +input[type="submit"].button-primary:focus, +input[type="reset"].button-primary:focus, +input[type="button"].button-primary:focus { + color: #FFF; + background-color: #1EAEDB; + border-color: #1EAEDB; } + + +/* Forms +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +input[type="email"], +input[type="number"], +input[type="search"], +input[type="text"], +input[type="tel"], +input[type="url"], +input[type="password"], +textarea, +select { + height: 38px; + padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */ + background-color: #fff; + border: 1px solid #D1D1D1; + border-radius: 4px; + box-shadow: none; + box-sizing: border-box; } +/* Removes awkward default styles on some inputs for iOS */ +input[type="email"], +input[type="number"], +input[type="search"], +input[type="text"], +input[type="tel"], +input[type="url"], +input[type="password"], +textarea { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; } +textarea { + min-height: 65px; + padding-top: 6px; + padding-bottom: 6px; } +input[type="email"]:focus, +input[type="number"]:focus, +input[type="search"]:focus, +input[type="text"]:focus, +input[type="tel"]:focus, +input[type="url"]:focus, +input[type="password"]:focus, +textarea:focus, +select:focus { + border: 1px solid #33C3F0; + outline: 0; } +label, +legend { + /* display: block; */ + margin-bottom: .5rem; + /* font-weight: 600; */ } +fieldset { + padding: 0; + border-width: 0; } +input[type="checkbox"], +input[type="radio"] { + display: inline; } +label > .label-body { + display: inline-block; + margin-left: .5rem; + font-weight: normal; } + + +/* Lists +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +ul { + list-style: circle inside; } +ol { + list-style: decimal inside; } +ol, ul { + padding-left: 0; + margin-top: 0; } +ul ul, +ul ol, +ol ol, +ol ul { + margin: 1.5rem 0 1.5rem 3rem; + font-size: 90%; } +li { + margin-bottom: 0.2rem; } + + +/* Code +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +code { + padding: .2rem .5rem; + margin: 0 .2rem; + font-size: 90%; + white-space: nowrap; + background: #F1F1F1; + border: 1px solid #E1E1E1; + border-radius: 4px; } +pre > code { + display: block; + padding: 1rem 1.5rem; + white-space: pre; } + + +/* Tables +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +th, +td { + padding: 12px 15px; + text-align: left; + border-bottom: 1px solid #E1E1E1; } +th:first-child, +td:first-child { + padding-left: 0; } +th:last-child, +td:last-child { + padding-right: 0; } + + +/* Spacing +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +button, +.button { + margin-bottom: 1rem; } +input, +textarea, +select, +fieldset { + margin-bottom: 1.5rem; } +pre, +blockquote, +dl, +figure, +table, +p, +ul, +ol, +form { + margin-bottom: 2.5rem; } + + +/* Utilities +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +.u-full-width { + width: 100%; + box-sizing: border-box; } +.u-max-full-width { + max-width: 100%; + box-sizing: border-box; } +.u-pull-right { + float: right; } +.u-pull-left { + float: left; } + + +/* Misc +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +hr { + margin-top: 3rem; + margin-bottom: 3.5rem; + border-width: 0; + border-top: 1px solid #E1E1E1; } + + +/* Clearing +–––––––––––––––––––––––––––––––––––––––––––––––––– */ + +/* Self Clearing Goodness */ +.container:after, +.row:after, +.u-cf { + content: ""; + display: table; + clear: both; } + + +/* Media Queries +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +/* +Note: The best way to structure the use of media queries is to create the queries +near the relevant code. For example, if you wanted to change the styles for buttons +on small devices, paste the mobile query code up in the buttons section and style it +there. +*/ + + +/* Larger than mobile */ +@media (min-width: 400px) {} + +/* Larger than phablet (also point when grid becomes active) */ +@media (min-width: 550px) {} + +/* Larger than tablet */ +@media (min-width: 750px) {} + +/* Larger than desktop */ +@media (min-width: 1000px) {} + +/* Larger than Desktop HD */ +@media (min-width: 1200px) {} diff --git a/img/activation.svg b/img/activation.svg @@ -0,0 +1 @@ +<svg id="_x33_0" enable-background="new 0 0 62.48 62" height="512" viewBox="0 0 62.48 62" width="512" xmlns="http://www.w3.org/2000/svg"><g><g><g><path d="m18 33 1.86 5.58c-.9.27-1.87.42-2.86.42s-1.96-.15-2.86-.42l1.86-5.58z" fill="#ff826e"/></g><g><path d="m19.2 31.2-1.2 1.8h-2l-1.2-1.8 2.2-2.2z" fill="#fc6e51"/></g><g><path d="m21 33 1.55-4.64c1.59.83 2.98 2.01 4.05 3.44-.95 3.25-3.5 5.82-6.74 6.78l-1.86-5.58 1.2-1.8z" fill="#e6e9ed"/></g><g><path d="m13 33 1.8-1.8 1.2 1.8-1.86 5.58c-3.24-.96-5.79-3.53-6.74-6.78 1.07-1.42 2.45-2.61 4.05-3.44z" fill="#e6e9ed"/></g><g><path d="m19 29c1.24 0 2.42-.28 3.47-.79l.08.15-1.55 4.64-1.8-1.8-2.2-2.2z" fill="#ccd1d9"/></g><g><path d="m14.8 31.2-1.8 1.8-1.55-4.64c.06-.04.13-.07.19-.1 1.02.47 2.16.74 3.36.74h2z" fill="#ccd1d9"/></g><g><path d="m11.18 9h-.01-.17c-2.21 0-4 1.79-4 4v2h-1c-.79 0-1.5.3-2.03.8l-.81-4.81c-.11-.66-.16-1.32-.16-1.99 0-1.66.67-3.16 1.76-4.24 1.08-1.09 2.58-1.76 4.24-1.76 1.28-1.28 3.02-2 4.83-2h8.07c5.03 0 9.1 4.07 9.1 9.1 0 .6-.06 1.2-.18 1.78l-.62 3.12-.16.8c-.53-.5-1.25-.8-2.04-.8h-1c0-2.21-1.79-4-4-4h-9c-.83 0-1.58-.34-2.12-.88-.31-.31-.56-.69-.7-1.12z" fill="#656d78"/></g><g><path d="m19 57v4h-6v-2h-4v2h-6v-4h2v-4h4 4 4v4z" fill="#b4dd7f"/></g><g><path d="m41 49v4h-24-4v-4z" fill="#b4dd7f"/></g><g><path d="m9 49h-4v4h4 4v-4z" fill="#a0d468"/></g><g><path d="m5 49v4h-2c-1.1 0-2-.9-2-2 0-.55.22-1.05.59-1.41.36-.37.86-.59 1.41-.59z" fill="#b4dd7f"/></g><g><path d="m55 45c3.31 0 6 2.69 6 6s-2.69 6-6 6h-2l-.29.58c-.53 1.05-1.32 1.9-2.28 2.5-.96.59-2.08.92-3.25.92-3.41 0-6.18-2.77-6.18-6.18v-1.82-4-1.82c0-1.7.69-3.25 1.81-4.37s2.67-1.81 4.37-1.81c2.34 0 4.48 1.32 5.53 3.42l.29.58zm2 6c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2zm-8 4v-8c0-.55-.22-1.05-.59-1.41-.36-.37-.86-.59-1.41-.59-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2s2-.9 2-2z" fill="#a0d468"/></g><g><path d="m5 20.82c.31.12.65.18 1 .18h1c0 1.36.34 2.64.94 3.76-.6 1.29-.94 2.73-.94 4.24 0 .97.14 1.91.4 2.8.95 3.25 3.5 5.82 6.74 6.78.9.27 1.87.42 2.86.42s1.96-.15 2.86-.42c3.24-.96 5.79-3.53 6.74-6.78.26-.89.4-1.83.4-2.8 0-1.51-.34-2.95-.94-4.24.6-1.12.94-2.4.94-3.76h1c.35 0 .69-.06 1-.18v.01.05c0 2.42 1.65 4.53 4 5.12v3 3l-.15.02c-1.31.22-2.42 1.1-2.93 2.33-.2.47-.29.98-.29 1.48 0 .79.24 1.58.72 2.24l.09.12-4.25 4.24-.12-.08c-1.08-.78-2.49-.94-3.72-.43s-2.11 1.62-2.33 2.93l-.02.15h-6l-.02-.15c-.22-1.31-1.1-2.42-2.33-2.93-.47-.2-.98-.29-1.48-.29-.79 0-1.58.24-2.24.72l-.12.08-4.25-4.24.09-.12c.78-1.08.94-2.49.43-3.72s-1.62-2.11-2.93-2.33l-.15-.02v-6c1.18-.3 2.18-.97 2.88-1.87.71-.91 1.12-2.04 1.12-3.25v-.05z" fill="#fcd770"/></g><g><path d="m30.2 15h18.8v-4l12 11-12 11v-4h-16v-3c-2.35-.59-4-2.7-4-5.12v-.05-.01c.43-.14.81-.39 1.12-.7.54-.54.88-1.29.88-2.12 0-.87-.37-1.65-.96-2.2z" fill="#ff826e"/></g><g><path d="m30.04 15.8c.59.55.96 1.33.96 2.2 0 .83-.34 1.58-.88 2.12-.31.31-.69.56-1.12.7-.31.12-.65.18-1 .18h-1v-6h1c.79 0 1.51.3 2.04.8z" fill="#f0d0b4"/></g><g><path d="m27 15v6c0 1.36-.34 2.64-.94 3.76-.8 1.5-2.06 2.71-3.59 3.45-1.05.51-2.23.79-3.47.79h-2-2c-1.2 0-2.34-.27-3.36-.74-1.58-.73-2.88-1.96-3.7-3.5-.6-1.12-.94-2.4-.94-3.76v-6-2c0-2.21 1.79-4 4-4h.17.01c.14.43.39.81.7 1.12.54.54 1.29.88 2.12.88h9c2.21 0 4 1.79 4 4z" fill="#f0d0b4"/></g><g><path d="m6 21c-.35 0-.69-.06-1-.18-.43-.14-.81-.39-1.12-.7-.54-.54-.88-1.29-.88-2.12 0-.87.37-1.66.97-2.2.53-.5 1.24-.8 2.03-.8h1v6z" fill="#f0d0b4"/></g><g><path d="m13 21h8c0 1.1-.45 2.1-1.17 2.83-.73.72-1.73 1.17-2.83 1.17-2.21 0-4-1.79-4-4z" fill="#ff826e"/></g></g><g><path d="m12 21c0 2.757 2.243 5 5 5s5-2.243 5-5v-1h-10zm7.829 1c-.413 1.164-1.525 2-2.829 2s-2.416-.836-2.829-2z"/><path d="m12 17c0-.551.449-1 1-1s1 .449 1 1v1h2v-1c0-1.654-1.346-3-3-3s-3 1.346-3 3v1h2z"/><path d="m21 14c-1.654 0-3 1.346-3 3v1h2v-1c0-.551.449-1 1-1s1 .449 1 1v1h2v-1c0-1.654-1.346-3-3-3z"/><path d="m3.154 34.736c.379.917.262 1.945-.315 2.752l-.58.812 5.441 5.441.812-.58c.807-.576 1.835-.695 2.752-.315.917.379 1.562 1.19 1.725 2.17l.164.984h7.693l.165-.984c.163-.979.808-1.79 1.725-2.169.916-.38 1.945-.261 2.752.315l.812.58 5.441-5.441-.58-.812c-.577-.807-.694-1.836-.315-2.752.379-.917 1.19-1.562 2.17-1.725l.984-.165v-2.847h14v5.273l14.48-13.273-14.48-13.273v5.273h-16.58l.384-1.92c.13-.65.196-1.316.196-1.98 0-5.57-4.53-10.1-10.099-10.1h-8.073c-1.955 0-3.799.711-5.24 2.012-3.669.214-6.588 3.266-6.588 6.988 0 .718.06 1.441.178 2.151l.725 4.349c-.556.687-.903 1.549-.903 2.5 0 1.455.789 2.719 1.954 3.419-.22 1.732-1.466 3.178-3.197 3.611l-.757.189v7.627l.984.165c.979.163 1.79.808 2.17 1.725zm46.846-18.736v-2.727l9.52 8.727-9.52 8.727v-2.727h-16v-2.781l-.757-.189c-1.731-.433-2.977-1.879-3.197-3.611 1.165-.7 1.954-1.964 1.954-3.419 0-.732-.212-1.409-.556-2zm-46 2c0-1.103.897-2 2-2v4c-1.103 0-2-.897-2-2zm22 3c0 3.86-3.14 7-7 7h-4c-3.86 0-7-3.14-7-7v-8c0-1.503 1.112-2.752 2.556-2.967.697 1.176 1.98 1.967 3.444 1.967h9c1.654 0 3 1.346 3 3zm-8.535 11h-.93l-.449-.673.914-.913.913.913zm-4.028-.851-.462-1.387c.528.122 1.073.194 1.631.218zm5.957-1.169c.558-.024 1.104-.096 1.631-.218l-.462 1.387zm-9.695-1.723c-.594.405-1.147.866-1.668 1.363-.014-.206-.031-.411-.031-.62 0-.707.086-1.399.245-2.073.434.495.922.94 1.454 1.33zm1.198 1.597 1.666 4.997 2.081-2.081.252.378-1.383 4.149c-2.318-.978-4.135-2.904-4.985-5.286.684-.827 1.479-1.56 2.369-2.157zm5.824 4.146h.558l1.285 3.855c-.509.089-1.03.145-1.564.145s-1.055-.056-1.564-.145zm3.765 3.297-1.383-4.149.252-.378 2.081 2.081 1.667-5c.89.596 1.684 1.333 2.367 2.159-.848 2.382-2.665 4.308-4.984 5.287zm5.514-8.297c0 .209-.017.413-.031.619-.52-.496-1.068-.962-1.661-1.367.53-.389 1.015-.832 1.448-1.325.158.673.244 1.365.244 2.073zm2-13c1.103 0 2 .897 2 2s-.897 2-2 2zm-19-12h.414l.293-.293c1.101-1.101 2.564-1.707 4.121-1.707h8.073c4.466 0 8.099 3.633 8.099 8.099 0 .533-.053 1.067-.157 1.588l-.511 2.558c-.419-.149-.863-.245-1.332-.245h-.101c-.465-2.279-2.484-4-4.899-4h-9c-1.103 0-2-.897-2-2s.897-2 2-2v-2c-2.206 0-4 1.794-4 4 0 .034 0 .067.001.1-2.28.464-4.001 2.485-4.001 4.9v1c-.451 0-.877.092-1.281.23l-.568-3.408c-.1-.601-.151-1.214-.151-1.822 0-2.757 2.243-5 5-5zm-7 22.729c2.034-.79 3.492-2.584 3.885-4.741.039.002.076.012.115.012h.059c.11.989.386 1.927.791 2.793-.554 1.334-.85 2.744-.85 4.207 0 6.065 4.935 11 11 11s11-4.935 11-11c0-1.463-.296-2.873-.85-4.207.405-.867.681-1.804.791-2.793h.059c.037 0 .071-.01.108-.011.384 2.143 1.848 3.947 3.892 4.74v4.475c-1.353.431-2.448 1.428-3.001 2.767-.554 1.337-.485 2.817.167 4.077l-3.117 3.117c-1.261-.651-2.739-.72-4.077-.167-1.339.554-2.337 1.649-2.767 3.001h-4.408c-.431-1.353-1.428-2.448-2.767-3.001-1.337-.554-2.815-.485-4.077.167l-3.117-3.117c.651-1.26.721-2.74.167-4.077-.555-1.339-1.651-2.337-3.003-2.767z"/><path d="m47 44c-1.654 0-3 1.346-3 3v8c0 1.654 1.346 3 3 3s3-1.346 3-3v-8c0-1.654-1.346-3-3-3zm1 11c0 .551-.449 1-1 1s-1-.449-1-1v-8c0-.551.449-1 1-1s1 .449 1 1z"/><path d="m55 48c-1.654 0-3 1.346-3 3s1.346 3 3 3 3-1.346 3-3-1.346-3-3-3zm0 4c-.551 0-1-.449-1-1s.449-1 1-1 1 .449 1 1-.449 1-1 1z"/><path d="m55 44h-1.382l-.015-.031c-1.225-2.448-3.686-3.969-6.423-3.969-3.959 0-7.18 3.221-7.18 7.18v.82h-37c-1.654 0-3 1.346-3 3s1.346 3 3 3h1v2h-2v6h8v-2h2v2h8v-6h-2v-2h22v.82c0 3.959 3.221 7.18 7.18 7.18 2.737 0 5.198-1.521 6.422-3.969l1.398-.031c3.86 0 7-3.14 7-7s-3.14-7-7-7zm-45 8v-2h2v2zm-4 0v-2h2v2zm-3 0c-.551 0-1-.449-1-1s.449-1 1-1h1v2zm15 6v2h-4v-2h-6v2h-4v-2h2v-4h10v4zm-4-6v-2h26v2zm41 4h-2.618l-.569 1.136c-.883 1.767-2.658 2.864-4.633 2.864-2.856 0-5.18-2.324-5.18-5.18v-7.64c0-2.856 2.324-5.18 5.18-5.18 1.975 0 3.75 1.097 4.634 2.864l.568 1.136h2.618c2.757 0 5 2.243 5 5s-2.243 5-5 5z"/><path d="m34 10h2v2h-2z"/><path d="m38 10h2v2h-2z"/><path d="m42 10h2v2h-2z"/><path d="m28 44h2v2h-2z"/><path d="m32 44h2v2h-2z"/><path d="m36 44h2v2h-2z"/></g></g></svg>+ \ No newline at end of file diff --git a/img/bitcoin-p2p.svg b/img/bitcoin-p2p.svg @@ -0,0 +1 @@ +<svg height="512" viewBox="0 0 64 64" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Filled_outline" data-name="Filled outline"><circle cx="32" cy="32" fill="#f4f4e6" r="27"/><path d="m32 60a28.025 28.025 0 0 1 -27.521-33.184l1.965.368a26.029 26.029 0 0 0 25.556 30.816 30.468 30.468 0 0 0 12.555-2.9l.89 1.792a32.645 32.645 0 0 1 -13.445 3.108z" fill="#195c85"/><path d="m56.889 45.459-1.778-.918a28.592 28.592 0 0 0 2.889-12.541 25.955 25.955 0 0 0 -3.763-13.481l1.709-1.038a27.947 27.947 0 0 1 4.054 14.519 30.693 30.693 0 0 1 -3.111 13.459z" fill="#195c85"/><path d="m13.526 13.7-1.42-1.4a28.021 28.021 0 0 1 32.339-5.389l-.89 1.789a26.022 26.022 0 0 0 -30.029 5z" fill="#195c85"/><circle cx="32" cy="32" fill="#ffd782" r="10"/><g fill="#e97424"><path d="m33 25h2v3h-2z"/><path d="m29 25h2v3h-2z"/><path d="m29 36h2v3h-2z"/><path d="m33 36h2v3h-2z"/><path d="m35 33h-5a1 1 0 0 1 -1-1v-4a1 1 0 0 1 1-1h5a3 3 0 0 1 0 6zm-4-2h4a1 1 0 0 0 0-2h-4z"/><path d="m35 37h-5a1 1 0 0 1 -1-1v-4a1 1 0 0 1 1-1h5a3 3 0 0 1 0 6zm-4-2h4a1 1 0 0 0 0-2h-4z"/><path d="m27 27h3v2h-3z"/><path d="m27 35h4v2h-4z"/></g><path d="m37.343 20h11.314v2h-11.314z" fill="#32b1cc" transform="matrix(.707 -.707 .707 .707 -2.255 36.556)"/><path d="m40.5 37.964h2v7.071h-2z" fill="#32b1cc" transform="matrix(.707 -.707 .707 .707 -17.19 41.5)"/><path d="m20 21.838h2v6.325h-2z" fill="#32b1cc" transform="matrix(.316 -.949 .949 .316 -9.358 37.017)"/><path d="m38.955 29h22.091v2h-22.091z" fill="#32b1cc" transform="matrix(.09 -.996 .996 .09 15.607 77.086)"/><path d="m16.963 14h27.074v2h-27.074z" fill="#32b1cc" transform="matrix(.997 -.074 .074 .997 -1.029 2.305)"/><path d="m13 28.384h2v15.232h-2z" fill="#32b1cc" transform="matrix(.919 -.394 .394 .919 -13.049 8.426)"/><path d="m30.5 38.987h2v19.026h-2z" fill="#32b1cc" transform="matrix(.053 -.999 .999 .053 -18.589 77.407)"/><path d="m20.172 40h5.657v2h-5.657z" fill="#32b1cc" transform="matrix(.707 -.707 .707 .707 -22.255 28.272)"/><path d="m10 4h6v2h-6z" fill="#fcf05a"/><path d="m12 2h2v6h-2z" fill="#fcf05a"/><path d="m2 51h6v2h-6z" fill="#fcf05a"/><path d="m4 49h2v6h-2z" fill="#fcf05a"/><path d="m56 58h6v2h-6z" fill="#fcf05a"/><path d="m58 56h2v6h-2z" fill="#fcf05a"/><path d="m33 9h2v2h-2z" fill="#d9176c"/><path d="m16 31h2v2h-2z" fill="#d9176c"/><path d="m28 53h2v2h-2z" fill="#d9176c"/><path d="m45 24h2v2h-2z" fill="#d9176c"/><circle cx="51" cy="11" fill="#f9bb4b" r="8"/><circle cx="11" cy="21" fill="#f9bb4b" r="8"/><circle cx="49" cy="49" fill="#f9bb4b" r="8"/><circle cx="51" cy="9" fill="#d9176c" r="2"/><path d="m54 16a3 3 0 0 0 -6 0v2.413a7.96 7.96 0 0 0 6 0z" fill="#d9176c"/><circle cx="11" cy="19" fill="#d9176c" r="2"/><path d="m14 26a3 3 0 0 0 -6 0v2.413a7.96 7.96 0 0 0 6 0z" fill="#d9176c"/><circle cx="49" cy="47" fill="#d9176c" r="2"/><path d="m52 54a3 3 0 0 0 -6 0v2.413a7.96 7.96 0 0 0 6 0z" fill="#d9176c"/><circle cx="19" cy="46" fill="#f9bb4b" r="4"/><path d="m35 27v-2h-2v2h-2v-2h-2v2h-2v2h2v6h-2v2h2v2h2v-2h2v2h2v-2a2.987 2.987 0 0 0 2.22-5 2.987 2.987 0 0 0 -2.22-5zm0 8h-4v-2h4a1 1 0 0 1 0 2zm0-4h-4v-2h4a1 1 0 0 1 0 2z"/><path d="m54 9a3 3 0 1 0 -3 3 3 3 0 0 0 3-3zm-3 1a1 1 0 1 1 1-1 1 1 0 0 1 -1 1z"/><path d="m14 19a3 3 0 1 0 -3 3 3 3 0 0 0 3-3zm-3 1a1 1 0 1 1 1-1 1 1 0 0 1 -1 1z"/><path d="m52 47a3 3 0 1 0 -3 3 3 3 0 0 0 3-3zm-3 1a1 1 0 1 1 1-1 1 1 0 0 1 -1 1z"/><path d="m2 21a8.958 8.958 0 0 0 2.428 6.129 27.995 27.995 0 0 0 27.572 32.871 32.788 32.788 0 0 0 13.05-2.925 8.98 8.98 0 0 0 12.028-12.018 30.867 30.867 0 0 0 2.922-13.057 27.951 27.951 0 0 0 -3.642-13.786 8.989 8.989 0 1 0 -13.066-11.836 27.986 27.986 0 0 0 -30.987 5.728 8.916 8.916 0 0 0 -1.305-.106 9.01 9.01 0 0 0 -9 9zm30 37a25.829 25.829 0 0 1 -25.756-29.374 8.926 8.926 0 0 0 4.082 1.34l5.3 12.368a4.982 4.982 0 1 0 7.306 6.716l17.119.9a8.978 8.978 0 0 0 3.032 5.814 30.972 30.972 0 0 1 -11.083 2.236zm-8.448-18.966-2.447 2.447a4.761 4.761 0 0 0 -3.746-.182l-4.9-11.429a9.013 9.013 0 0 0 6.415-4.524l3.587 1.2a10.945 10.945 0 0 0 1.089 12.492zm26.359-19.107-1.829 20.12a8.943 8.943 0 0 0 -4.693 1.928l-2.941-2.941a10.97 10.97 0 0 0 0-14.068l6.134-6.134a8.914 8.914 0 0 0 3.329 1.095zm-.911-2.227v-1.7a2 2 0 0 1 4 0v1.7a6.927 6.927 0 0 1 -4 0zm-26.279 24.993 2.245-2.245a10.97 10.97 0 0 0 14.068 0l2.941 2.941a8.949 8.949 0 0 0 -1.908 4.561l-16.197-.85a4.863 4.863 0 0 0 -1.149-4.4zm18.279-10.693a9 9 0 1 1 -9-9 9.01 9.01 0 0 1 9 9zm-19 14a3 3 0 1 1 -3-3 3 3 0 0 1 3 3zm-9-18.3a6.927 6.927 0 0 1 -4 0v-1.7a2 2 0 0 1 4 0zm38 28a6.927 6.927 0 0 1 -4 0v-1.7a2 2 0 0 1 4 0zm2-.969v-.731a4 4 0 0 0 -8 0v.736a7 7 0 1 1 8 0zm5-22.731a29.342 29.342 0 0 1 -2.217 11.1 8.978 8.978 0 0 0 -5.694-3.03l1.829-20.12a8.925 8.925 0 0 0 2.717-.726 25.96 25.96 0 0 1 3.365 12.776zm-7-28a6.994 6.994 0 0 1 4 12.736v-.736a4 4 0 0 0 -8 0v.736a6.994 6.994 0 0 1 4-12.736zm-6.054 13.64-5.912 5.912a10.964 10.964 0 0 0 -15.363 1.284l-4.03-1.343a8.9 8.9 0 0 0 -.66-6.637l24.006-1.778a9.052 9.052 0 0 0 1.959 2.562zm-12.946-11.64a25.738 25.738 0 0 1 10.454 2.194 8.809 8.809 0 0 0 -.19 4.932l-24.621 1.824a9.016 9.016 0 0 0 -3.1-2.219 25.8 25.8 0 0 1 17.457-6.731zm-21 8a6.994 6.994 0 0 1 4 12.736v-.736a4 4 0 0 0 -8 0v.736a6.994 6.994 0 0 1 4-12.736z"/><path d="m12 2v2h-2v2h2v2h2v-2h2v-2h-2v-2z"/><path d="m4 55h2v-2h2v-2h-2v-2h-2v2h-2v2h2z"/><path d="m60 56h-2v2h-2v2h2v2h2v-2h2v-2h-2z"/><path d="m33 9h2v2h-2z"/><path d="m16 31h2v2h-2z"/><path d="m28 53h2v2h-2z"/><path d="m45 24h2v2h-2z"/></g></svg>+ \ No newline at end of file diff --git a/img/bitcoin-phone.svg b/img/bitcoin-phone.svg @@ -0,0 +1 @@ +<svg height="512" viewBox="0 0 64 64" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Filled_outline" data-name="Filled outline"><g fill="#195c85"><path d="m46.707 18.707-1.414-1.414 3-3a1 1 0 0 1 .707-.293h8v2h-7.586z"/><path d="m17.293 20.707-4.707-4.707h-5.586v-2h6a1 1 0 0 1 .707.293l5 5z"/><path d="m13 45h-6v-2h5.586l4.707-4.707 1.414 1.414-5 5a1 1 0 0 1 -.707.293z"/><path d="m17.628 29.929-4.82-1.929h-6.808v-2h7a1.012 1.012 0 0 1 .372.071l5 2z"/><path d="m17.628 37.929-4.82-1.929h-6.808v-2h7a1.012 1.012 0 0 1 .372.071l5 2z"/><path d="m46.515 27.857-1.03-1.714 5-3a1 1 0 0 1 .515-.143h7v2h-6.723z"/><path d="m58 36h-7a1 1 0 0 1 -.515-.143l-5-3 1.03-1.714 4.762 2.857h6.723z"/><path d="m58 44h-7a1 1 0 0 1 -.515-.143l-5-3 1.03-1.714 4.762 2.857h6.723z"/></g><rect fill="#767f87" height="58" rx="4" transform="matrix(-1 0 0 -1 64 64)" width="28" x="18" y="3"/><circle cx="32" cy="55" fill="#394d5c" r="2"/><path d="m30 6h8v2h-8z" fill="#394d5c"/><path d="m26 6h2v2h-2z" fill="#394d5c"/><path d="m18 11h28v38h-28z" fill="#f4f4e6"/><path d="m23 31h2v12h-2z" fill="#7fcac9"/><path d="m39 31h2v13h-2z" fill="#7fcac9"/><path d="m31 35h2v10h-2z" fill="#7fcac9"/><path d="m35 34h2v8h-2z" fill="#7fcac9"/><path d="m27 34h2v7h-2z" fill="#7fcac9"/><path d="m27 43h2v2h-2z" fill="#7fcac9"/><path d="m35 44h2v2h-2z" fill="#7fcac9"/><circle cx="5" cy="15" fill="#32b1cc" r="2"/><circle cx="5" cy="27" fill="#32b1cc" r="2"/><circle cx="5" cy="35" fill="#32b1cc" r="2"/><circle cx="5" cy="44" fill="#32b1cc" r="2"/><circle cx="59" cy="15" fill="#32b1cc" r="2"/><circle cx="59" cy="24" fill="#32b1cc" r="2"/><circle cx="59" cy="35" fill="#32b1cc" r="2"/><circle cx="59" cy="43" fill="#32b1cc" r="2"/><path d="m9 4h2v2h-2z" fill="#d9176c"/><path d="m9 8h2v2h-2z" fill="#d9176c"/><path d="m7 6h2v2h-2z" fill="#d9176c"/><path d="m11 6h2v2h-2z" fill="#d9176c"/><path d="m53 49h2v2h-2z" fill="#d9176c"/><path d="m53 53h2v2h-2z" fill="#d9176c"/><path d="m51 51h2v2h-2z" fill="#d9176c"/><path d="m55 51h2v2h-2z" fill="#d9176c"/><circle cx="32" cy="25" fill="#ffd782" r="10"/><path d="m33 18h2v3h-2z" fill="#e97424"/><path d="m29 18h2v3h-2z" fill="#e97424"/><path d="m29 29h2v3h-2z" fill="#e97424"/><path d="m33 29h2v3h-2z" fill="#e97424"/><path d="m35 26h-5a1 1 0 0 1 -1-1v-4a1 1 0 0 1 1-1h5a3 3 0 0 1 0 6zm-4-2h4a1 1 0 0 0 0-2h-4z" fill="#e97424"/><path d="m35 30h-5a1 1 0 0 1 -1-1v-4a1 1 0 0 1 1-1h5a3 3 0 0 1 0 6zm-4-2h4a1 1 0 0 0 0-2h-4z" fill="#e97424"/><path d="m27 20h3v2h-3z" fill="#e97424"/><path d="m27 28h4v2h-4z" fill="#e97424"/><path d="m32 52a3 3 0 1 0 3 3 3 3 0 0 0 -3-3zm0 4a1 1 0 1 1 1-1 1 1 0 0 1 -1 1z"/><path d="m30 6h8v2h-8z"/><path d="m26 6h2v2h-2z"/><path d="m32 14a10.985 10.985 0 0 0 -9 17.305v11.695h2v-9.521a11.013 11.013 0 0 0 2 1.307v6.214h2v-5.426a10.9 10.9 0 0 0 2 .375v9.051h2v-9.051a10.9 10.9 0 0 0 2-.375v6.426h2v-7.214a11.013 11.013 0 0 0 2-1.307v10.521h2v-12.695a10.985 10.985 0 0 0 -9-17.305zm0 20a9 9 0 1 1 9-9 9.011 9.011 0 0 1 -9 9z"/><path d="m35 20v-2h-2v2h-2v-2h-2v2h-2v2h2v6h-2v2h2v2h2v-2h2v2h2v-2a2.987 2.987 0 0 0 2.22-5 2.987 2.987 0 0 0 -2.22-5zm1 3a1 1 0 0 1 -1 1h-4v-2h4a1 1 0 0 1 1 1zm-1 5h-4v-2h4a1 1 0 0 1 0 2z"/><path d="m27 43h2v2h-2z"/><path d="m35 44h2v2h-2z"/><path d="m49.414 16h6.77a3 3 0 1 0 0-2h-7.184a1 1 0 0 0 -.707.293l-1.293 1.293v-8.586a5.006 5.006 0 0 0 -5-5h-20a5.006 5.006 0 0 0 -5 5v10.586l-3.293-3.293a1 1 0 0 0 -.707-.293h-5.184a3 3 0 1 0 0 2h4.77l4.414 4.414v7.109l-3.628-1.452a1.012 1.012 0 0 0 -.372-.071h-5.184a3 3 0 1 0 0 2h4.992l4.192 1.677v5.846l-3.628-1.452a1.012 1.012 0 0 0 -.372-.071h-5.184a3 3 0 1 0 0 2h4.992l4.192 1.677v.909l-4.414 4.414h-4.77a3 3 0 1 0 0 2h5.184a1 1 0 0 0 .707-.293l3.293-3.293v15.586a5.006 5.006 0 0 0 5 5h20a5.006 5.006 0 0 0 5-5v-15.234l3.485 2.091a1 1 0 0 0 .515.143h5.184a3 3 0 1 0 0-2h-4.907l-4.277-2.566v-5.668l3.485 2.091a1 1 0 0 0 .515.143h5.184a3 3 0 1 0 0-2h-4.907l-4.277-2.566v-3.868l4.277-2.566h4.907a3 3 0 1 0 0-2h-5.184a1 1 0 0 0 -.515.143l-3.485 2.091v-6.82zm9.586-2a1 1 0 1 1 -1 1 1 1 0 0 1 1-1zm-54 2a1 1 0 1 1 1-1 1 1 0 0 1 -1 1zm0 12a1 1 0 1 1 1-1 1 1 0 0 1 -1 1zm0 8a1 1 0 1 1 1-1 1 1 0 0 1 -1 1zm0 9a1 1 0 1 1 1-1 1 1 0 0 1 -1 1zm54-3a1 1 0 1 1 -1 1 1 1 0 0 1 1-1zm0-8a1 1 0 1 1 -1 1 1 1 0 0 1 1-1zm0-11a1 1 0 1 1 -1 1 1 1 0 0 1 1-1zm-40-11h26v36h-26zm3-8h20a3 3 0 0 1 3 3v3h-26v-3a3 3 0 0 1 3-3zm20 56h-20a3 3 0 0 1 -3-3v-7h26v7a3 3 0 0 1 -3 3z"/><path d="m9 4h2v2h-2z"/><path d="m9 8h2v2h-2z"/><path d="m7 6h2v2h-2z"/><path d="m11 6h2v2h-2z"/><path d="m53 49h2v2h-2z"/><path d="m53 53h2v2h-2z"/><path d="m51 51h2v2h-2z"/><path d="m55 51h2v2h-2z"/></g></svg>+ \ No newline at end of file diff --git a/img/bot.svg b/img/bot.svg @@ -0,0 +1 @@ +<svg height="512" viewBox="0 0 60 60" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Page-1" fill="none" fill-rule="evenodd"><g id="002---Bot-Message" fill-rule="nonzero" transform="translate(-1)"><path id="Shape" d="m48 39c0 15-10.3 20-23 20s-23-5-23-20c0-14 10.3-24 23-24 3.0903976-.0100698 6.1511982.6020903 9 1.8v1.2c0 1.6568542 1.3431458 3 3 3h1c.5522847 0 1 .4477153 1 1v3.23c.0000627.3593049.1928829.6909565.505101.8687761.3122182.1778196.6958342.1744694 1.004899-.0087761l2.93-1.76c3.0318572 4.2853551 4.6282198 9.4210217 4.56 14.67z" fill="#f5f5f5"/><path id="Shape" d="m43.44 24.33-2.146 1.289c2.4703306 4.0225352 3.754925 8.6607321 3.706 13.381 0 14.4-9.5 19.584-21.5 19.973.5.016 1 .027 1.5.027 12.7 0 23-5 23-20 .0682198-5.2489783-1.5281428-10.3846449-4.56-14.67z" fill="#cfd8dc"/><rect id="Rectangle-path" fill="#607d8b" height="22" rx="11" width="38" x="6" y="28"/><path id="Shape" d="m33 28h-3c6.0751322 0 11 4.9248678 11 11s-4.9248678 11-11 11h3c6.0751322-.0000001 10.9999998-4.9248678 10.9999998-11s-4.9248676-10.9999999-10.9999998-11z" fill="#37474f"/><circle id="Oval" cx="14" cy="38" fill="#00bcd4" r="3"/><circle id="Oval" cx="36" cy="38" fill="#00bcd4" r="3"/><circle id="Oval" cx="8" cy="13" fill="#02a9f4" r="2"/><path id="Shape" d="m60 4v14c0 1.6568542-1.3431458 3-3 3h-7.72c-.1824524.0014388-.3614878.0496407-.52.14l-5.32 3.19-2.93 1.76c-.3090648.1832455-.6926808.1865957-1.004899.0087761-.3122181-.1778196-.5050383-.5094712-.505101-.8687761v-3.23c0-.5522847-.4477153-1-1-1h-1c-1.6568542 0-3-1.3431458-3-3v-14c0-1.65685425 1.3431458-3 3-3h20c1.6568542 0 3 1.34314575 3 3z" fill="#ffdf00"/><path id="Shape" d="m57 1h-3c1.6568542 0 3 1.34314575 3 3v14c0 1.6568542-1.3431458 3-3 3h3c1.6568542 0 3-1.3431458 3-3v-14c0-1.65685425-1.3431458-3-3-3z" fill="#fec108"/><g fill="#000"><path id="Shape" d="m17 27c-6.627417 0-12 5.372583-12 12s5.372583 12 12 12h16c6.627417 0 12-5.372583 12-12s-5.372583-12-12-12zm26 12c-.0060624 5.5203344-4.4796656 9.9939376-10 10h-16c-5.5228475 0-10-4.4771525-10-10s4.4771525-10 10-10h16c5.5203344.0060624 9.9939376 4.4796656 10 10z"/><path id="Shape" d="m14 34c-2.209139 0-4 1.790861-4 4s1.790861 4 4 4 4-1.790861 4-4-1.790861-4-4-4zm0 6c-1.1045695 0-2-.8954305-2-2s.8954305-2 2-2 2 .8954305 2 2-.8954305 2-2 2z"/><path id="Shape" d="m36 42c2.209139 0 4-1.790861 4-4s-1.790861-4-4-4-4 1.790861-4 4 1.790861 4 4 4zm0-6c1.1045695 0 2 .8954305 2 2s-.8954305 2-2 2-2-.8954305-2-2 .8954305-2 2-2z"/><path id="Shape" d="m22 25h6c.5522847 0 1-.4477153 1-1s-.4477153-1-1-1h-6c-.5522847 0-1 .4477153-1 1s.4477153 1 1 1z"/><path id="Shape" d="m24 22h2c.5522847 0 1-.4477153 1-1s-.4477153-1-1-1h-2c-.5522847 0-1 .4477153-1 1s.4477153 1 1 1z"/><path id="Shape" d="m57 0h-20c-2.209139 0-4 1.790861-4 4v11.347c-2.5712007-.8985807-5.276313-1.3540539-8-1.347-5.9058605-.0610987-11.6181844 2.1038721-16 6.064v-4.248c1.3775467-.4870363 2.2038721-1.8956662 1.9567957-3.3357331-.2470764-1.4400668-1.4956868-2.49269402-2.9567957-2.49269402s-2.70971927 1.05262722-2.95679568 2.49269402c-.24707641 1.4400669.57924899 2.8486968 1.95679568 3.3357331v6.3c-3.96356752 4.7243441-6.09348037 10.7179189-6 16.884 0 13.738 8.3 21 24 21s24-7.262 24-21c.0508124-5.0845422-1.3914304-10.0722404-4.148-14.345l4.425-2.655h7.723c2.209139 0 4-1.790861 4-4v-14c0-2.209139-1.790861-4-4-4zm-49 12c.55228475 0 1 .4477153 1 1s-.44771525 1-1 1-1-.4477153-1-1 .44771525-1 1-1zm39 27c0 12.607-7.4 19-22 19s-22-6.393-22-19c0-13.112 9.458-23 22-23 2.7368223-.0026943 5.4500512.5060361 8 1.5v.5c0 2.209139 1.790861 4 4 4h1v3.234c.0049282 1.1025217.8974783 1.9950718 2 2 .3627718-.0009.7184675-.1004533 1.029-.288l2.108-1.265c2.5710617 3.9624335 3.9149107 8.595808 3.863 13.319zm12-21c0 1.1045695-.8954305 2-2 2h-7.723c-.3624418.0003443-.7180261.0988297-1.029.285l-8.248 4.949v-3.234c0-1.1045695-.8954305-2-2-2h-1c-1.1045695 0-2-.8954305-2-2v-14c0-1.1045695.8954305-2 2-2h20c1.1045695 0 2 .8954305 2 2z"/><path id="Shape" d="m27.3 43.282c-.6559217.5070896-1.4720819.7618735-2.3.718-.8276815.0432642-1.643525-.2110662-2.3-.717-.3985064-.3506401-1.0015362-.3288293-1.37367.049684-.3721338.3785132-.3836925.9818266-.02633 1.374316 1.023374.8869696 2.346923 1.3494963 3.7 1.293 1.35546.0583036 2.6818413-.4043376 3.707-1.293.3854708-.3870661.3854708-1.0129339 0-1.4-.3841726-.3895471-1.0092311-.4006534-1.407-.025z"/><path id="Shape" d="m55 6h-16c-.5522847 0-1 .44771525-1 1s.4477153 1 1 1h16c.5522847 0 1-.44771525 1-1s-.4477153-1-1-1z"/><path id="Shape" d="m39 12h5c.5522847 0 1-.4477153 1-1s-.4477153-1-1-1h-5c-.5522847 0-1 .4477153-1 1s.4477153 1 1 1z"/><path id="Shape" d="m52 14h-13c-.5522847 0-1 .4477153-1 1s.4477153 1 1 1h13c.5522847 0 1-.4477153 1-1s-.4477153-1-1-1z"/></g></g></g></svg>+ \ No newline at end of file diff --git a/img/communication.svg b/img/communication.svg @@ -0,0 +1 @@ +<svg id="_x33_0" enable-background="new 0 0 64 64" height="512" viewBox="0 0 64 64" width="512" xmlns="http://www.w3.org/2000/svg"><g><g><g><path d="m24 56v6h-8.32c-3.22 0-6.14-1.31-8.26-3.42-2.11-2.12-3.42-5.04-3.42-8.26 0-1.88.6-3.67 1.66-5.13 1.05-1.46 2.55-2.59 4.34-3.19 2.19 0 4.24.58 6 1.6 3.58 2.07 6 5.95 6 10.4v2z" fill="#b4dd7f"/></g><g><path d="m44 50 .06-.24c.6-2.41 2.03-4.44 3.95-5.81 1.7-1.24 3.78-1.95 5.99-1.95 1.79.6 3.29 1.73 4.34 3.19 1.06 1.46 1.66 3.25 1.66 5.13v.68c0 6.08-4.92 11-11 11-3.04 0-5.79-1.23-7.78-3.22s-3.22-4.74-3.22-7.78v-1z" fill="#fcd770"/></g><g><path d="m51.49 21.33c-.03.03-.05.05-.08.08-.36.37-.86.59-1.41.59h-6c-2.21 0-4-1.79-4-4 0-1.1.45-2.1 1.17-2.83.73-.72 1.73-1.17 2.83-1.17h5.44c6.94 0 12.56 5.62 12.56 12.56v9.14c0 .85-.25 1.68-.72 2.38-.8 1.2-2.14 1.92-3.58 1.92h-3.7v-10c.55 0 1.05-.22 1.41-.59.37-.36.59-.86.59-1.41s-.22-1.05-.59-1.41c-.36-.37-.86-.59-1.41-.59 0-1.87-.94-3.62-2.5-4.66z" fill="#656d78"/></g><g><path d="m22 13v1.58s0 2.1 0 3.12c0 1.44-.72 2.78-1.92 3.58l-.04.03c-.01.01-.03.02-.04.02-.67.44-1.46.67-2.26.67h-2.62c-2.42 0-4.53 1.65-5.12 4-.55 0-1.05.22-1.41.59-.37.36-.59.86-.59 1.41s.22 1.05.59 1.41c.36.37.86.59 1.41.59v6c-4.81-1.8-8-6.4-8-11.54v-1.06c0-2.2.77-4.33 2.18-6.02.9-1.07 2-1.92 3.24-2.49 1.23-.58 2.59-.89 3.99-.89h4.43c2.09 0 4.17-.34 6.16-1z" fill="#b27946"/></g><g><path d="m40 4v8c0 1.1-.9 2-2 2h-4l-1.66 3.32c-.21.42-.64.68-1.1.68-.69 0-1.24-.55-1.24-1.24v-2.76h-6c-1.1 0-2-.9-2-2v-8c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2z" fill="#e6e9ed"/></g><g><path d="m26 42v-8c0-1.1.9-2 2-2h4l1.66-3.32c.21-.42.64-.68 1.1-.68.69 0 1.24.55 1.24 1.24v2.76h6c1.1 0 2 .9 2 2v.46 7.54c0 1.1-.9 2-2 2h-1-13c-1.1 0-2-.9-2-2z" fill="#e6e9ed"/></g><g><path d="m55.41 26.59c-.36-.37-.86-.59-1.41-.59 0-1.87-.94-3.62-2.5-4.66l-.01-.01c-.03.03-.05.05-.08.08-.36.37-.86.59-1.41.59h-6v2.34c0 1.06-.42 2.08-1.17 2.83l-.42.42c-.26.26-.41.62-.41 1 0 .78.63 1.41 1.41 1.41h.59v6l.35-.01c.57 1.19 1.78 2.01 3.19 2.01.15 0 .31-.01.46-.04v.01 5.97l.01.01c1.7-1.24 3.78-1.95 5.99-1.95v-2-10c.55 0 1.05-.22 1.41-.59.37-.36.59-.86.59-1.41s-.22-1.05-.59-1.41z" fill="#f0d0b4"/></g><g><path d="m44 47v3h-6v-3c0-1.66 1.34-3 3-3 .83 0 1.58.34 2.12.88s.88 1.29.88 2.12z" fill="#f0d0b4"/></g><g><path d="m33.12 56.88c.54.54.88 1.29.88 2.12 0 1.66-1.34 3-3 3h-7v-6h2c0-.55.22-1.05.59-1.41.36-.37.86-.59 1.41-.59s1.05.22 1.41.59c.37.36.59.86.59 1.41h1c.83 0 1.58.34 2.12.88z" fill="#f0d0b4"/></g><g><path d="m21.59 27.59-.42-.42c-.75-.75-1.17-1.77-1.17-2.83v-3.01c-.67.44-1.46.67-2.26.67h-2.62c-2.42 0-4.53 1.65-5.12 4-.55 0-1.05.22-1.41.59-.37.36-.59.86-.59 1.41s.22 1.05.59 1.41c.36.37.86.59 1.41.59v6 6c2.19 0 4.24.58 6 1.6v-5.63-.01l.46.04c1.41 0 2.62-.82 3.19-2.01l.35.01v-6h.59c.78 0 1.41-.63 1.41-1.41 0-.38-.15-.74-.41-1z" fill="#f0d0b4"/></g><g><path d="m44 32h4c0 1.04-.4 2-1.06 2.71s-1.57 1.19-2.59 1.28c-.22-.46-.35-.98-.35-1.53v-.46z" fill="#ff826e"/></g><g><path d="m20 32v2.46c0 .55-.13 1.07-.35 1.53-1.02-.09-1.93-.57-2.59-1.28s-1.06-1.67-1.06-2.71z" fill="#ff826e"/></g></g><g><path d="m31 55h-.171c-.413-1.164-1.525-2-2.829-2s-2.416.836-2.829 2h-2.171v-1c0-4.59-2.398-8.623-6-10.937v-4.117c2.247-.268 4-2.163 4-4.481v-3.5c1.135-.197 2-1.188 2-2.379 0-.636-.258-1.258-.707-1.707l-.414-.414c-.566-.568-.879-1.32-.879-2.122v-2.509c1.258-1.004 2.002-2.516 2.001-4.139v-2.879c.314.112.647.184.999.184h5v1.764c0 1.233 1.003 2.236 2.236 2.236.852 0 1.617-.474 2-1.236l1.382-2.764h3.382c1.654 0 3-1.346 3-3v-8c0-1.654-1.346-3-3-3h-14c-1.654 0-3 1.346-3 3v8c0 .083.018.161.024.242-1.687.493-3.426.758-5.186.758h-4.433c-3.097 0-6.01 1.364-7.994 3.744-1.555 1.866-2.411 4.233-2.411 6.661v1.051c0 5.291 3.188 10.114 8 12.217v4.635c-3.617 1.512-6 5.048-6 9.017 0 6.988 5.687 12.675 12.676 12.675h15.324c2.206 0 4-1.794 4-4s-1.794-4-4-4zm-12.035-20.19c-.832-.31-1.493-.978-1.791-1.81h1.826v1.465c0 .118-.019.231-.035.345zm1.621-5.81h-1.586v2h-4v1c0 1.987 1.2 3.733 2.923 4.531-.413.293-.914.469-1.458.469-.678 0-1.314-.264-1.793-.742l-.965-.965-1.414 1.414.965.965c.497.497 1.096.847 1.742 1.068v3.264c-1.247-.522-2.593-.844-4-.952v-12.052h-1c-.552 0-1-.448-1-1s.448-1 1-1h.78l.189-.758c.478-1.908 2.185-3.241 4.151-3.241h.002l2.622.001c.426 0 .845-.065 1.255-.169v1.51c0 1.336.521 2.592 1.465 3.536l.414.414c.078.077.122.184.122.293 0 .228-.186.414-.414.414zm2.414-25c0-.552.448-1 1-1h14c.552 0 1 .448 1 1v8c0 .552-.448 1-1 1h-4.618l-1.934 3.868c-.1.198-.449.115-.448-.104v-3.764h-7c-.552 0-1-.448-1-1v-.388zm-20 20.456v-1.051c0-1.962.691-3.873 1.948-5.381 1.602-1.921 3.955-3.024 6.457-3.024h4.433c1.747 0 3.478-.222 5.162-.661l.001 3.357c.001 1.106-.552 2.136-1.516 2.778-.518.345-1.119.527-1.74.527l-2.622-.001s-.001 0-.002 0c-2.654 0-4.986 1.654-5.889 4.099-1.283.34-2.232 1.511-2.232 2.901 0 1.304.836 2.416 2 2.829v3.623c-3.641-1.948-6-5.799-6-9.996zm2 25.868c0-3.299 2.076-6.213 5.174-7.315 5.984.094 10.826 4.984 10.826 10.991v1h-4.236c-3.178 0-5.764-2.586-5.764-5.764 0-1.144-.636-2.172-1.658-2.684l-.895-.447-.895 1.789.895.447c.341.171.553.513.553.895 0 4.282 3.482 7.764 7.764 7.764h6.236v4h-7.324c-5.887 0-10.676-4.789-10.676-10.676zm26 10.676h-6v-4h2v-1c0-.552.448-1 1-1s1 .448 1 1v1h2c1.103 0 2 .897 2 2s-.897 2-2 2z"/><circle cx="16" cy="26" r="1"/><circle cx="48" cy="26" r="1"/><path d="m49.438 13h-5.438c-2.757 0-5 2.243-5 5 0 2.414 1.721 4.434 4 4.899v1.444c0 .802-.313 1.556-.879 2.122l-.414.414c-.449.449-.707 1.071-.707 1.707 0 1.19.865 2.182 2 2.379v.219c-.314-.112-.648-.184-1-.184h-5v-1.764c0-1.233-1.003-2.236-2.236-2.236-.852 0-1.617.474-2 1.236l-1.382 2.764h-3.382c-1.654 0-3 1.346-3 3v8c0 1.654 1.346 3 3 3h9.556c-.344.591-.556 1.268-.556 2v4c0 6.617 5.383 12 12 12s12-5.383 12-12v-.676c0-3.969-2.383-7.505-6-9.017v-.307h2.697c1.777 0 3.427-.883 4.412-2.361.583-.873.891-1.891.891-2.942v-9.135c0-7.478-6.084-13.562-13.562-13.562zm-6.317 15.293.414-.414c.944-.944 1.465-2.2 1.465-3.536v-1.343h5c.542 0 1.045-.156 1.484-.409.957.867 1.516 2.096 1.516 3.409v1h1c.552 0 1 .448 1 1s-.448 1-1 1h-1v12.046c-1.42.125-2.769.522-4 1.133v-3.439c.646-.221 1.245-.57 1.742-1.068l.965-.965-1.414-1.414-.965.965c-.478.478-1.115.742-1.793.742-.544 0-1.045-.176-1.459-.469 1.723-.799 2.924-2.544 2.924-4.531v-1h-4v-2h-1.586c-.228 0-.414-.186-.414-.414 0-.109.044-.216.121-.293zm1.673 17.502c-.181-.569-.477-1.083-.874-1.51.655-.55 1.08-1.365 1.08-2.285v-3.776c.583.394 1.268.635 2 .722v4.497c-.841.669-1.583 1.462-2.206 2.352zm.241-10.985c-.016-.114-.035-.227-.035-.345v-.465-1h1.826c-.298.832-.959 1.5-1.791 1.81zm-18.035 7.19v-8c0-.552.448-1 1-1h4.618l1.934-3.868c.1-.198.448-.115.448.104v3.764h7c.552 0 1 .448 1 1v.465 7.535c0 .552-.448 1-1 1h-14c-.552 0-1-.448-1-1zm16 5v2h-4v-2c0-1.103.897-2 2-2s2 .897 2 2zm16 3.324v.676c0 5.514-4.486 10-10 10s-10-4.486-10-10h4v1c0 2.757 2.243 5 5 5s5-2.243 5-5v-3.764c0-.382.212-.725.553-.895l.895-.447-.895-1.789-.895.447c-1.022.512-1.658 1.541-1.658 2.684v3.764c0 1.654-1.346 3-3 3s-3-1.346-3-3v-1.878l.029-.119c1.017-4.065 4.619-6.916 8.794-6.995 3.1 1.101 5.177 4.016 5.177 7.316zm2-14.627c0 .654-.191 1.288-.555 1.832-.613.921-1.64 1.471-2.748 1.471h-2.697v-8.171c1.164-.413 2-1.525 2-2.829 0-1.324-.862-2.45-2.054-2.848-.203-1.58-.974-3.024-2.155-4.074.131-.336.209-.697.209-1.078 0-1.654-1.346-3-3-3h-1v2h1c.552 0 1 .448 1 1s-.448 1-1 1h-6c-1.654 0-3-1.346-3-3s1.346-3 3-3h5.438c6.375 0 11.562 5.187 11.562 11.563z"/><path d="m25 5h12v2h-12z"/><path d="m35 9h2v2h-2z"/><path d="m29 35h12v2h-12z"/><path d="m29 39h8v2h-8z"/><path d="m39 39h2v2h-2z"/><path d="m25 9h8v2h-8z"/></g></g></svg>+ \ No newline at end of file diff --git a/img/damus-nobg.svg b/img/damus-nobg.svg @@ -0,0 +1,186 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + width="146.15311mm" + height="184.664mm" + viewBox="0 0 146.15311 184.66401" + version="1.1" + id="svg5" + inkscape:version="1.2-alpha (0bd5040e, 2022-02-05)" + sodipodi:docname="damus-nobg.svg" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg"> + <sodipodi:namedview + id="namedview7" + pagecolor="#ffffff" + bordercolor="#000000" + borderopacity="0.25" + inkscape:pageshadow="2" + inkscape:pageopacity="0.0" + inkscape:pagecheckerboard="0" + inkscape:blackoutopacity="0.0" + inkscape:document-units="mm" + showgrid="false" + inkscape:zoom="0.5946522" + inkscape:cx="73.992831" + inkscape:cy="206.8436" + inkscape:window-width="1435" + inkscape:window-height="844" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="0" + inkscape:current-layer="layer2" /> + <defs + id="defs2"> + <linearGradient + inkscape:collect="always" + id="linearGradient39361"> + <stop + style="stop-color:#0de8ff;stop-opacity:0.78082192;" + offset="0" + id="stop39357" /> + <stop + style="stop-color:#d600fc;stop-opacity:0.95433789;" + offset="1" + id="stop39359" /> + </linearGradient> + <inkscape:path-effect + effect="bspline" + id="path-effect255" + is_visible="true" + lpeversion="1" + weight="33.333333" + steps="2" + helper_size="0" + apply_no_weight="true" + apply_with_weight="true" + only_selected="false" /> + <linearGradient + inkscape:collect="always" + id="linearGradient2119"> + <stop + style="stop-color:#1c55ff;stop-opacity:1;" + offset="0" + id="stop2115" /> + <stop + style="stop-color:#7f35ab;stop-opacity:1;" + offset="0.5" + id="stop2123" /> + <stop + style="stop-color:#ff0bd6;stop-opacity:1;" + offset="1" + id="stop2117" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2119" + id="linearGradient2121" + x1="10.067794" + y1="248.81357" + x2="246.56145" + y2="7.1864405" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient39361" + id="linearGradient39367" + x1="62.104473" + y1="128.78963" + x2="208.25758" + y2="128.78963" + gradientUnits="userSpaceOnUse" /> + </defs> + <g + inkscape:label="Background" + inkscape:groupmode="layer" + id="layer1" + sodipodi:insensitive="true" + style="display:none" + transform="translate(-62.104473,-36.457485)"> + <rect + style="fill:url(#linearGradient2121);fill-opacity:1;stroke-width:0.264583" + id="rect61" + width="256" + height="256" + x="-5.3875166e-08" + y="-1.0775033e-07" + ry="0" + inkscape:label="Gradient" + sodipodi:insensitive="true" /> + </g> + <g + inkscape:groupmode="layer" + id="layer2" + inkscape:label="Logo" + sodipodi:insensitive="true" + transform="translate(-62.104473,-36.457485)"> + <path + style="fill:url(#linearGradient39367);fill-opacity:1;stroke:#ffffff;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 101.1429,213.87373 C 67.104473,239.1681 67.104473,42.67112 67.104473,42.67112 135.18122,57.58146 203.25844,72.491904 203.25758,105.24181 c -8.6e-4,32.74991 -68.07625,83.33755 -102.11468,108.63192 z" + id="path253" + sodipodi:insensitive="true" /> + </g> + <g + inkscape:groupmode="layer" + id="layer3" + inkscape:label="Poly" + sodipodi:insensitive="true" + transform="translate(-62.104473,-36.457485)"> + <path + style="fill:#ffffff;fill-opacity:0.325424;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 67.32839,76.766948 112.00424,99.41949 100.04873,52.226693 Z" + id="path4648" /> + <path + style="fill:#ffffff;fill-opacity:0.274576;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 111.45696,98.998695 107.00758,142.60261 70.077729,105.67276 Z" + id="path9299" /> + <path + style="fill:#ffffff;fill-opacity:0.379661;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 111.01202,99.221164 29.14343,-37.15232 25.80641,39.377006 z" + id="path9301" /> + <path + style="fill:#ffffff;fill-opacity:0.447458;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 111.45696,99.443631 57.17452,55.172309 -2.89209,-53.17009 z" + id="path9368" /> + <path + style="fill:#ffffff;fill-opacity:0.20678;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 106.78511,142.38015 62.06884,12.68073 -57.17452,-55.617249 z" + id="path9370" /> + <path + style="fill:#ffffff;fill-opacity:0.244068;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 106.78511,142.38015 -28.47603,32.9254 62.51378,7.56395 z" + id="path9372" /> + <path + style="fill:#ffffff;fill-opacity:0.216949;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 165.96186,101.44585 195.7727,125.02756 182.64703,78.754017 Z" + id="path9374" /> + </g> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Vertices" + transform="translate(-62.104473,-36.457485)"> + <circle + style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path27764" + cx="106.86934" + cy="142.38014" + r="2.0022209" /> + <circle + style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="circle28773" + cx="111.54119" + cy="99.221161" + r="2.0022209" /> + <circle + style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="circle29091" + cx="165.90784" + cy="101.36163" + r="2.0022209" /> + </g> +</svg> diff --git a/img/digital-nomad.svg b/img/digital-nomad.svg @@ -0,0 +1 @@ +<svg id="_x33_0" enable-background="new 0 0 64 64" height="512" viewBox="0 0 64 64" width="512" xmlns="http://www.w3.org/2000/svg"><g><g><g><path d="m54.84 20.16c-.26-.23-.54-.44-.84-.64-1.43-.96-3.15-1.52-5-1.52-.34 0-.67.02-1 .06h-.01c.01-.17.01-.33.01-.49 0-1.99-.35-3.94-1.01-5.79h.01c.74-2.08 1.87-4.01 3.36-5.69l3.64-4.09 3.64 4.09c1.4 1.58 2.5 3.39 3.23 5.34.74 1.95 1.13 4.03 1.13 6.14 0 4.06-1.45 7.93-4 10.96v-1.53c0-2.48-1.01-4.74-2.64-6.36-.17-.17-.34-.33-.52-.48z" fill="#a0d468"/></g><g><path d="m40 27v5c-2.49-1.56-4.49-3.7-5.87-6.18-1.37-2.49-2.13-5.32-2.13-8.25 0-4.23 1.55-8.32 4.36-11.48l3.64-4.09 3.64 4.09c1.4 1.58 2.5 3.39 3.23 5.34.04.12.09.23.12.35.66 1.85 1.01 3.8 1.01 5.79 0 .16 0 .32-.01.49-4.5.5-7.99 4.31-7.99 8.94z" fill="#b4dd7f"/></g><g><path d="m6 22c0 .66.08 1.33.24 1.97l.6 2.4c-.51.37-.84.96-.84 1.63 0 .24.04.46.12.67-2.62-3.05-4.12-6.97-4.12-11.1 0-2.11.39-4.19 1.13-6.14.73-1.95 1.83-3.76 3.23-5.34l3.64-4.09 3.64 4.09c1.49 1.68 2.62 3.61 3.36 5.68h.01c-.49 1.36-.8 2.77-.93 4.23h-2.84c-1.37 0-2.63.77-3.24 2-1.1 0-2.1.45-2.83 1.17-.72.73-1.17 1.73-1.17 2.83z" fill="#b4dd7f"/></g><g><path d="m27.64 6.09-3.64-4.09-3.64 4.09c-1.48 1.67-2.61 3.6-3.35 5.68-.49 1.36-.8 2.77-.93 4.23h1.69c3.44 0 6.23 2.79 6.23 6.23 0 .51-.06 1.02-.19 1.51l-.65 2.63c.51.37.84.96.84 1.63 0 .55-.22 1.05-.59 1.41-.36.37-.86.59-1.41.59l2 2c2.49-1.56 4.49-3.7 5.87-6.18 1.37-2.49 2.13-5.32 2.13-8.25 0-4.23-1.55-8.32-4.36-11.48z" fill="#a0d468"/></g><g><path d="m16.08 16h1.69c3.44 0 6.23 2.79 6.23 6.23 0 .51-.06 1.02-.19 1.51l-.65 2.63c-.33-.24-.73-.37-1.16-.37h-2v-1c0-1.66-1.34-3-3-3h-4c-1.66 0-3 1.34-3 3v1h-2c-.43 0-.83.13-1.16.37l-.6-2.4c-.16-.64-.24-1.31-.24-1.97 0-1.1.45-2.1 1.17-2.83.73-.72 1.73-1.17 2.83-1.17.61-1.23 1.87-2 3.24-2z" fill="#656d78"/></g><g><path d="m8 56c-3.31 0-6-2.69-6-6v-1.07c0-4.75 2.79-8.99 7.02-10.91l2.98 2.98 3-2 3 2 2.98-2.98c1.12.5 2.13 1.17 3.02 1.98 2.49 2.21 4 5.43 4 8.93v1.07c0 3.31-2.69 6-6 6v-2-2-7c0-.55-.45-1-1-1h-12c-.55 0-1 .45-1 1v7 2z" fill="#fcd770"/></g><g><path d="m20.98 38.02-2.98 2.98-3-2 3-2 1.45.43c.53.16 1.04.36 1.53.59z" fill="#ffc729"/></g><g><path d="m12 37 3 2-3 2-2.98-2.98c.49-.23 1-.43 1.53-.59z" fill="#ffc729"/></g><g><path d="m15 58v4h-10c-1.66 0-3-1.34-3-3 0-.83.34-1.58.88-2.12s1.29-.88 2.12-.88l3 .18c4.21.81 5.44 1.2 6.64 1.68z" fill="#d3a06c"/></g><g><path d="m21 60c0-1.1-.9-2-2-2h-4l.36-.14c2.13-.86 4.36-1.42 6.64-1.68.99-.12 2-.18 3-.18.83 0 1.58.34 2.12.88s.88 1.29.88 2.12-.34 1.58-.88 2.12-1.29.88-2.12.88h-6c.55 0 1.05-.22 1.41-.59.37-.36.59-.86.59-1.41z" fill="#d3a06c"/></g><g><path d="m55 60c0-1.1-.9-2-2-2h-4l.36-.14c2.13-.86 4.36-1.42 6.64-1.68.99-.12 2-.18 3-.18.83 0 1.58.34 2.12.88s.88 1.29.88 2.12-.34 1.58-.88 2.12-1.29.88-2.12.88h-6c.55 0 1.05-.22 1.41-.59.37-.36.59-.86.59-1.41z" fill="#d3a06c"/></g><g><path d="m49 58v4h-10c-1.66 0-3-1.34-3-3 0-.83.34-1.58.88-2.12s1.29-.88 2.12-.88l3 .18c4.21.81 5.44 1.2 6.64 1.68z" fill="#d3a06c"/></g><g><path d="m42 56c-3.31 0-6-2.69-6-6v-1.07c0-3.5 1.51-6.72 4-8.93 1.29-1.16 2.83-2.05 4.55-2.57l1.45-.43c0 1.66 1.34 3 3 3 .83 0 1.58-.34 2.12-.88s.88-1.29.88-2.12l1.45.43c1.72.52 3.26 1.41 4.55 2.57 2.49 2.21 4 5.43 4 8.93v1.07c0 3.31-2.69 6-6 6v-2-2-7c0-.55-.45-1-1-1h-12c-.55 0-1 .45-1 1v7 2z" fill="#ef7385"/></g><g><path d="m49.36 57.86-.36.14-.36-.14c-1.2-.48-2.43-.87-6.64-1.68v-.01-.17-2h14v2 .17.01c-2.28.26-4.51.82-6.64 1.68z" fill="#aab2bd"/></g><g><path d="m15.36 57.86-.36.14-.36-.14c-1.2-.48-2.43-.87-6.64-1.68v-.01-.17-2h14v2 .17.01c-2.28.26-4.51.82-6.64 1.68z" fill="#aab2bd"/></g><g><path d="m56 54h-14v-2-7c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v7z" fill="#ccd1d9"/></g><g><path d="m22 54h-14v-2-7c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v7z" fill="#ccd1d9"/></g><g><path d="m55.36 20.64c-.17-.17-.34-.33-.52-.48-.26-.23-.54-.44-.84-.64-1.43-.96-3.15-1.52-5-1.52-.34 0-.67.02-1 .06h-.01c-4.5.5-7.99 4.31-7.99 8.94v5 8c1.29-1.16 2.83-2.05 4.55-2.57l1.45-.43.71-3.55c-1.61-.84-2.71-2.52-2.71-4.45v-3c0-2.21 1.79-4 4-4h.17.01c.4 1.17 1.51 2 2.82 2h1c1.1 0 2 .9 2 2v3c0 1.38-.56 2.63-1.46 3.54-.37.36-.78.67-1.25.91l.71 3.55 1.45.43c1.72.52 3.26 1.41 4.55 2.57v-11.47-1.53c0-2.48-1.01-4.74-2.64-6.36z" fill="#656d78"/></g><g><path d="m53 58c1.1 0 2 .9 2 2 0 .55-.22 1.05-.59 1.41-.36.37-.86.59-1.41.59h-4v-4z" fill="#f0d0b4"/></g><g><path d="m51.29 33.45.71 3.55c0 .83-.34 1.58-.88 2.12s-1.29.88-2.12.88c-1.66 0-3-1.34-3-3l.71-3.55c.68.35 1.46.55 2.29.55s1.61-.2 2.29-.55z" fill="#f0d0b4"/></g><g><path d="m54 26v3c0 1.38-.56 2.63-1.46 3.54-.37.36-.78.67-1.25.91-.68.35-1.46.55-2.29.55s-1.61-.2-2.29-.55c-1.61-.84-2.71-2.52-2.71-4.45v-3c0-2.21 1.79-4 4-4h.17.01c.4 1.17 1.51 2 2.82 2h1c1.1 0 2 .9 2 2z" fill="#f0d0b4"/></g><g><path d="m19 58c1.1 0 2 .9 2 2 0 .55-.22 1.05-.59 1.41-.36.37-.86.59-1.41.59h-4v-4z" fill="#f0d0b4"/></g><g><path d="m19.9 30c.07-.32.1-.66.1-1v-3h2c.43 0 .83.13 1.16.37.51.37.84.96.84 1.63 0 .55-.22 1.05-.59 1.41-.36.37-.86.59-1.41.59z" fill="#f0d0b4"/></g><g><path d="m17.29 33.45.71 3.55-3 2-3-2 .71-3.55c.68.35 1.46.55 2.29.55s1.61-.2 2.29-.55z" fill="#f0d0b4"/></g><g><path d="m20 29c0 .34-.03.68-.1 1-.3 1.5-1.28 2.76-2.61 3.45-.68.35-1.46.55-2.29.55s-1.61-.2-2.29-.55c-.47-.24-.88-.55-1.25-.91-.68-.68-1.16-1.56-1.36-2.54-.07-.32-.1-.66-.1-1v-3-1c0-1.66 1.34-3 3-3h4c1.66 0 3 1.34 3 3v1z" fill="#f0d0b4"/></g><g><path d="m10.1 30h-2.1c-.55 0-1.05-.22-1.41-.59-.21-.21-.37-.46-.47-.74-.08-.21-.12-.43-.12-.67 0-.67.33-1.26.84-1.63.33-.24.73-.37 1.16-.37h2v3c0 .34.03.68.1 1z" fill="#f0d0b4"/></g></g><g><path d="m15 21h2v4h-2z"/><path d="m59 39.529v-10.662c2.575-3.198 4-7.19 4-11.301 0-4.479-1.639-8.79-4.615-12.138l-4.385-4.933-4.385 4.934c-1.043 1.174-1.906 2.471-2.611 3.857-.702-1.38-1.573-2.681-2.619-3.857l-4.385-4.934-4.385 4.934c-1.626 1.829-2.836 3.951-3.615 6.226-.779-2.275-1.989-4.397-3.615-6.226l-4.385-4.934-4.385 4.934c-1.038 1.168-1.911 2.472-2.616 3.862-.705-1.388-1.569-2.687-2.613-3.862l-4.386-4.934-4.385 4.934c-2.976 3.347-4.615 7.658-4.615 12.137 0 4.242 1.506 8.346 4.233 11.591.454 1.082 1.523 1.843 2.767 1.843h1.35c.425 1.198 1.216 2.222 2.244 2.934l-.456 2.281-.873.262c-5.542 1.662-9.265 6.666-9.265 12.452v1.071c0 2.124.955 4.027 2.454 5.312-1.44.606-2.454 2.03-2.454 3.688 0 2.206 1.794 4 4 4h20c2.206 0 4-1.794 4-4 0-1.658-1.014-3.082-2.454-3.688 1.499-1.285 2.454-3.188 2.454-5.312v-1.071c0-3.665-1.497-7.012-4-9.399v-6.997c3.313-2.214 5.736-5.385 7-9.033 1.264 3.648 3.687 6.818 7 9.033v6.997c-2.503 2.387-4 5.734-4 9.399v1.071c0 2.124.955 4.027 2.454 5.312-1.44.606-2.454 2.03-2.454 3.688 0 2.206 1.794 4 4 4h20c2.206 0 4-1.794 4-4 0-1.658-1.014-3.082-2.454-3.688 1.499-1.285 2.454-3.188 2.454-5.312v-1.071c0-3.665-1.497-7.013-4-9.4zm-5.264-3.052-.873-.262-.456-2.281c1.564-1.084 2.593-2.89 2.593-4.934v-3c0-1.654-1.346-3-3-3h-1c-1.103 0-2-.897-2-2v-2c4.411 0 8 3.589 8 8v10.974c-.996-.631-2.086-1.144-3.264-1.497zm-2.736-11.477h1c.551 0 1 .448 1 1v3c0 2.206-1.794 4-4 4s-4-1.794-4-4v-3c0-1.503 1.112-2.752 2.556-2.967.697 1.176 1.98 1.967 3.444 1.967zm-3.539 9.793c.492.13 1.006.207 1.539.207s1.047-.077 1.539-.207l.455 2.273c-.036 1.071-.914 1.934-1.994 1.934s-1.958-.863-1.993-1.934zm3.649-28.036 2.89-3.252 2.89 3.252c2.65 2.981 4.11 6.82 4.11 10.81 0 2.804-.742 5.548-2.121 7.959-.307-2.065-1.244-3.924-2.614-5.376l1.442-1.442-1.414-1.414-1.293 1.292v-4.283l1.832-2.748-1.664-1.109-1.168 1.751-1.168-1.752-1.664 1.109 1.832 2.749v3.538c-1.226-.538-2.578-.841-4-.841-.009 0-.017.001-.026.001-.055-1.774-.367-3.512-.917-5.173.705-1.868 1.724-3.576 3.053-5.071zm-44 0 2.89-3.252 2.89 3.252c1.327 1.492 2.344 3.197 3.048 5.061-.344 1.035-.589 2.101-.743 3.182h-1.959c-.802 0-1.566.206-2.236.577v-1.274l1.832-2.748-1.664-1.109-1.168 1.751-1.168-1.752-1.664 1.109 1.832 2.749v2.82c-2.276.467-4 2.465-4 4.877 0 .746.092 1.49.272 2.212l.461 1.845c-.054.063-.109.124-.158.192-1.663-2.578-2.575-5.587-2.575-8.683 0-3.989 1.459-7.828 4.11-10.809zm.89 22.243c-.551 0-1-.448-1-1s.449-1 1-1h1v2zm1-4h-1c-.157 0-.307.023-.457.046l-.33-1.32c-.141-.563-.213-1.144-.213-1.726 0-1.654 1.346-3 3-3h.618l.276-.553c.447-.892 1.344-1.447 2.342-1.447h4.531c2.885 0 5.233 2.348 5.233 5.232 0 .428-.053.854-.156 1.27l-.386 1.544c-.151-.023-.301-.046-.458-.046h-1v-2h-2v6c0 2.206-1.794 4-4 4s-4-1.794-4-4v-4c0-1.103.897-2 2-2v-2c-2.206 0-4 1.794-4 4zm12 2h1c.551 0 1 .448 1 1s-.449 1-1 1h-1zm-2.837 11.093.998.299c.008.002.016.006.024.008l-1.312 1.312-1.07-.712zm-3.163-3.093c.533 0 1.047-.077 1.539-.207l.349 1.747-1.888 1.258-1.888-1.258.349-1.747c.492.13 1.006.207 1.539.207zm-3.163 3.093 1.36.907-1.07.713-1.312-1.312c.008-.003.016-.006.024-.008zm3.163 18.831c-1.944-.777-3.951-1.317-6-1.624v-.3h12v.3c-2.049.307-4.057.847-6 1.624zm6-3.924h-12v-8h12zm-18 6c0-1.103.897-2 2-2 3.095 0 6.119.577 9 1.692v2.308h-9c-1.103 0-2-.897-2-2zm16 2h-3v-2h3c.551 0 1 .448 1 1s-.449 1-1 1zm6 0h-3.171c.11-.312.171-.649.171-1 0-1.105-.602-2.074-1.495-2.594 1.476-.27 2.977-.406 4.495-.406 1.103 0 2 .897 2 2s-.897 2-2 2zm2-12.071v1.071c0 2.414-1.721 4.434-4 4.899v-1.899h2v-2h-2v-6c0-1.103-.897-2-2-2h-12c-1.103 0-2 .897-2 2v6h-2v2h2v1.899c-2.279-.465-4-2.485-4-4.899v-1.071c0-4.151 2.27-7.819 5.816-9.698l3.056 3.057 3.128-2.086 3.127 2.085 3.056-3.057c3.547 1.88 5.817 5.548 5.817 9.699zm-7.264-12.452-.873-.262-.456-2.281c1.027-.712 1.818-1.736 2.244-2.934h1.349c.352 0 .686-.072 1-.184v7.158c-.996-.631-2.086-1.144-3.264-1.497zm5.264-6.414v-4.649l2.707-2.707-1.414-1.414-1.293 1.293v-4.172l2.707-2.707-1.414-1.414-1.293 1.293v-3.889l-2.168-3.252-1.664 1.109 1.832 2.749v4.951c-1.318-1.385-3.174-2.254-5.233-2.254h-.557c.49-3.044 1.849-5.935 3.9-8.243l2.89-3.252 2.89 3.252c2.65 2.981 4.11 6.82 4.11 10.81 0 4.927-2.215 9.473-6 12.496zm8-12.497c0-3.989 1.459-7.828 4.11-10.81l2.89-3.251 2.89 3.252c2.57 2.891 4.008 6.589 4.093 10.448-2.436.501-4.543 1.898-5.983 3.821v-8.723l1.832-2.748-1.664-1.109-2.168 3.251v3.889l-1.293-1.293-1.414 1.414 2.707 2.707v4.172l-1.293-1.293-1.414 1.414 2.707 2.707v4.649c-3.785-3.023-6-7.569-6-12.497zm8 9.434c0-3.719 2.555-6.845 6-7.737v1.737c0 .033 0 .066.001.101-2.28.463-4.001 2.484-4.001 4.899v3c0 2.044 1.029 3.85 2.594 4.934l-.456 2.281-.873.262c-1.179.354-2.269.866-3.265 1.497zm8 29.924c-1.944-.777-3.951-1.317-6-1.624v-.3h12v.3c-2.049.307-4.057.847-6 1.624zm6-3.924h-12v-8h12zm-18 6c0-1.103.897-2 2-2 3.095 0 6.119.577 9 1.692v2.308h-9c-1.103 0-2-.897-2-2zm16 2h-3v-2h3c.551 0 1 .448 1 1s-.449 1-1 1zm6 0h-3.171c.11-.312.171-.649.171-1 0-1.105-.602-2.074-1.495-2.594 1.476-.27 2.977-.406 4.495-.406 1.103 0 2 .897 2 2s-.897 2-2 2zm2-11c0 2.414-1.721 4.434-4 4.899v-1.899h2v-2h-2v-6c0-1.103-.897-2-2-2h-12c-1.103 0-2 .897-2 2v6h-2v2h2v1.899c-2.279-.465-4-2.484-4-4.899v-1.071c0-4.896 3.15-9.13 7.839-10.536l.388-.117c.537 1.578 2.016 2.724 3.773 2.724s3.236-1.146 3.772-2.724l.389.117c4.689 1.406 7.839 5.64 7.839 10.536z"/></g></g></svg>+ \ No newline at end of file diff --git a/img/freelance.svg b/img/freelance.svg @@ -0,0 +1 @@ +<svg id="_x33_0" enable-background="new 0 0 64 64" height="512" viewBox="0 0 64 64" width="512" xmlns="http://www.w3.org/2000/svg"><g><g><g><path d="m40 46c-6.99 0-13.22-3.26-17.25-8.34.79-1.01 1.25-2.28 1.25-3.66h1c.83 0 1.58-.34 2.12-.88s.88-1.29.88-2.12c0-1.1-.58-2.05-1.46-2.58 1.05-1.19 1.85-2.59 2.35-4.1l.11-.32h-2l1.06-1.6c.61-.91.94-1.99.94-3.09 0-.86-.2-1.71-.59-2.49l-.41-.82c-1.96 1.3-4.25 2-6.61 2h-2.56c2.61-9.23 11.1-16 21.17-16 12.15 0 22 9.85 22 22s-9.85 22-22 22z" fill="#69d6f4"/></g><g><path d="m46 56v2c0 .73-.2 1.41-.54 2-.69 1.2-1.98 2-3.46 2-2.21 0-4-1.79-4-4v-3c0-.55.45-1 1-1h6c.55 0 1 .45 1 1z" fill="#dfb28b"/></g><g><circle cx="42" cy="48" fill="#ef7385" r="2"/></g><g><path d="m2 55c0-5.31 3.56-9.97 8.68-11.37l2.32-.63.21.11c1.18.58 2.47.89 3.79.89s2.61-.31 3.79-.89l.21-.11 2.32.63c5.12 1.4 8.68 6.06 8.68 11.37 0 1.38-.56 2.63-1.46 3.54-.91.9-2.16 1.46-3.54 1.46h-1v-2-4-5c0-.55-.45-1-1-1h-16c-.55 0-1 .45-1 1v5 4 2h-1c-1.38 0-2.63-.56-3.54-1.46-.9-.91-1.46-2.16-1.46-3.54z" fill="#fcd770"/></g><g><path d="m26 60v1c0 .55-.45 1-1 1h-16c-.55 0-1-.45-1-1v-1-2h18z" fill="#aab2bd"/></g><g><path d="m26 54v4h-18v-4-5c0-.55.45-1 1-1h16c.55 0 1 .45 1 1z" fill="#ccd1d9"/></g><g><path d="m28.89 24.32c-.5 1.51-1.3 2.91-2.35 4.1-.45-.26-.98-.42-1.54-.42h-1c0-2.21-1.79-4-4-4h-7c-1.74.58-2.93 2.18-3 4h-1c-.93 0-1.76.42-2.31 1.08l-.29-.89c-.27-.79-.4-1.61-.4-2.45 0-2.14.87-4.07 2.27-5.47s3.33-2.27 5.47-2.27h5.09 2.56c2.36 0 4.65-.7 6.61-2l.41.82c.39.78.59 1.63.59 2.49 0 1.1-.33 2.18-.94 3.09l-1.06 1.6h2z" fill="#656d78"/></g><g><path d="m26.54 28.42c.88.53 1.46 1.48 1.46 2.58 0 .83-.34 1.58-.88 2.12s-1.29.88-2.12.88h-1v-6h1c.56 0 1.09.16 1.54.42z" fill="#f0d0b4"/></g><g><path d="m20.15 39.6.85 3.4-.21.11c-1.18.58-2.47.89-3.79.89s-2.61-.31-3.79-.89l-.21-.11.85-3.4c.67.26 1.39.4 2.15.4h2c.76 0 1.48-.14 2.15-.4z" fill="#f0d0b4"/></g><g><path d="m10 28c.07-1.82 1.26-3.42 3-4h7c2.21 0 4 1.79 4 4v6c0 1.38-.46 2.65-1.25 3.66-.66.87-1.57 1.54-2.6 1.94-.67.26-1.39.4-2.15.4h-2c-.76 0-1.48-.14-2.15-.4-2.25-.86-3.85-3.05-3.85-5.6v-5.84c0-.05 0-.11 0-.16z" fill="#f0d0b4"/></g><g><path d="m10 28v.16 5.84h-1c-.83 0-1.58-.34-2.12-.88s-.88-1.29-.88-2.12c0-.73.26-1.4.69-1.92.55-.66 1.38-1.08 2.31-1.08z" fill="#f0d0b4"/></g></g><g><circle cx="14" cy="30" r="1"/><circle cx="20" cy="30" r="1"/><path d="m19 33.764c-.381.762-1.147 1.236-2 1.236s-1.619-.474-2-1.236l-.105-.211-1.789.895.105.211c.722 1.444 2.174 2.341 3.789 2.341s3.067-.897 3.789-2.342l.105-.211-1.789-.895z"/><path d="m15 23.697h2v3.606h-2z" transform="matrix(.832 -.555 .555 .832 -11.458 13.158)"/><path d="m19 23.697h2v3.606h-2z" transform="matrix(.832 -.555 .555 .832 -10.786 15.377)"/><path d="m48.281 41.695 1.438-1.391c-2.06-2.13-4.801-3.304-7.719-3.304s-5.659 1.174-7.719 3.305l1.438 1.391c1.679-1.739 3.911-2.696 6.281-2.696s4.602.957 6.281 2.695z"/><path d="m46.771 43.362c-1.262-1.523-2.957-2.362-4.771-2.362s-3.509.839-4.771 2.362l1.541 1.275c.876-1.056 2.022-1.637 3.23-1.637s2.354.581 3.229 1.638z"/><path d="m39 48c0 1.654 1.346 3 3 3s3-1.346 3-3-1.346-3-3-3-3 1.346-3 3zm4 0c0 .552-.448 1-1 1s-1-.448-1-1 .448-1 1-1 1 .448 1 1z"/><path d="m48 55h-1c0-1.103-.897-2-2-2h-6c-1.103 0-2 .897-2 2v3c0 2.757 2.243 5 5 5 1.627 0 3.061-.793 3.974-2h2.026c1.654 0 3-1.346 3-3s-1.346-3-3-3zm-3 3c0 1.654-1.346 3-3 3s-3-1.346-3-3v-3h6zm3 1h-1.101c.066-.323.101-.658.101-1v-1h1c.552 0 1 .448 1 1s-.448 1-1 1z"/><path d="m40 1c-9.99 0-18.874 6.546-21.895 16h-4.362c-4.821 0-8.743 3.922-8.743 8.743 0 .942.151 1.873.448 2.765l.143.428c-.367.605-.591 1.306-.591 2.064 0 2.206 1.794 4 4 4h.08c.321 2.231 1.691 4.127 3.6 5.16l-.508 2.029-1.753.478c-5.546 1.513-9.419 6.585-9.419 12.333 0 3.309 2.691 6 6 6 0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2 3.309 0 6-2.691 6-6 0-5.748-3.873-10.82-9.42-12.333l-1.752-.478-.508-2.029c.507-.275.972-.615 1.395-1.002 2.685 3.062 6.104 5.357 9.967 6.653l.637-1.896c-3.632-1.218-6.834-3.406-9.318-6.329.467-.778.785-1.652.92-2.586h7.699c.248.8.514 1.592.819 2.366l1.861-.732c-.211-.537-.405-1.083-.587-1.634h23.152c-1.799 2.924-4.304 5.42-7.365 7.191l1.002 1.73c7.092-4.102 11.498-11.735 11.498-19.921 0-12.683-10.317-23-23-23zm8.967 22c-.073-2.975-.455-5.641-1.03-8h11.008c1.167 2.446 1.869 5.147 2.005 8zm-20.098 0 .028-.043c.722-1.082 1.103-2.342 1.103-3.643 0-1.015-.24-2.03-.693-2.938l-.689-1.376h3.445c-.575 2.359-.957 5.025-1.03 8zm-1.869 8c0 1.103-.897 2-2 2v-4c1.103 0 2 .897 2 2zm7.136-16h11.728c.613 2.334 1.023 5.009 1.103 8h-13.933c.079-2.991.489-5.666 1.102-8zm.591-2c1.67-5.022 4.105-8.212 5.273-9.543 1.168 1.331 3.603 4.521 5.273 9.543zm23.127 0h-10.466c-1.452-4.71-3.566-7.99-5.04-9.86 6.556.733 12.193 4.502 15.506 9.86zm-20.21-9.85c-1.474 1.871-3.582 5.148-5.032 9.85h-10.482c3.354-5.421 9.071-9.116 15.514-9.85zm-16.621 11.85h6.674l-.252.168c-1.798 1.198-3.89 1.832-6.05 1.832h-1.186c.241-.683.506-1.354.814-2zm-14.023 16c0-1.103.897-2 2-2v4c-1.103 0-2-.897-2-2zm2 30v-2h16.002v2zm0-4v-8h16l.001 8zm14.054-12.403c4.678 1.276 7.946 5.554 7.946 10.403 0 2.206-1.794 4-4 4v-4h2v-2h-2v-4c0-1.103-.897-2-2-2h-16c-1.103 0-2 .897-2 2v4h-2v2h2v4c-2.206 0-4-1.794-4-4 0-4.849 3.268-9.127 7.945-10.403l1.962-.535c1.274.609 2.683.938 4.093.938s2.819-.329 4.092-.938zm-3.227-2.167c-1.792.726-3.861.726-5.654 0l.395-1.579c.462.097.941.149 1.432.149h2c.491 0 .97-.052 1.432-.149zm-1.827-3.43h-2c-2.757 0-5-2.243-5-5v-5.838c0-1.46.931-2.751 2.316-3.214l-.633-1.896c-1.824.608-3.139 2.127-3.541 3.948h-.142c-.636 0-1.23.163-1.765.428-.142-.551-.235-1.112-.235-1.685 0-3.718 3.025-6.743 6.743-6.743h7.651c2.178 0 4.297-.544 6.193-1.582.27.593.413 1.245.413 1.896 0 .905-.265 1.781-.767 2.533l-2.102 3.153h2.426c-.352.79-.803 1.525-1.331 2.212-.389-.126-.796-.212-1.226-.212h-2v7c0 2.757-2.243 5-5 5zm10.444-6c.344-.591.556-1.268.556-2 0-1.05-.415-1.998-1.078-2.712.751-1.004 1.344-2.105 1.778-3.288h1.322c.068 2.767.415 5.442 1.041 8zm4.578-8h13.946c-.072 2.771-.441 5.453-1.105 8h-11.735c-.664-2.547-1.035-5.223-1.106-8zm14.899 8c.626-2.56.978-5.24 1.046-8h11.999c-.135 2.806-.832 5.52-2.012 8z"/><path d="m20 3v-2c-7.168 0-13 5.832-13 13h2c0-6.065 4.935-11 11-11z"/><path d="m13 14c0-3.859 3.141-7 7-7v-2c-4.963 0-9 4.037-9 9z"/></g></g><g><g><g><circle cx="-160" cy="32" fill="#69d6f4" r="26"/></g><g><path d="m-151.03 7.59c.66 1.33 1.03 2.83 1.03 4.41 0 5.52-4.48 10-10 10s-10-4.48-10-10c0-1.58.37-3.08 1.03-4.41 1.63-3.31 5.03-5.59 8.97-5.59s7.34 2.28 8.97 5.59z" fill="#fcd770"/></g><g><path d="m-140 10c5.52 0 10 4.48 10 10 0 3.39-1.69 6.39-4.28 8.2-1.62 1.13-3.59 1.8-5.72 1.8-5.52 0-10-4.48-10-10 0-3.89 2.22-7.26 5.46-8.91 1.36-.7 2.91-1.09 4.54-1.09z" fill="#fcd770"/></g><g><path d="m-134.28 35.8c2.59 1.81 4.28 4.81 4.28 8.2 0 5.52-4.48 10-10 10-1.63 0-3.18-.39-4.54-1.09-3.24-1.65-5.46-5.02-5.46-8.91 0-5.52 4.48-10 10-10 2.13 0 4.1.67 5.72 1.8z" fill="#fcd770"/></g><g><path d="m-150 52c0 1.58-.37 3.08-1.03 4.41-1.63 3.31-5.03 5.59-8.97 5.59s-7.34-2.28-8.97-5.59c-.66-1.33-1.03-2.83-1.03-4.41 0-5.52 4.48-10 10-10s10 4.48 10 10z" fill="#fcd770"/></g><g><path d="m-180 34c5.52 0 10 4.48 10 10 0 3.89-2.22 7.26-5.46 8.91-1.36.7-2.91 1.09-4.54 1.09-5.52 0-10-4.48-10-10 0-3.39 1.69-6.39 4.28-8.2 1.62-1.13 3.59-1.8 5.72-1.8z" fill="#fcd770"/></g><g><path d="m-175.46 11.09c3.24 1.65 5.46 5.02 5.46 8.91 0 5.52-4.48 10-10 10-2.13 0-4.1-.67-5.72-1.8-2.59-1.81-4.28-4.81-4.28-8.2 0-5.52 4.48-10 10-10 1.63 0 3.18.39 4.54 1.09z" fill="#fcd770"/></g></g><g><path d="m115 139h-16c-1.103 0-2 .897-2 2v4c0 .366.106.705.278 1-.172.295-.278.634-.278 1v4c0 .364.098.706.269 1-.171.294-.269.636-.269 1v4c0 1.103.897 2 2 2h14c2.206 0 4-1.794 4-4 0-.899-.299-1.73-.802-2.399.486-.365.802-.947.802-1.601v-4c0-.366-.106-.705-.278-1 .172-.295.278-.634.278-1v-4c0-1.103-.897-2-2-2zm-8 2h2.556c-.344.591-.556 1.268-.556 2s.212 1.409.556 2h-2.556zm-4 0h2v4h-2zm-4 0h2v4h-2zm0 6h4v4h-4zm2 10h-2v-4h2zm4 0h-2v-4h2zm0-10h2.556c-.344.591-.556 1.268-.556 2s.212 1.409.556 2h-2.556zm8 10h-6v-4h6c1.103 0 2 .897 2 2s-.897 2-2 2zm2-6h-2-2c-1.103 0-2-.897-2-2s.897-2 2-2h4zm0-6h-2c-1.103 0-2-.897-2-2s.897-2 2-2h2z"/><path d="m159 129v-21c0-6.065-4.935-11-11-11h-8.262c-3.8 0-7.099 2.704-7.844 6.431l-1.514 7.569h-.845l-.017-.025c-.916-1.374-1.212-3.08-.812-4.682l.506-2.021-.971-.242c-2.108-.527-3.745-2.164-4.272-4.272l-.242-.972-1.195.301c-1.992.496-4.127-.096-5.576-1.545l-.956-.956-.956.956c-1.449 1.449-3.583 2.042-5.575 1.545l-1.196-.301-.242.972c-.527 2.108-2.164 3.745-4.272 4.272l-.971.242.506 2.021c.4 1.602.104 3.308-.812 4.682l-.017.025h-5.465v16.5l1.466 1.099c2.064 1.549 4.622 2.401 7.202 2.401 2.378 0 4.681-.697 6.659-2.017l.89-.593c2.392-1.595 5.587-1.808 8.174-.567-.243.332-.391.736-.391 1.177v19c0 .624.192 1.204.52 1.685-1.498.865-2.52 2.465-2.52 4.315 0 2.757 2.243 5 5 5h25.117c2.11 0 4.092-.823 5.58-2.319 1.488-1.495 2.303-3.48 2.292-5.68-.003-.804-.135-1.599-.394-2.377-.988-2.965-1.499-6.051-1.518-9.171l-.013-2.046c2.466-2.076 3.936-5.172 3.936-8.407zm-53.768-23.191-.035-.143c2.061-.803 3.687-2.434 4.48-4.499 2.261.35 4.583-.309 6.322-1.788 1.738 1.479 4.06 2.136 6.322 1.788.794 2.065 2.419 3.696 4.48 4.499l-.035.143c-.436 1.744-.247 3.576.494 5.191h-2.321c-.499-4.493-4.316-8-8.941-8s-8.442 3.507-8.941 8h-2.321c.743-1.615.933-3.448.496-5.191zm17.688 5.191h-13.84c.488-3.386 3.401-6 6.92-6s6.432 2.614 6.92 6zm-5.11 14c-2.037 0-4.009.597-5.702 1.727l-.89.593c-1.649 1.1-3.568 1.681-5.55 1.681-2.149 0-4.281-.711-6.003-2.001l-.665-.5v-13.5h30.98l-.81 4.047c-.113.566-.171 1.147-.171 1.725 0 1.637.755 3.198 2.021 4.229h-6.02v2h8v3.362c0 2.003 1.189 3.807 3.031 4.596l1.15.493c-.107.57-.181 1.15-.181 1.747 0 1.314.284 2.607.813 3.803-1.918.852-3.952 1.438-6.105 1.745-1.569.225-2.708 1.533-2.708 3.112 0 .404.083.787.223 1.143h-2.223v-16c0-1.103-.897-2-2-2h-.764l-1.83-.915c-1.419-.712-3.008-1.087-4.596-1.087zm25.19-10c0 1.103-.897 2-2 2h-2v-3.414l-1.632-1.632c1.046-1.361 1.632-3.057 1.632-4.782v-.172h9c.552 0 1 .448 1 1v3h1c.552 0 1 .448 1 1 0 .378-.147.732-.414 1l-1.586 1.586v8.796l-4 2v-3.102l1.242-.311-.484-1.939-3.573.893c-.205.051-.415.077-.623.077-1.219 0-2.238-.858-2.495-2h1.933c2.206 0 4-1.794 4-4zm7.592 20.797c-1.347-.395-2.469-1.352-3.085-2.623.956-1.9 1.493-4.016 1.493-6.227 0-1.072.872-1.944 2-1.945h.001c.533 0 1.035.208 1.412.585.378.377.586.879.586 1.413.001 3.163-.867 6.183-2.407 8.797zm2.461-.357.025 4.025c.016 2.545.342 5.068.966 7.535h-11.044c0-.711-.376-1.332-.936-1.687l1.342-.587c4.307-1.885 7.675-5.222 9.647-9.286zm-6.017-8.84c-.01.116-.035.228-.035.347-.001 4.071-2.051 7.809-5.484 9.998l-.693.442c-.401.256-.81.494-1.224.723-.393-.918-.6-1.909-.6-2.914 0-2.824 1.569-5.363 4.096-6.627zm-5.137 12.473.693-.442c1.484-.946 2.744-2.143 3.747-3.513.786 1.078 1.873 1.902 3.116 2.39-1.753 2.303-4.088 4.177-6.851 5.386l-4.813 2.106h-5.648c-.63 0-1.143-.513-1.143-1.143 0-.574.417-1.05 1.071-1.143 3.522-.502 6.828-1.728 9.828-3.641zm-.899 7.927v2h-17c-.552 0-1-.448-1-1v-1zm-18-2v-16h2v16zm6 12h-5c-1.654 0-3-1.346-3-3s1.346-3 3-3h5zm24.279-1.729c-1.109 1.115-2.588 1.729-4.162 1.729h-18.117v-6h10c1.103 0 2-.897 2-2h11.624c.029.09.049.182.079.271.188.563.283 1.146.286 1.828.008 1.575-.599 3.055-1.71 4.172zm1.769-20.693-.048-7.584h-.001c-.002-1.066-.417-2.068-1.171-2.822-.744-.743-1.728-1.152-2.828-1.165v-7.593l1-1c.645-.645 1-1.502 1-2.414 0-1.304-.836-2.416-2-2.829v-1.171c0-1.654-1.346-3-3-3h-10c-.552 0-1-.448-1-1s.448-1 1-1h1v-2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.356c0 1.534-.622 3.036-1.707 4.121l-.707.707 2.414 2.414v4.024c0 2.516 2.046 4.562 4.562 4.562.37 0 .742-.046 1.106-.137l.332-.083v3.602l-.799.399c-2.051 1.026-3.597 2.717-4.451 4.738l-.932-.399c-1.104-.474-1.818-1.557-1.818-2.758v-3.362c0-.939-.448-1.837-1.2-2.399l-1.417-1.063c-.866-.649-1.383-1.684-1.383-2.766 0-.446.044-.895.132-1.332l2.724-13.616c.559-2.795 3.033-4.823 5.883-4.823h8.261c4.963 0 9 4.037 9 9v21c0 2.033-.711 4.002-1.952 5.577z"/><circle cx="142" cy="110" r="1"/><path d="m101 115h8v2h-8z"/><path d="m111 115h2v2h-2z"/><path d="m115 115h12v2h-12z"/><path d="m101 121h8v2h-8z"/><path d="m113 119h10v2h-10z"/><path d="m-156.2 46.6-1.6-1.2-2.2 2.933-2.2-2.933-1.6 1.2 2.8 3.733v.667h-2v2h2v2h-2v2h2v2h2v-2h2v-2h-2v-2h2v-2h-2v-.667z"/><path d="m-161 16.816v2.184h2v-2h2v-3c0-1.654-1.346-3-3-3-.551 0-1-.448-1-1v-1h1c.551 0 1 .448 1 1v1h2v-1c0-1.302-.839-2.402-2-2.816v-2.184h-2v2h-2v3c0 1.654 1.346 3 3 3 .551 0 1 .448 1 1v1h-1c-.551 0-1-.448-1-1v-1h-2v1c0 1.302.839 2.402 2 2.816z"/><path d="m-142.899 17h-2.101v2h2v2h-2v2h2.101c.465 2.279 2.484 4 4.899 4h1v-2h-1c-1.302 0-2.402-.839-2.816-2h1.816v-2h-2v-2h2v-2h-1.816c.414-1.161 1.514-2 2.816-2h1v-2h-1c-2.414 0-4.434 1.721-4.899 4z"/><path d="m-129 20c0-6.065-4.935-11-11-11-1.582 0-3.084.342-4.445.947-1.824-1.288-3.79-2.344-5.863-3.141-1.858-3.453-5.505-5.806-9.692-5.806s-7.833 2.352-9.691 5.803c-2.075.799-4.042 1.856-5.865 3.143-1.36-.604-2.862-.946-4.444-.946-6.065 0-11 4.935-11 11 0 3.508 1.657 6.63 4.222 8.646-.138 1.109-.222 2.233-.222 3.354s.084 2.245.222 3.354c-2.565 2.016-4.222 5.138-4.222 8.646 0 6.065 4.935 11 11 11 1.582 0 3.084-.342 4.445-.946 1.822 1.287 3.789 2.344 5.864 3.143 1.858 3.451 5.504 5.803 9.691 5.803s7.833-2.352 9.691-5.803c2.076-.799 4.042-1.856 5.864-3.143 1.361.604 2.863.946 4.445.946 6.065 0 11-4.935 11-11 0-3.508-1.657-6.63-4.222-8.646.138-1.109.222-2.233.222-3.354s-.084-2.245-.222-3.354c2.565-2.016 4.222-5.138 4.222-8.646zm-17.371-8.951c-1.108.791-2.065 1.777-2.815 2.914.116-.638.186-1.292.186-1.963 0-.896-.12-1.763-.323-2.598 1.018.482 2.005 1.03 2.952 1.647zm-13.629-8.049c4.962 0 9 4.037 9 9s-4.038 9-9 9-9-4.037-9-9 4.038-9 9-9zm-9 17c0-.671-.07-1.325-.186-1.964 1.969 2.986 5.349 4.964 9.186 4.964s7.217-1.978 9.186-4.964c-.116.639-.186 1.293-.186 1.964 0 1.801.444 3.498 1.214 5h-20.429c.771-1.502 1.215-3.199 1.215-5zm-1.677-10.599c-.203.835-.323 1.702-.323 2.599 0 .671.07 1.325.186 1.964-.75-1.138-1.708-2.124-2.816-2.915.947-.618 1.934-1.166 2.953-1.648zm-18.323 10.599c0-4.963 4.038-9 9-9s9 4.037 9 9-4.038 9-9 9-9-4.037-9-9zm16.175 15.68c-1.928-1.665-4.433-2.68-7.175-2.68-1.761 0-3.42.426-4.897 1.165-.062-.72-.103-1.443-.103-2.165s.041-1.445.103-2.165c1.477.739 3.136 1.165 4.897 1.165 2.742 0 5.247-1.015 7.175-2.68-.116 1.211-.175 2.441-.175 3.68s.059 2.469.175 3.68zm-7.175 17.32c-4.962 0-9-4.037-9-9s4.038-9 9-9 9 4.037 9 9-4.038 9-9 9zm6.37-.049c1.108-.791 2.065-1.777 2.816-2.915-.116.639-.186 1.293-.186 1.964 0 .897.12 1.764.323 2.599-1.019-.483-2.006-1.031-2.953-1.648zm13.63 8.049c-4.962 0-9-4.037-9-9s4.038-9 9-9 9 4.037 9 9-4.038 9-9 9zm9-17c0 .671.07 1.325.186 1.964-1.969-2.986-5.349-4.964-9.186-4.964s-7.217 1.978-9.186 4.964c.116-.639.186-1.293.186-1.964 0-1.801-.444-3.498-1.214-5h20.429c-.771 1.502-1.215 3.199-1.215 5zm-19.654-7c-.228-1.631-.346-3.305-.346-5 0-1.694.118-3.369.346-5h21.308c.228 1.631.346 3.306.346 5 0 1.695-.118 3.369-.346 5zm21.331 17.599c.203-.835.323-1.702.323-2.599 0-.671-.07-1.325-.186-1.964.75 1.138 1.708 2.124 2.816 2.915-.947.617-1.934 1.166-2.953 1.648zm18.323-10.599c0 4.963-4.038 9-9 9s-9-4.037-9-9 4.038-9 9-9 9 4.037 9 9zm-16.175-15.68c1.928 1.665 4.433 2.68 7.175 2.68 1.761 0 3.42-.426 4.897-1.165.062.72.103 1.443.103 2.165s-.041 1.445-.103 2.165c-1.477-.739-3.136-1.165-4.897-1.165-2.742 0-5.247 1.015-7.175 2.68.116-1.211.175-2.441.175-3.68s-.059-2.469-.175-3.68zm7.175.68c-4.962 0-9-4.037-9-9s4.038-9 9-9 9 4.037 9 9-4.038 9-9 9z"/><path d="m-137 39.184v-2.184h-2v2h-2v-2h-2v2h-2v2h2v6h-2v2h2v2h2v-2h2v2h2v-2.184c1.161-.414 2-1.514 2-2.816 0-.771-.301-1.468-.78-2 .48-.532.78-1.229.78-2 0-1.302-.839-2.402-2-2.816zm-1 7.816h-3v-2h3c.551 0 1 .448 1 1s-.449 1-1 1zm0-4h-3v-2h3c.551 0 1 .448 1 1s-.449 1-1 1z"/><path d="m-183 24.112c-.464.088-.918.23-1.342.441l-1.105.553.895 1.789 1.105-.553c.896-.447 2-.447 2.896 0 .861.431 1.826.658 2.788.658h.763v-2h-.764c-.654 0-1.309-.154-1.895-.447-.423-.211-.877-.353-1.341-.441v-3.112h6v-2h-6.586l-.879-.879c-.34-.341-.535-.812-.535-1.293 0-1.008.82-1.828 1.829-1.828h.171c1.103 0 2 .897 2 2h2c0-2.206-1.794-4-4-4h-.171c-2.111 0-3.829 1.718-3.829 3.828 0 .789.242 1.538.681 2.172h-2.681v2h4z"/><path d="m-178 38h-7v2h2v2h-2v2h2v2h-2v2h2v2h2v-2h2v-2h-2v-2h3c1.654 0 3-1.346 3-3s-1.346-3-3-3zm0 4h-3v-2h3c.551 0 1 .448 1 1s-.449 1-1 1z"/></g></g></svg>+ \ No newline at end of file diff --git a/img/message.svg b/img/message.svg @@ -0,0 +1 @@ +<svg id="Capa_1" enable-background="new 0 0 512 512" height="512" viewBox="0 0 512 512" width="512" xmlns="http://www.w3.org/2000/svg"><g><g><g><path d="m151.196 206.3h-110.563c-18.299 0-33.133 14.834-33.133 33.133v182.233c0 18.299 14.834 33.133 33.133 33.133h24.85c4.575 0 8.283 3.709 8.283 8.283v29.702c0 6.47 5.245 11.714 11.714 11.714 3.107 0 6.087-1.234 8.283-3.431l43.843-43.843c1.553-1.553 3.66-2.426 5.857-2.426h162.237c18.299 0 33.133-14.834 33.133-33.133v-84.513z" fill="#e9f1ff"/><path d="m82.333 272.567h-33.7c-4.418 0-8-3.582-8-8v-17.133c0-4.418 3.582-8 8-8h33.7c4.418 0 8 3.582 8 8v17.133c0 4.418-3.581 8-8 8z" fill="#77d4f5"/><path d="m174.841 338.833h-125.924c-4.575 0-8.283-3.709-8.283-8.283v-16.567c0-4.575 3.709-8.283 8.283-8.283h125.925v33.133z" fill="#3e4f55"/><path d="m297.7 405.1h-249.067c-4.418 0-8-3.582-8-8v-17.133c0-4.418 3.582-8 8-8h249.067c4.418 0 8 3.582 8 8v17.133c0 4.418-3.582 8-8 8z" fill="#3e4f55"/><g><g><g><path d="m114.607 457.226-39.973 39.973c1.744 4.28 5.94 7.301 10.847 7.301 3.107 0 6.087-1.234 8.283-3.431l43.843-43.843c1.553-1.553 3.66-2.426 5.857-2.426h-23c-2.196 0-4.303.873-5.857 2.426z" fill="#d7e4f7"/></g><g><path d="m338.833 337.154-23-16.04v100.552c0 18.299-14.834 33.133-33.133 33.133h23c18.299 0 33.133-14.834 33.133-33.133z" fill="#d7e4f7"/></g></g></g><path d="m297.7 371.967h-23c4.418 0 8 3.582 8 8v17.133c0 4.418-3.582 8-8 8h23c4.418 0 8-3.582 8-8v-17.133c0-4.419-3.582-8-8-8z" fill="#303d42"/><path d="m82.333 239.433h-23c4.418 0 8 3.582 8 8v17.133c0 4.418-3.582 8-8 8h23c4.418 0 8-3.582 8-8v-17.133c0-4.418-3.581-8-8-8z" fill="#69b4f4"/></g><g><path d="m173.167 174.844v-134.21c0-18.299 14.834-33.133 33.133-33.133h265.066c18.299 0 33.133 14.834 33.133 33.133v182.233c0 18.299-14.834 33.133-33.133 33.133h-24.85c-4.575 0-8.283 3.709-8.283 8.283v29.702c0 6.47-5.245 11.714-11.714 11.714-3.107 0-6.086-1.234-8.283-3.431l-43.843-43.843c-.708-.708-1.531-1.275-2.425-1.682z" fill="#36f595"/><path d="m214.3 73.767h33.7c4.418 0 8-3.582 8-8v-17.134c0-4.418-3.582-8-8-8h-33.7c-4.418 0-8 3.582-8 8v17.133c0 4.419 3.582 8.001 8 8.001z" fill="#e9f1ff"/><path d="m337.159 206.3h125.925c4.575 0 8.283-3.709 8.283-8.283v-16.567c0-4.575-3.709-8.283-8.283-8.283h-125.925z" fill="#3e4f55"/><path d="m214.3 140.033h249.067c4.418 0 8-3.582 8-8v-17.133c0-4.418-3.582-8-8-8h-249.067c-4.418 0-8 3.582-8 8v17.133c0 4.419 3.582 8 8 8z" fill="#3e4f55"/><g fill="#23db9e"><path d="m415.233 264.283v29.702c0 1.563-.312 3.051-.867 4.414l3.869 3.869c2.197 2.197 5.176 3.431 8.283 3.431 6.47 0 11.714-5.245 11.714-11.714v-29.702c0-4.575 3.708-8.283 8.283-8.283h-23c-4.573 0-8.282 3.709-8.282 8.283z"/><path d="m471.367 7.5h-23c18.299 0 33.133 14.834 33.133 33.133v182.233c0 18.299-14.834 33.133-33.133 33.133h23c18.299 0 33.133-14.834 33.133-33.133v-182.233c0-18.299-14.834-33.133-33.133-33.133z"/></g><path d="m463.367 106.9h-23c4.418 0 8 3.582 8 8v17.133c0 4.418-3.582 8-8 8h23c4.418 0 8-3.582 8-8v-17.133c0-4.418-3.582-8-8-8z" fill="#303d42"/><path d="m463.083 173.167h-23c4.575 0 8.283 3.709 8.283 8.283v16.567c0 4.575-3.709 8.283-8.283 8.283h23c4.575 0 8.283-3.709 8.283-8.283v-16.567c.001-4.575-3.708-8.283-8.283-8.283z" fill="#303d42"/><path d="m248 40.633h-22.9c4.418 0 8 3.582 8 8v17.133c0 4.418-3.582 8-8 8h22.9c4.418 0 8-3.582 8-8v-17.133c0-4.418-3.582-8-8-8z" fill="#d7e4f7"/></g><g><circle cx="256" cy="256" fill="#77d4f5" r="115.967"/><path d="m256 140.033c-3.847 0-7.649.192-11.4.558 58.695 5.728 104.567 55.209 104.567 115.409s-45.871 109.681-104.567 115.409c3.751.366 7.553.558 11.4.558 64.047 0 115.967-51.92 115.967-115.967s-51.92-115.967-115.967-115.967z" fill="#69b4f4"/><path d="m305.7 223.654c0-26.56-20.531-49.044-47.055-50.419-28.65-1.484-52.345 21.306-52.345 49.631v22.567h33.133v-22.132c0-8.504 6.23-15.965 14.683-16.898 9.993-1.102 18.451 6.692 18.451 16.462v22.567h33.133z" fill="#d7e4f7"/><path d="m258.645 173.235c-4.897-.254-9.643.217-14.157 1.288 22.106 5.298 38.212 25.61 38.212 49.13v21.78h23v-21.78c0-26.559-20.531-49.043-47.055-50.418z" fill="#bed2ee"/><path d="m305.983 322.267h-99.967c-4.418 0-8-3.582-8-8v-66.833c0-4.418 3.582-8 8-8h99.967c4.418 0 8 3.582 8 8v66.833c0 4.418-3.581 8-8 8z" fill="#ffda2d"/><path d="m305.983 239.433h-23c4.418 0 8 3.582 8 8v66.833c0 4.418-3.582 8-8 8h23c4.418 0 8-3.582 8-8v-66.833c0-4.418-3.581-8-8-8z" fill="#fdbf00"/></g></g><g><path d="m82.333 280.067c8.547 0 15.5-6.953 15.5-15.5v-17.134c0-8.547-6.953-15.5-15.5-15.5h-33.7c-8.547 0-15.5 6.953-15.5 15.5v17.134c0 8.547 6.953 15.5 15.5 15.5zm-34.2-15.5v-17.134c0-.276.224-.5.5-.5h33.7c.276 0 .5.224.5.5v17.134c0 .276-.224.5-.5.5h-33.7c-.276 0-.5-.224-.5-.5z"/><path d="m471.367 0h-200.54c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5h200.54c14.134 0 25.633 11.499 25.633 25.633v182.233c0 14.134-11.499 25.633-25.633 25.633h-24.85c-8.703 0-15.783 7.08-15.783 15.783v29.703c0 2.324-1.891 4.214-4.214 4.214-1.125 0-2.184-.439-2.98-1.234l-43.843-43.843c-.086-.086-.181-.162-.269-.246-.342-13.69-2.924-26.833-7.391-39.077h91.047c8.703 0 15.783-7.08 15.783-15.783v-16.566c0-8.703-7.081-15.784-15.783-15.784h-123.015c-7.559-7.039-15.994-13.149-25.13-18.133h148.427c8.547 0 15.5-6.953 15.5-15.5v-17.133c0-8.547-6.953-15.5-15.5-15.5h-249.066c-8.547 0-15.5 6.953-15.5 15.5v17.133c0 4.75 2.152 9.003 5.527 11.848-8.444 3.907-16.374 8.74-23.661 14.369v-117.617c.001-14.134 11.5-25.633 25.634-25.633h34.527c4.142 0 7.5-3.358 7.5-7.5s-3.358-7.5-7.5-7.5h-34.527c-22.405 0-40.633 18.228-40.633 40.633v131.297c-7.483 8.035-13.909 17.065-19.057 26.869h-105.977c-22.405.001-40.633 18.229-40.633 40.634v182.233c0 22.406 18.228 40.634 40.634 40.634h24.85c.432 0 .783.352.783.784v29.702c0 10.595 8.62 19.214 19.214 19.214 5.132 0 9.957-1.998 13.587-5.628l43.843-43.843c.146-.146.348-.23.554-.23h86.135c4.142 0 7.5-3.358 7.5-7.5s-3.358-7.5-7.5-7.5h-86.136c-4.216 0-8.179 1.642-11.16 4.623l-43.842 43.842c-.796.796-1.855 1.235-2.981 1.235-2.324 0-4.214-1.891-4.214-4.214v-29.702c0-8.703-7.08-15.784-15.783-15.784h-24.85c-14.135.001-25.634-11.498-25.634-25.632v-182.233c0-14.134 11.499-25.633 25.633-25.633h99.331c-4.806 13.173-7.431 27.385-7.431 42.2s2.625 29.028 7.431 42.2h-91.048c-8.703 0-15.783 7.08-15.783 15.783v16.566c0 8.703 7.081 15.784 15.783 15.784h123.014c7.559 7.039 15.994 13.149 25.13 18.133h-148.427c-8.547 0-15.5 6.953-15.5 15.5v17.133c0 8.547 6.953 15.5 15.5 15.5h249.067c8.547 0 15.5-6.953 15.5-15.5v-17.133c0-4.75-2.152-9.003-5.528-11.849 8.444-3.907 16.374-8.74 23.661-14.369v67.917c0 14.134-11.499 25.633-25.633 25.633h-46.1c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5h46.1c22.405 0 40.633-18.228 40.633-40.633v-81.597c16.906-18.153 28.418-41.386 31.966-67.13l34.633 34.633c3.629 3.629 8.454 5.628 13.586 5.628 10.595 0 19.214-8.62 19.214-19.214v-29.703c0-.432.352-.783.783-.783h24.85c22.405 0 40.633-18.228 40.633-40.633v-182.234c.002-22.405-18.226-40.633-40.631-40.633zm-7.5 181.45v16.566c0 .432-.352.783-.783.783h-97.694c-3.357-6.394-7.257-12.459-11.641-18.133h109.334c.432.001.784.352.784.784zm-249.567-48.917c-.276 0-.5-.224-.5-.5v-17.133c0-.276.224-.5.5-.5h249.066c.276 0 .5.224.5.5v17.133c0 .276-.224.5-.5.5zm-166.167 198.017v-16.566c0-.432.352-.783.783-.783h97.694c3.357 6.394 7.257 12.459 11.641 18.133h-109.335c-.431 0-.783-.352-.783-.784zm249.567 48.917c.276 0 .5.224.5.5v17.133c0 .276-.224.5-.5.5h-249.067c-.276 0-.5-.224-.5-.5v-17.133c0-.276.224-.5.5-.5zm-41.7-15c-59.809 0-108.467-48.658-108.467-108.467s48.658-108.467 108.467-108.467 108.467 48.658 108.467 108.467-48.658 108.467-108.467 108.467z"/><path d="m214.3 33.133c-8.547 0-15.5 6.953-15.5 15.5v17.133c0 8.547 6.953 15.5 15.5 15.5h33.7c8.547 0 15.5-6.953 15.5-15.5v-17.133c0-8.547-6.953-15.5-15.5-15.5zm34.2 15.5v17.133c0 .276-.224.5-.5.5h-33.7c-.276 0-.5-.224-.5-.5v-17.133c0-.276.224-.5.5-.5h33.7c.276 0 .5.224.5.5z"/><path d="m313.2 233.727v-10.86c0-31.54-25.66-57.2-57.2-57.2s-57.2 25.66-57.2 57.2v10.86c-4.919 2.601-8.283 7.765-8.283 13.706v66.834c0 8.547 6.953 15.5 15.5 15.5h99.967c8.547 0 15.5-6.953 15.5-15.5v-66.834c-.001-5.941-3.364-11.105-8.284-13.706zm-99.4-10.86c0-23.269 18.931-42.2 42.2-42.2s42.2 18.931 42.2 42.2v9.066h-18.133v-9.066c0-13.27-10.796-24.067-24.067-24.067s-24.067 10.796-24.067 24.067v9.066h-18.133zm33.133 9.066v-9.066c0-4.999 4.067-9.067 9.067-9.067 4.999 0 9.067 4.067 9.067 9.067v9.066zm59.55 82.334c0 .276-.224.5-.5.5h-99.967c-.276 0-.5-.224-.5-.5v-66.834c0-.276.224-.5.5-.5h.283 99.4.283c.276 0 .5.224.5.5v66.834z"/><path d="m259.969 265.067h-8.283c-4.142 0-7.5 3.358-7.5 7.5 0 3.001 1.767 5.584 4.315 6.782v9.784c0 4.142 3.358 7.5 7.5 7.5s7.5-3.358 7.5-7.5v-9.951c2.361-1.263 3.969-3.751 3.969-6.616-.001-4.141-3.359-7.499-7.501-7.499z"/></g></g></svg>+ \ No newline at end of file diff --git a/img/protection.svg b/img/protection.svg @@ -0,0 +1 @@ +<svg id="Layer_5" enable-background="new 0 0 64 64" height="512" viewBox="0 0 64 64" width="512" xmlns="http://www.w3.org/2000/svg"><g><g><g><path d="m6 16c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h42c2.21 0 4-1.79 4-4v-32z" fill="#ccd1d9"/></g><g><path d="m62 8v7.88c0 4.36-1.17 8.56-3.29 12.21-1.67 2.89-3.95 5.44-6.71 7.44-.72.54-1.48 1.03-2.26 1.48-.55.31-1.13.55-1.74.72-.65.18-1.32.27-2 .27-1.31 0-2.6-.34-3.74-.99-3.82-2.19-6.9-5.32-9.02-9.01-1.42-2.46-2.4-5.17-2.88-8-.23-1.31-.35-2.65-.36-4 0-.04 0-.08 0-.12v-7.88c0-1.1.9-2 2-2h.79c4.7 0 9.3-1.39 13.21-4 3.91 2.61 8.51 4 13.21 4h.79c1.1 0 2 .9 2 2z" fill="#aab2bd"/></g><g><path d="m46.14 6.73c-.05-.02-.09-.05-.14-.07-3.7 2-7.78 3.13-12 3.31v5.91c0 7.28 3.93 14.04 10.25 17.66.53.3 1.14.46 1.75.46s1.22-.16 1.75-.46c6.32-3.62 10.25-10.38 10.25-17.66v-5.91c-4.17-.18-8.2-1.28-11.86-3.24z" fill="#fcd770"/></g><g><path d="m54 13v10l-6.67-5z" fill="#dfb28b"/></g><g><path d="m54 13-6.67 5-1.33 1-1.33-1-6.67-5h8z" fill="#cf9e76"/></g><g><path d="m54 23h-8-8l6.67-5 1.33 1 1.33-1z" fill="#d3a06c"/></g><g><path d="m48 37.73v5.27c0 .55-.45 1-1 1h-40c-.55 0-1-.45-1-1v-15h27.24c2.12 3.69 5.2 6.82 9.02 9.01 1.14.65 2.43.99 3.74.99.68 0 1.35-.09 2-.27z" fill="#f0d0b4"/></g><g><path d="m44.67 18-6.67 5v-10z" fill="#dfb28b"/></g><g><path d="m42 62h-30c0-1.1.45-2.1 1.17-2.83.73-.72 1.73-1.17 2.83-1.17h2 18 2c2.21 0 4 1.79 4 4z" fill="#969faa"/></g><g><path d="m34 52 2 6h-18l2-6z" fill="#aab2bd"/></g><g><path d="m33.24 28h-27.24v-7c0-.55.45-1 1-1h23.36c.48 2.83 1.46 5.54 2.88 8z" fill="#b4dd7f"/></g><g><path d="m10 32h8v8h-8z" fill="#ff826e"/></g></g><g><path d="m41 47h8v2h-8z"/><path d="m37 47h2v2h-2z"/><path d="m46.476 5.784-.476-.257-.476.257c-3.591 1.941-7.483 3.015-11.567 3.19l-.957.042v6.86c0 7.639 4.12 14.738 10.753 18.527.684.391 1.46.597 2.247.597.786 0 1.563-.206 2.248-.597 6.632-3.79 10.752-10.888 10.752-18.527v-6.86l-.957-.041c-4.085-.176-7.977-1.249-11.567-3.191zm-5.476 16.216 3.667-2.75 1.333 1 1.333-1 3.667 2.75zm-2-7 4 3-4 3zm14 6-4-3 4-3zm-7-3.25-5-3.75h10zm-11-1.874v-4.96c3.492-.264 6.844-1.152 10-2.635v3.719h-8v12h8v8.77c-.084-.036-.175-.057-.255-.103-6.011-3.435-9.745-9.868-9.745-16.791zm22 0c0 6.923-3.734 13.356-9.743 16.79-.081.046-.172.067-.257.104v-8.77h8v-12h-8v-3.719c3.156 1.483 6.508 2.371 10 2.635z"/><path d="m60 5h-.789c-4.52 0-8.896-1.325-12.656-3.832l-.555-.37-.555.37c-3.759 2.507-8.136 3.832-12.656 3.832h-.789c-1.654 0-3 1.346-3 3v7h-23c-2.757 0-5 2.243-5 5v28c0 2.757 2.243 5 5 5h12.612l-1.333 4h-1.279c-2.757 0-5 2.243-5 5v1h32v-1c0-2.757-2.243-5-5-5h-1.279l-1.333-4h12.612c2.757 0 5-2.243 5-5v-11.959c6.237-4.751 10-12.211 10-20.165v-7.876c0-1.654-1.346-3-3-3zm-53 24h25.687c2.196 3.623 5.288 6.708 9.081 8.876 1.286.735 2.749 1.124 4.232 1.124.335 0 .669-.026 1-.065v4.065h-40zm0-2v-6h22.53c.434 2.089 1.128 4.103 2.057 6zm33.829 34h-27.658c.413-1.164 1.525-2 2.829-2h22c1.304 0 2.416.836 2.829 2zm-6.217-4h-15.224l1.333-4h12.558zm16.388-9c0 1.654-1.346 3-3 3h-42c-1.654 0-3-1.346-3-3v-28c0-1.654 1.346-3 3-3h23.038c.03.671.081 1.339.164 2h-22.202c-1.103 0-2 .897-2 2v22c0 1.103.897 2 2 2h40c1.103 0 2-.897 2-2v-4.559c.423-.159.838-.34 1.232-.565.262-.15.512-.315.768-.473zm10-32.124c0 8.354-4.506 16.119-11.76 20.264-1.97 1.125-4.511 1.125-6.48 0-7.254-4.145-11.76-11.91-11.76-20.264v-7.876c0-.552.449-1 1-1h.789c4.695 0 9.249-1.314 13.211-3.809 3.962 2.495 8.516 3.809 13.211 3.809h.789c.551 0 1 .448 1 1z"/><path d="m13 23h2v2h-2z"/><path d="m17 23h2v2h-2z"/><path d="m9 23h2v2h-2z"/><path d="m9 41h10v-10h-10zm2-8h6v6h-6z"/><path d="m21 31h2v2h-2z"/><path d="m25 31h7v2h-7z"/><path d="m21 35h11v2h-11z"/><path d="m21 39h11v2h-11z"/></g></g></svg>+ \ No newline at end of file diff --git a/img/social-media.svg b/img/social-media.svg @@ -0,0 +1 @@ +<svg id="_x33_0" enable-background="new 0 0 62 62" height="512" viewBox="0 0 62 62" width="512" xmlns="http://www.w3.org/2000/svg"><g><g><g><path d="m55.73 59.91.27 1.09h-8l.27-1.09c.43-1.71 1.97-2.91 3.73-2.91.88 0 1.7.3 2.36.81.66.52 1.16 1.25 1.37 2.1z" fill="#ff826e"/></g><g><path d="m55 53.07v.93c0 1.66-1.34 3-3 3-.83 0-1.58-.34-2.12-.88s-.88-1.29-.88-2.12v-1.22c0-.98.8-1.78 1.78-1.78.15 0 .29.02.43.05l2.75.69c.61.15 1.04.7 1.04 1.33z" fill="#f0d0b4"/></g><g><path d="m55.96 53.04-.96.96v-.93c0-.63-.43-1.18-1.04-1.33l-2.75-.69c-.14-.03-.28-.05-.43-.05-.98 0-1.78.8-1.78 1.78v1.22l-.96-.96c-.67-.67-1.04-1.57-1.04-2.5 0-.98.4-1.86 1.04-2.5s1.52-1.04 2.5-1.04h2.92c1.96 0 3.54 1.58 3.54 3.54 0 .93-.37 1.83-1.04 2.5z" fill="#656d78"/></g><g><path d="m55 15v1c0 .55-.45 1-1 1h-8c-.55 0-1-.45-1-1v-8c0-.55.45-1 1-1h8c.55 0 1 .45 1 1v1z" fill="#aab2bd"/></g><g><path d="m61 7v10l-6-2v-6z" fill="#ccd1d9"/></g><g><path d="m60.38 38.62c.38.38.62.92.62 1.5 0 .8-.32 1.52-.84 2.04s-1.24.84-2.04.84c-3.93 0-7.12-3.19-7.12-7.12v-1.35c0-1.95 1.58-3.53 3.53-3.53.68 0 1.3.28 1.75.72.44.45.72 1.07.72 1.75 0 .94-.53 1.79-1.37 2.21l-.63.32v1c0 .55.22 1.05.59 1.41.36.37.86.59 1.41.59l.38-.38c.4-.4.94-.62 1.5-.62.58 0 1.12.24 1.5.62z" fill="#ccd1d9"/></g><g><path d="m31 1c4.42 0 8 3.58 8 8s-3.58 8-8 8-8-3.58-8-8 3.58-8 8-8z" fill="#e6e9ed"/></g><g><path d="m40.85 26.15c1.36 1.94 2.15 4.3 2.15 6.85 0 4.08-2.04 7.69-5.15 9.85-1.94 1.36-4.3 2.15-6.85 2.15s-4.91-.79-6.85-2.15c-3.11-2.16-5.15-5.77-5.15-9.85 0-2.55.79-4.91 2.15-6.85 2.16-3.11 5.77-5.15 9.85-5.15s7.69 2.04 9.85 5.15z" fill="#69d6f4"/></g><g><path d="m17 8v6c0 .55-.45 1-1 1h-5l-.76 3.03c-.14.57-.65.97-1.24.97s-1.1-.4-1.24-.97l-.76-3.03h-5c-.55 0-1-.45-1-1v-6c0-.55.45-1 1-1h14c.55 0 1 .45 1 1z" fill="#e6e9ed"/></g><g><path d="m19 57c0 1.1-.9 2-2 2h-10c-.55 0-1.05-.22-1.41-.59-.37-.36-.59-.86-.59-1.41 0-1.1.45-2.1 1.17-2.83.73-.72 1.73-1.17 2.83-1.17l.11-.21c.54-1.1 1.66-1.79 2.89-1.79s2.35.69 2.89 1.79l.11.21c1.1 0 2.1.45 2.83 1.17.72.73 1.17 1.73 1.17 2.83z" fill="#e6e9ed"/></g><g><path d="m12 32c.64.64 1 1.51 1 2.41 0 1.01-.45 1.96-1.22 2.61l-4.78 3.98-4.78-3.98c-.77-.65-1.22-1.6-1.22-2.61 0-.9.36-1.77 1-2.41s1.51-1 2.41-1h.18c.9 0 1.77.36 2.41 1 .64-.64 1.51-1 2.41-1h.18c.9 0 1.77.36 2.41 1z" fill="#ff826e"/></g><g><path d="m34.11 7.55c.54.28.89.84.89 1.45s-.35 1.17-.89 1.45l-4.77 2.38c-.22.11-.47.17-.72.17-.9 0-1.62-.72-1.62-1.62v-4.76c0-.9.72-1.62 1.62-1.62.25 0 .5.06.72.17z" fill="#ff826e"/></g></g><g><path d="m43.949 34h4.051v-2h-4.051c-.159-2.077-.809-4.013-1.832-5.704l5.59-5.589-1.414-1.414-5.35 5.349c-2.185-2.595-5.363-4.317-8.943-4.592v-2.11c4.493-.5 8-4.317 8-8.941 0-4.962-4.037-9-9-9s-9 4.038-9 9c0 4.624 3.507 8.442 8 8.941v2.11c-3.58.275-6.759 1.997-8.943 4.592l-5.35-5.35-1.414 1.414 5.59 5.59c-1.023 1.691-1.673 3.627-1.832 5.703h-2.051v2h2.051c.275 3.58 1.997 6.759 4.592 8.943l-5.349 5.35 1.414 1.414 5.589-5.59c1.691 1.023 3.627 1.673 5.704 1.832v4.052h2v-4.051c2.076-.159 4.013-.809 5.704-1.832l5.589 5.59 1.414-1.414-5.349-5.35c2.593-2.184 4.316-5.363 4.59-8.943zm-11.259 9.856 1.416-2.831c.484-.969.876-1.983 1.178-3.025h5.502c-1.578 3.076-4.559 5.307-8.096 5.856zm-12.69-10.856c0-1.041.155-2.045.426-3h5.831c-.168.991-.257 1.995-.257 3s.089 2.009.257 3h-5.831c-.271-.955-.426-1.959-.426-3zm8 0c0-1.007.122-2.01.312-3h5.376c.19.99.312 1.993.312 3s-.122 2.01-.312 3h-5.376c-.19-.99-.312-1.993-.312-3zm3-9.763 1.316 2.633c.343.685.617 1.402.857 2.13h-4.347c.24-.728.514-1.445.857-2.13zm11 9.763c0 1.041-.155 2.045-.426 3h-5.831c.168-.991.257-1.995.257-3s-.089-2.009-.257-3h5.831c.271.955.426 1.959.426 3zm-8.827 5c-.24.728-.514 1.445-.857 2.13l-1.316 2.633-1.316-2.633c-.343-.685-.617-1.402-.857-2.13zm7.613-10h-5.502c-.302-1.041-.694-2.056-1.178-3.025l-1.416-2.831c3.537.549 6.518 2.78 8.096 5.856zm-16.786-19c0-3.86 3.141-7 7-7s7 3.14 7 7-3.141 7-7 7-7-3.14-7-7zm5.31 13.144-1.416 2.831c-.484.969-.876 1.983-1.178 3.025h-5.502c1.578-3.076 4.559-5.307 8.096-5.856zm-8.096 15.856h5.502c.302 1.041.694 2.056 1.178 3.025l1.416 2.831c-3.537-.549-6.518-2.78-8.096-5.856z"/><path d="m36 9c0-.998-.555-1.896-1.447-2.342l-4.764-2.382c-.361-.18-.767-.276-1.171-.276-1.443 0-2.618 1.174-2.618 2.618v4.764c0 1.444 1.175 2.618 2.618 2.618.404 0 .81-.096 1.171-.276l4.764-2.382c.892-.446 1.447-1.344 1.447-2.342zm-2.342.553-4.764 2.382c-.386.196-.894-.117-.894-.553v-4.764c0-.341.277-.618.618-.618.096 0 .191.022.276.065l4.764 2.382c.211.106.342.317.342.553s-.131.447-.342.553z"/><path d="m30 60h2v2h-2z"/><path d="m31 56c-2.213 0-4.268 1.1-5.496 2.941l-.336.504 1.664 1.109.336-.504c.856-1.283 2.289-2.05 3.832-2.05s2.976.767 3.832 2.051l.336.504 1.664-1.109-.336-.504c-1.228-1.842-3.283-2.942-5.496-2.942z"/><path d="m31 52c-2.847 0-5.522 1.108-7.534 3.121l-.172.171 1.412 1.416.173-.172c1.635-1.636 3.809-2.536 6.121-2.536s4.486.9 6.122 2.537l.172.171 1.412-1.416-.171-.17c-2.013-2.014-4.688-3.122-7.535-3.122z"/><path d="m58.879 37c-.822 0-1.626.333-2.207.914l-.022.022c-.379-.142-.65-.508-.65-.936v-.382l.081-.041c1.184-.591 1.919-1.781 1.919-3.105 0-1.914-1.558-3.472-3.472-3.472-2.497 0-4.528 2.031-4.528 4.528v1.351c0 4.478 3.644 8.121 8.121 8.121 2.139 0 3.879-1.74 3.879-3.879 0-1.721-1.4-3.121-3.121-3.121zm-.758 5c-3.375 0-6.121-2.746-6.121-6.121v-1.351c0-1.394 1.134-2.528 2.528-2.528.812 0 1.472.661 1.472 1.472 0 .561-.312 1.065-.813 1.316l-1.187.594v1.618c0 1.654 1.346 3 3 3h.414l.672-.672c.209-.208.498-.328.793-.328.618 0 1.121.503 1.121 1.121 0 1.036-.843 1.879-1.879 1.879z"/><path d="m55.953 54.461.719-.719c.856-.856 1.328-1.994 1.328-3.206 0-2.501-2.034-4.536-4.535-4.536h-2.93c-2.501 0-4.535 2.035-4.535 4.536 0 1.212.472 2.351 1.328 3.208l.719.718c.11.946.537 1.792 1.191 2.419-.934.651-1.643 1.618-1.935 2.787l-.584 2.332h10.563l-.584-2.332c-.292-1.169-1-2.136-1.935-2.787.653-.627 1.08-1.474 1.19-2.42zm-5.418-6.461h2.93c1.397 0 2.535 1.138 2.535 2.536 0 .462-.131.9-.361 1.287-.316-.51-.817-.898-1.432-1.052l-2.753-.688c-.222-.055-.447-.083-.673-.083-1.121 0-2.085.671-2.524 1.629-.162-.338-.257-.707-.257-1.093 0-1.398 1.138-2.536 2.535-2.536zm4.18 12h-5.43c.367-1.186 1.462-2 2.715-2s2.348.814 2.715 2zm-4.715-6v-1.219c0-.431.351-.781.781-.781.063 0 .127.008.189.023l2.752.688c.164.041.278.187.278.356v.933c0 1.103-.897 2-2 2s-2-.897-2-2z"/><path d="m15.622 52.039c-.765-1.266-2.123-2.039-3.622-2.039s-2.857.773-3.622 2.039c-2.465.307-4.378 2.415-4.378 4.961 0 1.654 1.346 3 3 3h10c1.654 0 3-1.346 3-3 0-2.546-1.913-4.654-4.378-4.961zm1.378 5.961h-10c-.552 0-1-.449-1-1 0-1.654 1.346-3 3-3h.618l.382-.764c.381-.762 1.147-1.236 2-1.236s1.619.474 2 1.236l.382.764h.618c1.654 0 3 1.346 3 3 0 .551-.448 1-1 1z"/><path d="m12.418 37.787c1.005-.838 1.582-2.07 1.582-3.379 0-1.174-.457-2.278-1.293-3.115-.834-.834-1.942-1.293-3.121-1.293h-.172c-.87 0-1.702.25-2.414.717-.712-.467-1.544-.717-2.414-.717h-.172c-1.179 0-2.287.459-3.127 1.298-.83.831-1.287 1.936-1.287 3.11 0 1.31.577 2.541 1.582 3.379l5.418 4.515zm-10.418-3.379c0-.64.25-1.243.707-1.7.456-.457 1.063-.708 1.707-.708h.172c.645 0 1.251.251 1.707.708l.707.706.707-.706c.456-.457 1.063-.708 1.707-.708h.172c.645 0 1.251.251 1.711.711.453.454.703 1.057.703 1.697 0 .714-.314 1.386-.863 1.843l-4.137 3.447-4.137-3.447c-.549-.457-.863-1.129-.863-1.843z"/><path d="m4 10h2v2h-2z"/><path d="m8 10h2v2h-2z"/><path d="m12 10h2v2h-2z"/><path d="m2 16h4.22l.568 2.272c.254 1.018 1.164 1.728 2.212 1.728s1.958-.71 2.212-1.728l.568-2.272h4.22c1.103 0 2-.897 2-2v-6c0-1.103-.897-2-2-2h-14c-1.103 0-2 .897-2 2v6c0 1.103.897 2 2 2zm0-8h14v6h-5.78l-.947 3.787c-.063.251-.482.251-.545 0l-.948-3.787h-5.78z"/><path d="m55.962 7.625c-.176-.924-.988-1.625-1.962-1.625h-8c-1.103 0-2 .897-2 2v8c0 1.103.897 2 2 2h8c.974 0 1.786-.701 1.962-1.625l6.038 2.012v-12.774zm-9.962 8.375v-8h8l.001 8zm14-.387-4-1.334v-4.558l4-1.334z"/></g></g></svg>+ \ No newline at end of file diff --git a/img/undercover.svg b/img/undercover.svg @@ -0,0 +1 @@ +<svg id="Capa_1" enable-background="new 0 0 512 512" height="512" viewBox="0 0 512 512" width="512" xmlns="http://www.w3.org/2000/svg"><g><g><path d="m312.862 261.569h-113.724c-74.436 0-134.778 60.344-134.778 134.78v73.113c0 2.761 2.239 5 5 5h373.282c2.761 0 5-2.238 5-5v-73.114c-.002-74.436-60.343-134.779-134.78-134.779z" fill="#528fd8"/><path d="m312.862 261.569h-27c74.436 0 134.779 60.343 134.779 134.779v73.116c0 2.761-2.239 4.999-5 4.999h27c2.761 0 5-2.238 5-5v-73.114c-.001-74.437-60.342-134.78-134.779-134.78z" fill="#0573ce"/><path d="m256 7.5c-88.477 0-159.481 142.701-159.481 197.502 0 59.262 52.662 116.528 52.662 116.528h213.639s52.662-57.266 52.662-116.528c0-54.801-71.005-197.502-159.482-197.502z" fill="#528fd8"/><path d="m390.75 220.671c0 17.471-3.231 58.796-8.1 74.996 14.929-22.241 32.831-56.111 32.831-90.665.001-54.801-71.004-197.502-159.481-197.502-4.771 0-9.488.439-14.149 1.232 83.689 15.48 148.899 149.388 148.899 211.939z" fill="#0573ce"/><path d="m357.047 167.723v53.559c0 55.357-44.881 100.248-100.248 100.248h-1.598c-55.367 0-100.248-44.891-100.248-100.248v-53.559c67.361-30.989 134.733-30.989 202.094 0z" fill="#017297"/><path d="m304.472 262.111v-40.406h-96.944v40.406c0 6.512-5.006 11.932-11.498 12.448l-24.501 1.942c17.94 27.129 48.712 45.03 83.672 45.03h1.598c34.96 0 65.732-17.902 83.672-45.03l-24.501-1.942c-6.492-.516-11.498-5.936-11.498-12.448z" fill="#ffbd86"/><path d="m329.861 156.918c-49.239-16.557-98.482-16.557-147.721 0v26.162c0 35.674 28.92 64.594 64.594 64.594h18.533c35.674 0 64.594-28.92 64.594-64.594z" fill="#fed2a4"/><path d="m191.039 350.468c-3.552 0-6.431 2.879-6.431 6.431v64.945c0 42.013 31.014 76.777 71.397 82.656 40.383-5.879 71.386-40.642 71.386-82.656v-64.945c0-3.552-2.879-6.431-6.431-6.431z" fill="#ffd15b"/><path d="m320.961 350.468h-25.966c3.551 0 6.431 2.879 6.431 6.431v64.945c0 37.379-24.55 69.001-58.404 79.666 4.197 1.322 8.529 2.341 12.983 2.99 40.383-5.879 71.386-40.642 71.386-82.656v-64.945c.001-3.552-2.879-6.431-6.43-6.431z" fill="#fdb441"/><path d="m289.441 408.536-19.299-4.34c-.725-.163-1.35-.617-1.729-1.256l-10.091-17.013c-1.046-1.763-3.597-1.763-4.643 0l-10.091 17.013c-.379.639-1.005 1.093-1.729 1.256l-19.299 4.34c-2 .45-2.788 2.877-1.435 4.416l13.062 14.854c.491.558.73 1.293.661 2.033l-1.836 19.695c-.19 2.041 1.874 3.541 3.756 2.729l18.164-7.833c.682-.294 1.455-.294 2.138 0l18.164 7.833c1.882.812 3.947-.688 3.756-2.729l-1.836-19.695c-.069-.74.17-1.475.661-2.033l13.062-14.854c1.352-1.539.564-3.966-1.436-4.416z" fill="#fe7d43"/></g><g><path d="m447.64 436.03c-4.142 0-7.5 3.358-7.5 7.5v23.43h-41.89v-70.612c0-4.142-3.358-7.5-7.5-7.5s-7.5 3.358-7.5 7.5v70.612h-60.34c7.79-13.65 11.982-29.177 11.982-45.116v-64.945c0-7.682-6.249-13.931-13.931-13.931h-129.922c-7.682 0-13.931 6.249-13.931 13.931v64.945c0 15.938 4.194 31.466 11.986 45.116h-60.344v-70.612c0-4.142-3.358-7.5-7.5-7.5s-7.5 3.358-7.5 7.5v70.612h-41.89v-70.61c0-39.251 18.109-76.155 48.809-100.221 11.83 18.268 22.492 29.936 22.991 30.479 2.804 3.049 7.548 3.248 10.597.444s3.248-7.548.444-10.597c-.507-.551-50.682-55.758-50.682-111.452 0-22.119 12.808-59.669 31.871-93.439 2.036-3.607.763-8.182-2.844-10.218s-8.182-.763-10.218 2.844c-20.538 36.383-33.809 75.955-33.809 100.813 0 24.191 8.015 50.485 23.819 78.24-35.171 26.866-55.978 68.632-55.978 113.107v73.11c0 6.893 5.607 12.5 12.5 12.5h130.432c14.28 16.223 33.839 26.862 55.133 29.962.714.104 1.446.104 2.161 0 21.293-3.1 40.85-13.739 55.128-29.962h130.427c6.893 0 12.5-5.607 12.5-12.5v-25.93c-.001-4.142-3.359-7.5-7.501-7.5zm-191.635 60.883c-17.469-2.803-33.48-11.695-45.19-25.121-12.063-13.831-18.707-31.57-18.707-49.948v-63.876h127.783v63.876c0 18.379-6.642 36.118-18.703 49.949-11.706 13.426-27.715 22.317-45.183 25.12z"/><path d="m399.214 283.282c12.383-21.798 23.767-49.627 23.767-78.28 0-31.133-19.678-81.921-47.853-123.508-20.619-30.435-63.515-81.494-119.128-81.494-21.132 0-42.406 7.438-63.231 22.106-17.801 12.538-34.846 30-50.66 51.9-2.425 3.358-1.669 8.046 1.689 10.471 3.359 2.424 8.046 1.669 10.472-1.689 18.281-25.317 55.808-67.788 101.73-67.788 82.95 0 151.981 137.955 151.981 190.002 0 55.575-50.178 110.902-50.685 111.455-2.801 3.049-2.601 7.792.447 10.594 3.055 2.81 7.8 2.598 10.597-.444.973-1.058 11.489-12.629 23.039-30.44 30.671 24.067 48.761 60.952 48.761 100.182v12.18c0 4.142 3.358 7.5 7.5 7.5s7.5-3.358 7.5-7.5v-12.18c0-44.452-20.786-86.199-55.926-113.067z"/><path d="m255.201 329.03c.101 0 1.7 0 1.599 0 59.51 0 107.748-48.445 107.748-107.748v-41.592c3.014 1.533 6.019 3.117 8.992 4.757 1.148.633 2.39.934 3.615.934 2.644 0 5.208-1.401 6.574-3.88 2-3.627.682-8.189-2.946-10.189-81.345-44.862-165.593-46.31-249.564 0-3.627 2-4.946 6.562-2.946 10.189s6.562 4.945 10.189 2.946c2.974-1.64 5.978-3.224 8.992-4.757v41.592c-.001 59.336 48.272 107.748 107.747 107.748zm-92.748-156.434c4.057-1.779 8.12-3.443 12.186-4.993v15.478c0 21.947 9.87 41.622 25.391 54.855v24.174c0 2.583-2.02 4.768-4.592 4.974l-19.939 1.579c-8.28-13.876-13.046-30.081-13.046-47.38zm23.477 110.287 10.699-.847c10.318-.827 18.401-9.58 18.401-19.926v-14.299c9.575 4.709 20.333 7.364 31.704 7.364h18.533c11.371 0 22.129-2.656 31.704-7.364v14.299c0 10.347 8.083 19.1 18.408 19.927l10.692.847c-37.065 41.633-103.099 41.608-140.141-.001zm150.571-14.221-19.932-1.578c-2.579-.207-4.599-2.392-4.599-4.974v-24.174c15.521-13.234 25.391-32.908 25.391-54.856v-15.478c4.067 1.55 8.129 3.214 12.186 4.993v48.687c0 17.3-4.766 33.504-13.046 47.38zm-80.501-116.645c21.978 0 44.193 3.492 66.361 10.388v20.676c0 31.482-25.612 57.094-57.094 57.094h-18.533c-31.482 0-57.095-25.612-57.095-57.094v-20.676c22.168-6.896 44.383-10.388 66.361-10.388z"/><path d="m235.44 207.118c6.821 2.52 13.691 3.779 20.56 3.779s13.739-1.26 20.56-3.779c3.886-1.436 5.872-5.749 4.437-9.634s-5.746-5.871-9.634-4.437c-10.338 3.818-20.388 3.818-30.726 0-3.884-1.435-8.199.552-9.634 4.437s.551 8.198 4.437 9.634z"/><path d="m291.086 401.219-17.279-3.886-9.035-15.233c-1.856-3.127-5.135-4.995-8.772-4.995s-6.916 1.868-8.772 4.996l-9.035 15.232-17.279 3.886c-3.549.798-6.338 3.34-7.462 6.8-1.124 3.459-.36 7.155 2.041 9.886l11.695 13.3-1.645 17.635c-.337 3.622 1.219 7.06 4.162 9.198 2.947 2.14 6.697 2.551 10.032 1.114l16.263-7.014 16.263 7.013c3.337 1.44 7.09 1.024 10.033-1.114 2.942-2.138 4.498-5.576 4.161-9.198l-1.645-17.634 11.695-13.299c2.402-2.731 3.165-6.427 2.042-9.887-1.124-3.46-3.914-6.002-7.463-6.8zm-18.905 21.635c-1.845 2.098-2.755 4.898-2.496 7.682l1.085 11.636-10.729-4.626c-2.569-1.109-5.515-1.108-8.08-.001l-10.731 4.628 1.085-11.638c.259-2.782-.651-5.582-2.496-7.681l-7.717-8.776 11.402-2.564c2.728-.614 5.11-2.345 6.534-4.748l5.962-10.052 5.961 10.05c1.425 2.404 3.808 4.135 6.536 4.749l11.402 2.564z"/></g></g></svg>+ \ No newline at end of file diff --git a/index.html b/index.html @@ -0,0 +1,68 @@ + +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <title>damus</title> + <meta name="viewport" content="width=device-width, initial-scale=1"> + + <meta property="og:title" content="Damus"> + <meta property="og:description" content="A new social network that you control"> + <meta property="og:image" content="https://damus.io/img/damus.png"> + <meta property="og:url" content="https://damus.io"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="stylesheet" href="css/normalize.css"> + <link rel="stylesheet" href="css/skeleton.css?v=2"> + <link rel="stylesheet" href="css/custom.css?v=4"> + + </head> + <body> + <section class="header"> + <span class="logo"> + <img src="img/damus-nobg.svg"/> + </span> + <span class="damus">damus</span> + </section> + <div class="container"> + <section class="hero"> + <h2 class="title">The social network you control + <h5 class="subtitle">Your very own Twitter for your friends or business.</h5> + + <div class="value-props row"> + <div class="four columns value-prop"> + <img class="value-img" src="img/digital-nomad.svg"> + <b>You are in control</b>. Built on open internet protocols, there is no platform that can ban or censor you. You are in control of your data &amp; speech. + </div> + <div class="four columns value-prop"> + <img class="value-img" src="img/message.svg"> + <b>Encrypted</b>. End-to-End encrypted private messaging. Keep big tech out of your DMs. + </div> + <div class="four columns value-prop"> + <img class="value-img" src="img/undercover.svg"> + <b>No registration required</b>. Creating an account doesn't require a phone number, email or name. Get started right away with zero friction. + </div> + </div> + <div class="value-props row"> + <div class="four columns value-prop"> + <img class="value-img" src="img/social-media.svg"> + <b>No servers required.</b> Messages are distributed via decentralized relays. No need to run any infrastructure and there are no single points of failure. Simple! + </div> + <div class="four columns value-prop"> + <img class="value-img" src="img/bot.svg"> + <b>Programmable.</b> Easily integrate bots that automate your life or business. Get notified when your servers go down, retweet to your team and collaborate in realtime. + </div> + <div class="four columns value-prop"> + <img class="value-img" src="img/bitcoin-phone.svg"> + <b>Earn money</b>. Tip your friend's posts and stack sats with Bitcoin &amp; ⚡️, the native currency of the internet.</div> + </div> + <!-- <div class="row"> --> + <!-- <h4 class="subtitle">Developers First</h4> --> + <!-- <img class="code-example" src="img/code-placeholder.svg"> --> + <!-- </div> --> + </section> + + + <!-- daniel-testimonial --> + </body> +</html>