-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdonate.html
More file actions
82 lines (72 loc) · 2.9 KB
/
donate.html
File metadata and controls
82 lines (72 loc) · 2.9 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
---
layout: default
title: Donate
redirect_from:
- /donate.html
---
<h1 class="text-4xl md:text-5xl lg:text-6xl font-bold text-white mb-6 text-center">
Donate to <span class="gradient-text">Salvium</span>
</h1>
<p class="text-xl text-gray-300 mb-8 text-center">
Your support funds development, audits, and community initiatives. Thank you.
</p>
</div>
</div>
</div>
</section>
<!-- Donation Addresses -->
<section class="container mx-auto px-4 py-12">
<div class="max-w-3xl mx-auto space-y-10">
<div>
<h2 class="text-2xl font-bold mb-2 mt-8">Standard Donation Address</h2>
<p class="text-white text-opacity-80 mb-3">Use this for regular SAL donations.</p>
<div class="rounded-lg border border-white border-opacity-10 bg-white bg-opacity-5 p-4">
<p class="font-mono text-sm md:text-base break-all">
SaLvdTpya4SEgMWDVQ9eDsgJJEwhB2pb5N4YZPMeVjg4BpwoigpKuTMS1TC92ziNyu5EvKaXLMy2LX8PXa1kNsRjBSYPTgyc3J5
</p>
</div>
</div>
<div>
<h2 class="text-2xl font-bold mb-2">Carrot Donation Address</h2>
<p class="text-white text-opacity-80 mb-3">Use this Carrot address if your wallet supports it.</p>
<div class="rounded-lg border border-white border-opacity-10 bg-white bg-opacity-5 p-4">
<p class="font-mono text-sm md:text-base break-all">
SC11SxSj5yuT71WCWB1VsthazjnakytLLZrdpD3k7RKGVQEWH57w6zNbvhvP14dheJNiGwvwy3Fp915khxe1KMGuAea3anrm8a
</p>
</div>
</div>
<div class="text-white text-opacity-70 text-sm">
<p>Always verify the address before sending. On-chain transactions are irreversible.</p>
</div>
</div>
</section>
</main>
<!-- CTA Section -->
<section class="py-16 relative overflow-hidden bg-[#0B272C] mt-8">
<!-- Background Decoration -->
<div class="absolute inset-0">
<img src="{{ site.baseurl }}/images/pools-1024.webp" alt="" class="absolute w-full h-full object-cover opacity-20">
<div class="absolute inset-0 bg-gradient-to-b from-[#0B272C]/95 via-[#0B272C]/80 to-[#0B272C]/95"></div>
</div>
<div class="container mx-auto px-4 text-center relative z-10">
<h2 class="text-4xl md:text-5xl font-bold mb-8" data-aos="fade-up">
Ready to Take the <span class="gradient-text">Pill</span>?
</h2>
<p class="text-xl text-white/80 mb-10 max-w-2xl mx-auto" data-aos="fade-up" data-aos-delay="100">
Start your journey with Salvium today and be part of the next generation of Private DeFi.
</p>
<a href="{% link download.html %}"
class="btn-primary px-12 py-4 text-lg font-semibold hover:opacity-90 transition-opacity inline-block"
data-aos="fade-up" data-aos-delay="200">
Get Started Now
</a>
</div>
</section>
<!-- Scripts -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.js"></script>
<script>
AOS.init({
duration: 800,
once: true
});
</script>