-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdonate.html
More file actions
127 lines (119 loc) · 4.19 KB
/
Copy pathdonate.html
File metadata and controls
127 lines (119 loc) · 4.19 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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Support QuickNote — Donate</title>
<meta
name="description"
content="Support QuickNote with a USDT (Tether) donation. Scan the QR code or copy the wallet address."
/>
<link rel="icon" href="logo.png" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=DM+Mono:wght@400;500&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="aurora" aria-hidden="true">
<span class="blob b1"></span>
<span class="blob b2"></span>
<span class="blob b3"></span>
<div class="grid-overlay"></div>
</div>
<header class="nav">
<a class="brand" href="index.html">
<img src="logo.png" alt="" class="brand-logo" />
<span>Quick<em>Note</em></span>
</a>
<nav class="nav-links">
<a href="index.html">Home</a>
<a class="nav-cta" href="index.html#download">Download</a>
</nav>
</header>
<main class="donate-main">
<section class="donate-card reveal in">
<span class="donate-badge"><span class="tdot"></span> Tether · USDT</span>
<h1>Support <em>QuickNote</em></h1>
<p class="donate-sub">
QuickNote is free and offline — no ads, no accounts. If it earns a spot
on your screen, a small tip helps keep it growing. Thank you! 💜
</p>
<div class="qr-frame">
<img
src="QR.jpg"
alt="USDT donation QR code for QuickNote"
/>
</div>
<p class="qr-net">
Scan to send <strong>USDT</strong> · Network: <strong>TRON (TRC20)</strong>
</p>
<p class="addr-label">Wallet address</p>
<div class="addr-box">
<code id="addr">TTJHGwyScNoZTSQfmxUQjKVLPeCsqTu3jX</code>
<button class="copy-btn" id="copyBtn" type="button">
<svg viewBox="0 0 24 24" aria-hidden="true">
<path
d="M9 9h10v10H9zM5 15V5h10"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
<span id="copyLabel">Copy</span>
</button>
</div>
<p class="donate-note">
⚠️ Send only <strong>USDT on the TRON (TRC20)</strong> network to this
address. Sending other assets or networks may result in permanent loss.
</p>
<a class="back-link" href="index.html">← Back to QuickNote</a>
</section>
<section class="contact-card reveal in">
<h2 class="contact-title">Get in touch</h2>
<p class="contact-sub">
Questions, feedback, or a feature idea? Drop us a line — we read every
message.
</p>
<form
class="contact-form"
action="https://formspree.io/f/mzdlvdgn"
method="POST"
>
<label class="field">
<span>Your email</span>
<input type="email" name="email" placeholder="you@example.com" required />
</label>
<label class="field">
<span>Your message</span>
<textarea
name="message"
rows="4"
placeholder="Write your message…"
required
></textarea>
</label>
<button class="contact-send" type="submit">
<svg viewBox="0 0 24 24" aria-hidden="true">
<path
d="M22 2L11 13M22 2l-7 20-4-9-9-4 20-7z"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
Send message
</button>
</form>
</section>
</main>
<script src="donate.js"></script>
</body>
</html>