forked from ARRRmada/ARRRmada.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpayment_gateways.html
More file actions
79 lines (75 loc) · 3.13 KB
/
payment_gateways.html
File metadata and controls
79 lines (75 loc) · 3.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
---
layout: page
css-list:
- "assets/css/gateways.css"
---
<!-- hero section -->
<section class="hero-section">
<div class="content">
<div class="coin">
<img class="digital-coin" alt="Pirate Digital Coin" src="{{ site.baseurl }}/assets/img/site/p_coin.png" />
</div>
<div>
<h1>Payment Gateways</h1>
<strong>Solutions to accept $ARRR</strong>
<p>
Pirate Chain provides options for accepting $ARRR across various platforms including WordPress,
HTML, Shopify, and more. Discover all payment solutions here.
</p>
<a class="btn" href="{{ site.baseurl }}/" title="View Pirate Chain merchants">◄ HOME</a>
</div>
</div>
<!-- boxes animation -->
<div class="boxes"><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div></div>
</section>
<!-- gateway-explanation section -->
<section class="gateway-explanation">
<div class="content">
<img class="p" alt="pirate logo" src="{{ site.baseurl }}/assets/img/logo/Pirate_Logo_P_Gold.svg" />
<h2>Boost your business with the Pirate Chain Privacy Coin</h2>
<p>
Ready to accept cryptocurrency payments, especially with ARRR? Explore more about our merchant solutions.
</p>
<div class="solutions">
<div class="left-box">
<img alt="payment gateways" src="{{ site.baseurl }}/assets/img/site/gateways.jpg"/>
</div>
<div class="right-box">
<h2>Which Gateways Support $ARRR?</h2>
<p>
The gateways detailed here enable you to accept $ARRR payments on your website.
Together with our partners, we provide various options to accept e-commerce transactions,
donations, service fees, and more.
</p>
<p>
In the Pirate Chain network, all transactions remain anonymous. Accept $ARRR payments directly, with no
intermediaries or middle-man. You can opt for a free WordPress/WooCommerce solution, or select Shopify,
OpenCart, HTML, or a multi-platform alternative.
</p>
<p>
Should you have any inquiries or require assistance with the individual gateways, feel free to
reach out to us on the community <a title="chat at the community discord" href="https://pirate.black/discord" target="_blank">Discord</a>.
</p>
</div>
</div>
</div>
<img class="divider" alt="page divider" src="{{ site.baseurl }}/assets/img/site/triangle-bottom.svg" />
</section>
<!-- gateways-section -->
<section class="gateway-listings-section">
<div class="content">
{% for gateway in site.data.gateways %}
<a href="{{ gateway.url}}" target="_blank"
rel="noopener noreferrer"
title="go to {{ gateway.name }}'s website"
class="gateway-box" >
<div class="gateway-imgbox">
<img src="{{ site.baseurl }}/assets/img/gateways/{{ gateway.img}}"
alt="{{ gateway.name }}" />
</div>
<h3>{{ gateway.name }}</h3>
<p class="description">{{ gateway.desc | truncate: 300, "..." }}</p>
</a>
{% endfor %}
</div>
</section>