revamp Merchants page

the list of merchants have been removed and replaced with links
to external merchants directories. We also provide a list of
p2p and non-custodial exchanges
This commit is contained in:
erciccione 2021-07-22 08:53:34 +02:00
parent 2bb0a19ba1
commit 7479d7b000
No known key found for this signature in database
GPG key ID: 762AF8C608E56CDF
8 changed files with 173 additions and 179 deletions

View file

@ -30,7 +30,7 @@ titles:
workgroups: Workgroups
hangouts: Hangouts
sponsorships: Sponsorships
merchants: Merchants & Services
merchants: Merchants & Exchanges
about: About Monero
roadmap: Roadmap
researchlab: Monero Research Lab (MRL)
@ -52,7 +52,7 @@ navigation:
contributing: Contributing
mining: Mining
community: Community
merchants: Merchants
merchants: Merchants & Exchanges
resources: Resources
about: About
mrl: Research Lab
@ -127,12 +127,32 @@ hangouts:
monero-site: Where the development of this website is coordinated.
merchants:
intro1: Merchants of all kinds have come to value the financial privacy that Monero brings. Below is a list of the merchants that we know of that currently accept Monero for their goods and services. <b>These merchants are not vetted by the Getmonero team, see the disclaimer at the bottom of this page</b>. If a company no longer accepts Monero or you would like your business to be listed, please
intro2: open a GitHub issue and let us know
intro3: (select the "Merchant" template and fill up all sections).
descr: On this page you will find stores and merchants that accept Monero as payment, as well as exchanges that trade Monero for other currencies.
useit: "Merchants that accept Monero"
use: Over the years, merchants of all kinds have come to value the financial privacy that Monero brings. In fact, merchant adoption is continuously rising.
dirdescr: "If you are looking for places to spend your Monero, the directories below have some options. Please remember to do your own research before trusting them with your money:"
descrp2p: The best way to exchange Monero for other currencies (or the other way round) is using P2P exchanges, because they allow traders to directly interact with each other, without the need of trusted third parties (except maybe for providing an escrow service). These exchanges are more private then their centralized counterparts and allow people to be in complete control of their coins if they are non-custodial, but they usually have less volume than 'traditional' exchanges. In the section below, we offer a list of P2P exchanges that support Monero.
swapsdescr: A new exciting way to exchange Monero is Atomic Swaps, which <a href="https://www.getmonero.org/2021/08/20/atomic-swaps.html">we announced</a> on August 2021. Atomic Swaps are a completely decentralized way to swap Bitcoin <-> Monero (more info in the blog post). The technology is brand new, so there aren't many swap providers yet, but you can already sell XMR for BTC using this protocol at
bisqdescr: Decentralized P2P exchange based on Bitcoin and Tor.
cardfoss: "Open source:"
cardkyc: "<b>No KYC</b> (Know Your Customer):"
cardbtcfiat: (BTC &#8596; fiat possible)
cardonion: "Onion address:"
noncustodial: "Non-custodial:"
hodlhodldescr: P2P trading platform with non-custodial escrow.
locmondescr: Online P2P exchange offering person-to-person trades.
depsell: Depends by the seller
locnojs: (but no-JS version available)
simpleswapdescr: Non-custodial instant exchange.
disclaimer: |
"Please note: these links are being provided as a convenience and for informational purposes only; they do not constitute an endorsement by the Monero community of any products, services or opinions of the corporations or organizations or individuals listed. The Monero community bears no responsibility for the accuracy, legality, or content of these external sites. Contact the external site for answers to questions regarding its content. As always, caveat emptor ('buyer beware'); you are responsible for doing your own research. Always use judgement when making online purchases."
onion: Onion address (needs Tor)
visitbisq: Visit Bisq
visitlocalmonero: Visit LocalMonero
visithodlhodl: Visit HodlHodl
centrexchanges: Centralized exchanges (CEXs) & Swappers
centrexchangesp: If you prefer to use centralized exchanges, here is a list of renowned CEXes and swappers. Many more exchanges support Monero, we list here only a few reputable ones.
cexp: Centralized exchanges that offer exchanging Monero for national currencies and cryptocurrencies.
swappersp: Swappers let users exchange XMR for other cryptocurrencies.
sponsorships:
intro: The following businesses actively support the Monero Project in its goal to bring financial privacy to the world. We couldn't be more grateful for their contributions. If you would like to sponsor the Monero Project and be listed on this page, please send an email to dev@getmonero.org.

View file

@ -4,74 +4,111 @@ title: titles.merchants
permalink: /community/merchants/index.html
---
{% t global.lang_tag %}
<div class="merchants text-center container description">
<p>{% t merchants.intro1 %}<a href="https://github.com/monero-project/monero-site/issues" target="_blank" rel="noreferrer noopener"> {% t merchants.intro2 %}</a> {% t merchants.intro3 %}</p>
</div>
{% assign itemCount = site.data.merchants | size %}
{% assign headerRow = itemCount | divided_by: 5.0 | ceil | times: 1.0 %}
{% assign itemInRow = itemCount | divided_by: headerRow | ceil %}
{% assign Item_processed = 0 %}
<!-- Merchants menu: desktop -->
<div class="container full">
{% for toplevel in site.data.merchants %}
{% assign isHeader = Item_processed | modulo: itemInRow %}
{% if isHeader == 0 %}
<div class="tabPanel-merchant tabPanel-merchant{{ itemInRow }}">
{% endif %}
<h2><a href="#{{ toplevel.id }}">{{ toplevel.category }}</a></h2>
{% assign Item_processed = Item_processed | plus: 1 %}
{% assign isHeader = Item_processed | modulo: itemInRow %}
{% if isHeader == 0 %}
</div>
{% if Item_processed != itemCount %}
{% assign headerRow = itemCount | minus: Item_processed | divided_by: 5.0 | ceil | times: 1.0 %}
{% assign itemInRow = itemCount | minus: Item_processed | divided_by: headerRow | ceil %}
{% endif %}
{% endif %}
{% endfor %}
</div>
<!-- End merchants menu: desktop -->
<!-- Merchants menu: mobile -->
<div class="container full">
<div class ="info-block row center-xs" id="pick-platform">
<div class="mob dropdowndrop">
<input id="filter" type="checkbox" name="category-filter"/>
<label for="filter">{% t blog.filter %}</label>
<ul id="menu">
{% for toplevel in site.data.merchants %}
<li><a href="#{{ toplevel.id }}">{{ toplevel.category }}</a></li>
{% endfor %}
</ul>
</div>
<section class="container">
<div class="merchants site-wrap">
<div class="text-center container description">
<p>{% t merchants.descr %}</p>
</div>
</div>
<!-- End merchants menu: mobile -->
<div class="merchants">
{% for toplevel in site.data.merchants %}
<div class="container full" id="{{toplevel.id}}">
<div class="info-block">
<h2>{{toplevel.category}}</h2>
<div class="row">
{% assign sortedMerchants = toplevel.merchants | sort: 'name' %}
{% for merchants in sortedMerchants %}
<div class="col-md-6 col-sm-6 col-xs-12">
<p><a href="{{merchants.url}}" target="_blank" rel="noreferrer noopener">{{merchants.name}}</a>
{% if merchants.url contains ".onion" %}<img class="onion-mid" src="/img/onion-tor.svg" alt="onion" title="{% t merchants.onion %}">{% endif %}</p>
</div>
{% endfor %}
<div class="full col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="info-block">
<h2>{% t merchants.useit %}</h2>
<p>{% t merchants.use %}</p>
<p>{% t merchants.dirdescr %}</p>
<ul class="logo">
<li><a href="https://cryptwerk.com/pay-with/xmr/">cryptwerk.com</a></li>
<li><a href="https://www.acceptedhere.io/catalog/currency/xmr/">acceptedhere.io</a></li>
</ul>
</div>
</div>
<div class="full col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="info-block">
<h2>P2P exchanges and Atomic Swaps</h2>
<p>{% t merchants.descrp2p %}</p>
<p>{% t merchants.swapsdescr %} <a href="https://unstoppableswap.net/">unstoppableswap.net</a>.</p>
</div>
</div>
<div class="row">
<div class="left half no-pad-sm col-lg-6 col-md-6 col-sm-12 col-xs-12">
<div class="info-block">
<div class="center-xs">
<img class="merch" src="/img/merchants/bisq.svg" alt="Bisq Logo" title="Bisq">
<p>{% t merchants.bisqdescr %}</p>
</div>
<div>
<p><b>{% t merchants.cardfoss %}</b> <span class="check"></span></p>
<p><b>{% t merchants.noncustodial %}</b> <span class="check"></span></p>
<p>{% t merchants.cardkyc %} <span class="check"></span></p>
<p><b>XMR &#8596; fiat:</b> <span class="cross"></span> {% t merchants.cardbtcfiat %}</p>
<p><b>{% t merchants.cardonion %}</b> <span class="cross"></span></p>
</div>
<div class="center-xs">
<p><a href="https://bisq.network/" class="btn-link btn-fixed btn-primary-top">{% t merchants.visitbisq %}</a></p>
</div>
</div>
</div>
<div class="right half no-pad-sm col-lg-6 col-md-6 col-sm-12 col-xs-12">
<div class="info-block">
<div class="center-xs">
<img class="merch" src="/img/merchants/localmonero.png" alt="LocalMonero logo" title="LocalMonero">
<p>{% t merchants.locmondescr %}</p>
</div>
<div>
<p><b>{% t merchants.cardfoss %}</b> <span class="cross"></span></p>
<p><b>{% t merchants.noncustodial %}</b> <span class="cross"></span></p>
<p>{% t merchants.cardkyc %} {% t merchants.depsell %}</p>
<p><b>XMR &#8596; fiat:</b> <span class="check"></span></p>
<p><b>{% t merchants.cardonion %}</b> <span class="check"></span></p>
</div>
<div class="center-xs">
<p><a href="https://localmonero.co" class="btn-link btn-fixed btn-primary-top">{% t merchants.visitlocalmonero %}</a></p>
</div>
</div>
</div>
{%endfor%}
</div>
<div class="text-center container description">
<p>
<em>{% t merchants.disclaimer %}</em>
</p>
</div>
<a class="arrow-up" href="#" aria-label="{% t accessibility.arrowup %}" title="{% t accessibility.gotop %}"><i></i></a>
</div>
<div class="left half no-pad-sm col-lg-6 col-md-6 col-sm-12 col-xs-12">
<div class="info-block">
<div class="center-xs">
<img class="merch" src="/img/merchants/hodlhodl.jpg" alt="HodlHodl Logo" title="HodlHodl">
<p>{% t merchants.hodlhodldescr %}</p>
</div>
<div>
<p><b>{% t merchants.cardfoss %}</b> <span class="cross"></span></p>
<p><b>{% t merchants.noncustodial %}</b> <span class="check"></span></p>
<p>{% t merchants.cardkyc %} <span class="check"></span></p>
<p><b>XMR &#8596; fiat:</b> <span class="cross"></span> {% t merchants.cardbtcfiat %}</p>
<p><b>{% t merchants.cardonion %}</b> <span class="cross"></span></p>
</div>
<div class="center-xs">
<p><a href="https://hodlhodl.com" class="btn-link btn-fixed btn-primary-top">{% t merchants.visithodlhodl %}</a></p>
</div>
</div>
</div>
</div>
<div class="full col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="info-block">
<h2>{% t merchants.centrexchanges %}</h2>
<p>{% t merchants.centrexchangesp %}</p>
<h3>CEXes</h3>
<p>{% t merchants.cexp %}</p>
<ul class="logo">
<li><a href="https://www.kraken.com/">Kraken</a> (EUR*, USD*, CAD, GBP, JPY, AUD, CHF)</li>
<li><a href="https://www.binance.com/trade.html?symbol=XMR_BTC">Binance</a> (USD, EUR, RUB, TRY, NGN, UAH, KZT, INR, ...)</li>
<li><a href="https://dvchain.co/">DV Chain (OTC)</a> (USD*, CAD*, GBP*, EUR*, JPY*, ...)</li>
<li><a href="https://www.bitfinex.com/">Bitfinex</a> (USD*)</li>
</ul>
<p>*Fiat currency to Monero trading pair (e.g. XMR/USD, XMR/EUR)</p>
<h3>Swappers</h3>
<p>{% t merchants.swappersp %}</p>
<ul class="logo">
<li><a href="https://sideshift.ai/">Sideshift.ai</a></li>
<li><a href="https://www.morphtoken.com/">Morphtoken</a></li>
<li><a href="https://simpleswap.io/">SimpleSwap</a></li>
<li><a href="https://changenow.io/">ChangeNow</a></li>
<li><a href="https://godex.io/">Godex</a></li>
</ul>
</div>
</div>
<div class="text-center container description">
<p><em>{% t merchants.disclaimer %}</em></p>
</div>
</div>
</section>

View file

@ -3532,119 +3532,27 @@ span.icon-git {
/***************************MERCHANTS STYLING***********************************/
.merchants .col-md-4 {
padding-left: 1rem;
padding-right: 1rem;
.merchants img.merch {
max-height: 85px;
}
.merchants a {
margin-top: 0.4rem;
margin-bottom: 0.4rem;
display: inline;
.merchants span {
height: 1.8rem;
width: 1.8rem;
display: inline-block;
vertical-align: middle;
}
.tabPanel-merchant {
position: relative;
margin-bottom: 1rem;
.merchants span.check {
background-image: url("/img/emojis/2714.svg");
}
.tabPanel-merchant + .tabPanel-merchant {
margin-top: -1rem;
.merchants span.cross {
background-image: url("/img/emojis/274C.svg");
}
.tabPanel-merchant > h2 {
font-size: 1.1rem;
height: 2rem;
line-height: 2rem;
padding: 1rem 0;
}
.tabPanel-merchant > h2 {
position: relative;
margin: 0;
text-align: center;
background: #ffffff;
color: #000;
-moz-box-shadow: 0 1px 0px rgba(50,50,93,.1);
-webkit-box-shadow: 0 1px 0px rgba(50,50,93,.1);
box-shadow: 0 1px 0px rgba(50,50,93,.1);
}
.tabPanel-merchant > h2 ~ h2 {
position: absolute;
top: 0;
}
.tabPanel-merchant a:hover, .tabPanel-merchant a:focus, .tabPanel-merchant a:active {
color: #d26e2b;
}
.tabPanel-merchant h2:nth-child(1) {
left: 0;
}
.tabPanel-merchant3 > h2 {
width: calc(100% / 3);
}
.tabPanel-merchant3 h2:nth-child(2) {
left: calc(1 * (100% / 3));
}
.tabPanel-merchant3 h2:nth-child(3) {
left: calc(2 * (100% / 3));
}
.tabPanel-merchant4 > h2 {
width: calc(100% / 4);
}
.tabPanel-merchant4 h2:nth-child(2) {
left: calc(1 * (100% / 4));
}
.tabPanel-merchant4 h2:nth-child(3) {
left: calc(2 * (100% / 4));
}
.tabPanel-merchant4 h2:nth-child(4) {
left: calc(3 * (100% / 4));
}
.tabPanel-merchant5 > h2 {
width: calc(100% / 5);
}
.tabPanel-merchant5 h2:nth-child(2) {
left: calc(1 * (100% / 5));
}
.tabPanel-merchant5 h2:nth-child(3) {
left: calc(2 * (100% / 5));
}
.tabPanel-merchant5 h2:nth-child(4) {
left: calc(3 * (100% / 5));
}
.tabPanel-merchant5 h2:nth-child(5) {
left: calc(3 * (100% / 5));
}
@media only screen and (max-width: 50rem) {
.tabPanel-merchant > h2 {
font-size: 1.1rem;
height: 3rem;
padding: 1rem 0;
}
}
@media only screen and (max-width: 62rem) {
.tabPanel-merchant {
display: none;
}
.merchants a.btn-fixed {
margin-top: 1rem;
}
/***************************ROADMAP STYLING*********************************/

11
img/emojis/274C.svg Normal file
View file

@ -0,0 +1,11 @@
<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
<g id="color">
<path fill="#ea5a47" d="m58.14 21.78-7.76-8.013-14.29 14.22-14.22-14.22-8.013 8.013 14.36 14.22-14.36 14.22 8.014 8.013 14.22-14.22 14.29 14.22 7.76-8.013-14.22-14.22z"/>
</g>
<g id="hair"/>
<g id="skin"/>
<g id="skin-shadow"/>
<g id="line">
<path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="m58.14 21.78-7.76-8.013-14.29 14.22-14.22-14.22-8.013 8.013 14.35 14.22-14.35 14.22 8.014 8.013 14.22-14.22 14.29 14.22 7.76-8.013-14.22-14.22z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 632 B

18
img/merchants/bisq.svg Normal file
View file

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="246px" height="85px" viewBox="0 0 246 85" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 50.2 (55047) - http://www.bohemiancoding.com/sketch BISQ -->
<title>bisq_logo_green</title>
<desc>Created with Sketch.</desc>
<defs/>
<g id="bisq_logo_green" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Group-3-Copy" transform="translate(88.000000, 2.000000)" fill="#25B135" fill-rule="nonzero">
<g id="Group-2">
<rect id="Rectangle-path" x="52.9067358" y="16.9949749" width="12.6943005" height="47.6984925"/>
<path d="M92.1806975,35.7107637 L87.5413226,34.6952465 C84.5143473,34.0864822 82.9019477,32.6642122 82.9019477,30.630448 C82.9019477,28.5966838 85.3219021,26.9724023 88.5494111,26.9724023 C91.1559933,26.644834 93.6772918,28.0380255 94.8038955,30.4284365 L103.882112,24.3326036 C100.680293,19.1316165 95.0283057,15.9773269 88.9531885,16.000995 C84.7990548,15.9603927 80.7264894,17.1632324 77.2517745,19.4570292 C73.7476881,21.9372287 71.5859574,25.9163262 71.4010675,30.226425 C71.2005337,37.5425165 76.0404423,43.029585 84.714881,45.4673722 C86.1276502,45.8732151 87.7418564,46.2799679 89.5574996,46.6876307 C93.5925634,47.5065962 94.1968745,48.9234064 94.1968745,50.3456765 C94.1968745,52.988205 91.7769202,54.6124865 88.1456337,54.410475 C84.1686222,54.480577 80.4948807,52.2770068 78.6609304,48.721395 L71,55.4232623 C74.2428315,61.6848139 80.7356565,65.5463398 87.7445663,65.3818823 C97.4270934,65.5838938 105.497221,58.8792965 105.697755,50.5476879 C105.686915,43.0241253 101.05838,37.7417981 92.1806975,35.7107637 Z" id="Shape"/>
<path d="M24.5785755,16.2586058 C20.0867623,16.2392904 15.7250287,17.7650176 12.2255503,20.5796738 L12.2255503,0 L0.0772102062,0 L0.0772102062,38.0740553 C-0.0257367354,39.1691895 -0.0257367354,40.2715584 0.0772102062,41.3666925 L0.0772102062,41.9831981 C0.141606679,48.5232335 2.72175286,54.7876492 7.2826806,59.4775796 C11.1579139,63.2186321 16.1428623,65.6021495 21.4889362,66.2701989 L24.5785755,66.2701989 C31.0467211,66.3333165 37.2725652,63.8136037 41.8744705,59.2702347 C46.6134407,54.4461666 49.2103942,47.9187464 49.0799409,41.1593476 C49.113757,34.4178405 46.5308995,27.9258506 41.8744705,23.0484606 C37.1762355,18.6796541 30.9956948,16.2533574 24.5785755,16.2586058 Z M24.7832607,55.153747 C24.0907164,55.1981947 23.3955617,55.1290884 22.7253452,54.9491667 L22.3132089,54.9491667 C22.0817961,54.9803559 21.8489644,54.9027851 21.6825573,54.7390572 C16.7086255,53.7187863 12.9156928,49.6797876 12.2117202,44.6538006 C11.9609529,43.5032846 11.8229222,42.3310876 11.7995839,41.1538184 C11.6077257,37.6172003 12.8590981,34.1540127 15.2676028,31.5560356 C17.6761076,28.9580585 21.0358049,27.4474326 24.5785755,27.3695286 C33.8447275,27.3695286 37.139052,34.5713086 37.139052,41.1593476 C37.139052,47.951967 34.0494126,54.9491667 24.7860267,55.153747 L24.7832607,55.153747 Z" id="Shape"/>
<path d="M157.084629,40.2134289 C157.020131,33.6935232 154.43592,27.4483889 149.867806,22.7728937 C145.986468,19.0433558 140.993665,16.6671747 135.639169,16.0011814 L132.544662,16.0011814 C126.066724,15.9375257 119.831126,18.4484685 115.221518,22.9768443 C110.475081,27.7860643 107.874036,34.2933936 108.004695,41.0319875 C107.970826,47.7527449 110.557753,54.2247529 115.221518,59.0871308 C119.831126,63.6155065 126.066724,66.1264493 132.544662,66.0627936 C137.043552,66.0820496 141.412157,64.5610184 144.917149,61.7550255 L144.917149,82.2713568 L157.084629,82.2713568 L157.084629,40.2134289 Z M132.131876,54.5891925 C122.851126,54.5891925 119.551611,47.409579 119.551611,40.8418174 C119.551611,34.2740557 122.851126,27.0944422 131.924098,27.0944422 C132.617734,27.0501313 133.313984,27.1190249 133.985256,27.2983929 L134.398042,27.2983929 C134.62435,27.2702289 134.851349,27.3451675 135.015835,27.5023435 C140.878627,28.8150269 145.011156,34.0400653 144.914379,40.0177465 L144.914379,40.8445734 C145.179686,44.3858228 143.953597,47.8774656 141.529483,50.4840383 C139.105369,53.0906111 135.701333,54.5775953 132.131876,54.5891925 Z" id="Shape"/>
</g>
</g>
<path d="M62.5608336,18.188908 C65.1717172,23.8660536 65.726235,25.0385385 67.7281942,30.8117984 C68.8776612,34.4388409 66.5752334,39.8109082 57.0825229,35.2444879 C50.3219801,32.0218998 45.4306313,29.7386897 49.4590064,24.3666223 C51.4221958,21.7598842 53.6448268,19.3321537 56.0972655,17.1157992 C58.7070707,14.8364654 60.3232323,13.3999401 62.5608336,18.188908 Z M60.3099842,54.5520286 C65.2817274,49.6626759 72.1895383,55.1325928 67.3643101,61.6957779 C57.6424244,74.9861618 40.6701845,80.2860724 25.4623094,74.9458778 C10.2544344,69.6056833 -0.00268709882,55.004203 0.000328179635,38.3010702 C-0.0379988635,28.2940622 3.28138,19.9437454 9.62375417,12.4219687 C15.7287246,5.59064349 24.8172744,0.116885638 33.7809966,0 C46.3812889,0 52.0107218,11.0222204 47.5729445,17.1686415 C42.6142248,24.0028926 36.8480445,23.4472073 32.560038,20.5163064 C32.560038,20.5163064 26.6603663,16.3317253 24.9184654,14.9357355 C22.2356124,12.8451391 19.2857766,12.8451391 18.2145889,16.192804 C16.3391966,22.1901388 15.4015004,25.957956 13.9265825,31.9552908 C13.2404232,34.9727506 12.8811217,38.0606851 12.8553948,41.1613691 C12.8861913,46.8693634 15.400362,52.255484 19.6927628,55.8090971 C22.6566387,58.5929695 25.8401722,61.1125918 29.2097277,63.341343 C31.9226976,65.1922618 35.0828024,66.2082179 38.3262183,66.2722439 L38.5932012,66.2722439 C41.8366172,66.2082179 44.9967219,65.1922618 47.7096918,63.341343 C52.0915221,60.7040781 56.3008192,57.7678894 60.3099842,54.5520286 Z M24.8619208,47.6404135 C23.0737929,46.9853919 19.025911,43.452727 20.2151029,40.8326406 C20.6925157,39.392229 24.1472483,39.0011239 25.2178104,39.0011239 C31.5341264,38.8707555 31.7713861,50.1301315 24.8619208,47.6404135 Z M35.9709188,59.6364846 C35.1641481,58.9132151 33.6845241,57.4666762 32.3388175,56.2602511 C31.9661523,55.8557439 31.8944367,55.2923324 32.1558666,54.8229554 C32.4172966,54.3535784 32.9627461,54.0664377 33.5473404,54.0904427 C35.9211094,53.9698524 38.3005905,53.9698524 40.6743594,54.0904427 C41.2250988,54.1309633 41.7017225,54.4497615 41.9019064,54.9115093 C42.1020903,55.3732572 41.9907107,55.8969375 41.6150475,56.2602511 C40.2726072,57.4666762 38.7929832,58.9132151 38.1201299,59.6364846 C37.8281825,59.8781281 37.4427521,60.0083613 37.0455244,59.9995834 C36.6482966,60.0083613 36.2628662,59.8781281 35.9709188,59.6364846 Z M50.1380792,47.6404135 C43.2286139,50.1301315 43.4658736,38.8707555 49.7821896,39.0011239 C50.8527517,39.0011239 54.1888545,39.392229 54.7848971,40.8326406 C55.974089,43.452727 51.9262071,46.9853919 50.1380792,47.6404135 Z" id="Combined-Shape" fill="#25B135" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.7 KiB

BIN
img/merchants/hodlhodl.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB