blob: 6ad6c8f195006329b0a3ae2b404577ce6e292a23 (
plain)
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
|
<!DOCTYPE html>
<html lang="en">
<head>
<title>Support the project | Drohiczyn-Poleski</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css">
<style>
/* Additional styles for the support page */
.support-grid {
display: flex;
flex-wrap: wrap;
gap: 2rem;
justify-content: center;
margin: 2rem 0;
}
.support-card {
background: #fffef7;
border-radius: 28px;
padding: 1.5rem;
flex: 1 1 280px;
max-width: 320px;
box-shadow: 0 8px 20px rgba(0,0,0,0.05);
border: 1px solid #e2d5c0;
text-align: center;
transition: 0.2s;
}
.support-card:hover {
transform: translateY(-5px);
border-color: #bc9a6c;
}
.support-card h3 {
margin-top: 0;
color: #4a2e1f;
font-size: 1.6rem;
}
.qr-code {
background: white;
padding: 0.8rem;
border-radius: 20px;
display: inline-block;
margin: 1rem 0;
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.qr-code img {
width: 150px;
height: 150px;
display: block;
}
.crypto-address {
background: #f5f2e6;
border-radius: 60px;
padding: 0.5rem 1rem;
font-family: monospace;
font-size: 0.75rem;
word-break: break-all;
margin: 1rem 0;
border: 1px solid #decba4;
}
.btn {
display: inline-block;
background: #f5f2e6;
border: 1px solid #bc9a6c;
border-radius: 3rem;
padding: 0.6rem 1.5rem;
font-weight: 600;
text-decoration: none;
color: #4a2e1f;
transition: 0.2s;
margin-top: 0.5rem;
}
.btn-primary {
background: #bc9a6c;
color: white;
border-color: #8b6946;
}
.btn-primary:hover {
background: #a07d52;
}
.btn:hover {
background: #e8dfcf;
transform: translateY(-2px);
}
hr {
margin: 2rem 0;
border: none;
border-top: 2px dotted #decba4;
}
.footer-note {
text-align: center;
font-size: 0.85rem;
color: #6b5a4a;
margin-top: 2rem;
}
</style>
</head>
<body>
<div class="box">
<div class="row content">
<h1 style="text-align: center; color: #4a2e1f;">🙌 Support the project</h1>
<p style="text-align: center; max-width: 700px; margin: 0 auto 1rem auto;">
The "Drohiczyn-Poleski" website exists thanks to donations. Choose a convenient way — any help matters!
</p>
<div class="support-grid">
<!-- PayPal -->
<div class="support-card">
<h3>💳 PayPal</h3>
<div class="qr-code">
<img src="https://quickchart.io/qr?text=https://paypal.me/EsFrPls?country.x=PL&locale.x=en_US&size=200&margin=2&ecLevel=H"
alt="PayPal QR">
</div>
<a href="https://paypal.me/EsFrPls?country.x=PL&locale.x=en_US" target="_blank" class="btn btn-primary"> Go to PayPal </a>
</div>
<!-- Bitcoin -->
<div class="support-card">
<h3>â‚¿ Bitcoin</h3>
<div class="qr-code">
<img src="https://quickchart.io/qr?text=bc1q6jhue36rsh3w535q5gnhhlghde0v8s2jyya3h4&size=200&margin=2&ecLevel=H"
alt="Bitcoin QR">
</div>
<div class="crypto-address">
bc1q6jhue36rsh3w535q5gnhhlghde0v8s2jyya3h4
</div>
<a href="bitcoin:bc1q6jhue36rsh3w535q5gnhhlghde0v8s2jyya3h4" class="btn">Open in wallet</a>
</div>
<!-- Monero -->
<div class="support-card">
<h3>🔒 Monero</h3>
<div class="qr-code">
<img src="https://quickchart.io/qr?text=44La5HE87DujKoiTkYJqhujZdJJTh5gXfDxMco3b52a8R9agtcTxdnpcVzAypYRVtMGZSvyQejCE2YSYNRpeT4QrRso7MY6&size=200&margin=2&ecLevel=H"
alt="Monero QR">
</div>
<div class="crypto-address" style="font-size: 0.65rem;">
44La5HE87DujKoiTkYJqhujZdJJTh5gXfDxMco3b52a8R9agtcTxdnpcVzAypYRVtMGZSvyQejCE2YSYNRpeT4QrRso7MY6
</div>
<a href="monero:44La5HE87DujKoiTkYJqhujZdJJTh5gXfDxMco3b52a8R9agtcTxdnpcVzAypYRVtMGZSvyQejCE2YSYNRpeT4QrRso7MY6" class="btn">Open in wallet</a>
</div>
</div>
<hr>
<div style="text-align: center;">
<a href="index.html" class="btn">🔙 Back to main page</a>
</div>
<div class="footer-note">
<p>QR codes are generated automatically. Funds go directly to the specified wallets.</p>
</div>
</div>
<div class="row footer">
<div class="footer">
<p>© Drohiczyn-Poleski project</p>
</div>
</div>
</div>
</body>
</html>
|