-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
317 lines (289 loc) · 12.4 KB
/
index.html
File metadata and controls
317 lines (289 loc) · 12.4 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
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>QBoost - Discord Boosting</title>
<link rel="stylesheet" href="assets/css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
<script src="assets/js/script.js" defer></script>
</head>
<body>
<!-- Marquee Section -->
<!-- Header -->
<header>
<div class="container">
<img src="assets/images/logo.png" alt="QBoost Logo" class="logo">
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#reviews">Reviews</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<!-- Hero Section -->
<section id="home" class="home">
<div class="container flex-container">
<div class="text-content">
<h1>Boost Your
Server The Right Way
at Discounted Rates!</h1>
<p>Welcome to QBoost, your ultimate destination for unleashing the full potential of your Discord server! Introducing our cutting-edge Nitro Tokens and Server Boosting service, designed to elevate your Discord experience to new heights.</p>
<a href="#services" class="btn">Start Boosting -></a>
<a href="https://discord.gg/qboostz" class="btn">Join Discord</a>
</div>
</div>
</section>
<section class="marquee-container">
<div class="marquee">
<div class="marquee-item">QBoost | #1 Wallet Friendly Boosting Service <span class="separator">•</span></div>
<div class="marquee-item">QBoost | #1 Wallet Friendly Boosting Service <span class="separator">•</span></div>
<div class="marquee-item">QBoost | #1 Wallet Friendly Boosting Service <span class="separator">•</span></div>
<div class="marquee-item">QBoost | #1 Wallet Friendly Boosting Service <span class="separator">•</span></div>
<div class="marquee-item">QBoost | #1 Wallet Friendly Boosting Service <span class="separator">•</span></div>
<div class="marquee-item">QBoost | #1 Wallet Friendly Boosting Service <span class="separator">•</span></div>
<div class="marquee-item">QBoost | #1 Wallet Friendly Boosting Service <span class="separator">•</span></div>
</div>
</section>
<!-- About Us Page -->
<section id="aboutus" class="aboutus">
<div class="container flex-container">
<img src="assets/images/phoneee.png" alt="phoneee" class="phoneee">
<div class="text-content">
<!-- Section Title -->
<div class="our-story">
</div>
<div class="text-content">
<h1>About Us</h1>
<div class="content">
<h2>We're your top choice for Discord needs.</h2>
<p class="description">With over 24 months of experience, our server boosting service stands as the pinnacle of reliability, respect, and renown in the industry.</p>
<ul class="features">
<li><span class="purple"></span> 24/7 Customer Support</li>
<li><span class="purple"></span> Instant Delivery</li>
<li><span class="purple"></span> Most affordable pricing</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>QBoost - Discord Boosts</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Redeem Your Key Section -->
<section id="redeem" class="section">
<div class="container">
<h2>Redeem Your Key</h2>
<form id="redeem-form">
<label for="key">Key:</label>
<input type="text" id="key" name="key" required>
<label for="guild-id">Server Invite (Guild ID):</label>
<input type="text" id="guild-id" name="guild-id" required>
<label for="duration">Duration (1 or 3 months):</label>
<input type="text" id="duration" name="duration" required>
<button type="submit" class="btn">Submit</button>
</form>
</div>
</section>
<script>
// JavaScript to handle form submission
document.getElementById("redeem-form").addEventListener("submit", function(event) {
event.preventDefault(); // Prevent the form from refreshing the page
// Get the form values
const key = document.getElementById("key").value;
const guildId = document.getElementById("guild-id").value;
const duration = document.getElementById("duration").value;
// Send data to backend via POST request
fetch("/redeem", {
method: "POST",
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
key: key,
guildId: guildId,
duration: duration
})
})
.then(response => response.json())
.then(data => {
if (data.success) {
alert("Boosting initiated!");
} else {
alert("Error: " + data.error);
}
})
.catch(error => {
console.error("Error:", error);
alert("An error occurred.");
});
});
</script>
<section id="services" class="section">
<div class="container">
<h2>Our Services</h2>
<p>We offer the best Discord boosting services with instant delivery.</p>
<div class="products">
<div class="product">
<h3>1 Month Boosts (watermarked)</h3>
<p>14 Boosts - $1.75</p>
<button class="btn buy-now">Buy Now</button>
</div>
<div class="product">
<h3>1 Month Boosts (watermarked)</h3>
<p>21 Boosts - $2.50</p>
<button class="btn buy-now">Buy Now</button>
</div>
<div class="product">
<h3>1 Month Boosts (watermarked)</h3>
<p>32 Boosts - $4.00</p>
<button class="btn buy-now">Buy Now</button>
</div>
<div class="product">
<h3>3 Month Boosts (watermarked)</h3>
<p>14 Boosts - $6.30</p>
<button class="btn buy-now">Buy Now</button>
</div>
<div class="product">
<h3>Monthly Nitro</h3>
<p>1 Nitro Monthly - $4.60</p>
<button class="btn buy-now">Buy Now</button>
</div>
<div class="product">
<h3>3 Month Nitro</h3>
<p>1 Nitro 3 Month - $13.80</p>
<button class="btn buy-now">Buy Now</button>
</div>
<div class="product">
<h3>Roblox Account</h3>
<p>1 Account - $0.50</p>
<button class="btn buy-now">Buy Now</button>
</div>
</div>
</div>
</section>
</body>
</html>
<!-- Simple Popup -->
<div id="buyNowModal" class="modal">
<div class="modal-content">
<span class="close" onclick="closeModal()">×</span>
<h2>Cash App Payment</h2>
<p><strong>Send money to:</strong></p>
<p><code>$chargeboost</code></p>
<p>After payment, create a ticket in Discord with proof. Boosts will be transferred.</p>
</div>
</div>
<script>
// Show popup when clicking Buy Now
document.querySelectorAll(".buy-now").forEach(button => {
button.addEventListener("click", function() {
document.getElementById("buyNowModal").style.display = "flex";
});
});
// Close popup
function closeModal() {
document.getElementById("buyNowModal").style.display = "none";
}
</script>
</body>
</html>
<!-- Features Section -->
<section id="features" class="features-section">
<div class="container">
<h2>Why Choose QBoost?</h2>
<p>We provide top-quality services with unmatched benefits for your Discord server.</p>
<div class="feature-cards">
<div class="feature-card">
<h3>Instant Delivery</h3>
<p>Our boosts are delivered instantly so you don't have to wait!</p>
</div>
<div class="feature-card">
<h3>24/7 Support</h3>
<p>Our support team is always available to assist you at any time.</p>
</div>
<div class="feature-card">
<h3>Secure & Safe</h3>
<p>Your privacy and security are our top priority, with safe payment methods.</p>
</div>
</div>
</div>
</section>
<!-- Reviews Section -->
<section id="reviews" class="section">
<div class="container">
<h2>Customer Reviews</h2>
<div class="review">
<p>"+rep got nitro legit" - winology </p>
</div>
<div class="review">
<p>"vouch 10/10 14x 1m boosts 0.90" - shies35t55.</p>
</div>
<div class="review">
<p>"+vouch 10/10 1,000 promo 1$" - _bpsupreme</p>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="contact-section">
<div class="container">
<h2>Contact Us</h2>
<p>If you have any questions or need support, feel free to reach out!</p>
<form action="#" method="post" class="contact-form">
<input type="text" placeholder="Your Name" required>
<input type="email" placeholder="Your Email" required>
<textarea placeholder="Your Message" required></textarea>
<button type="submit" class="btn">Send Message</button>
</form>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<div class="footer-content">
<div class="footer-brand">
<img src="assets/images/logo.png" alt="QBoost Logo">
<p>Premium Discord boosting services with instant delivery and 24/7 dedicated support.</p>
<button class="btn">Join Discord</button>
<button class="btn">View Services</button>
</div>
<div class="footer-links">
<div>
<h3>Navigation</h3>
<ul>
<li><a href="#aboutus">About Us</a></li>
<li><a href="#feedback">Feedback</a></li>
<li><a href="#services">Products</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
<div>
<h3>Support</h3>
<ul>
<li><a href="https://discord.gg/qboostz">Discord</a></li>
</ul>
</div>
<div>
<h3>Contact</h3>
<p>24/7 Support</p>
</div>
</div>
</div>
<p>© 2025 QBoost. All rights reserved.</p>
</div>
</footer>
</body>
</html>