notritik commited on
Commit
098ba80
·
verified ·
1 Parent(s): 3aaa36f

undefined - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +6 -4
  2. index.html +448 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Rxdevelopement
3
- emoji: 📚
4
  colorFrom: yellow
5
- colorTo: red
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: rxdevelopement
3
+ emoji: 🐳
4
  colorFrom: yellow
5
+ colorTo: green
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,448 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en" class="dark">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>RxDevelopement | Premium Minecraft Plugins</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
10
+ <style>
11
+ body {
12
+ font-family: 'Poppins', sans-serif;
13
+ background-color: #0e0e0e;
14
+ color: #f3f4f6;
15
+ scroll-behavior: smooth;
16
+ }
17
+
18
+ .gradient-text {
19
+ background: linear-gradient(90deg, #00ffff 0%, #8b5cf6 100%);
20
+ -webkit-background-clip: text;
21
+ background-clip: text;
22
+ color: transparent;
23
+ }
24
+
25
+ .glow-effect {
26
+ box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
27
+ }
28
+
29
+ .glow-effect-purple {
30
+ box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
31
+ }
32
+
33
+ .plugin-card:hover {
34
+ transform: translateY(-5px);
35
+ transition: all 0.3s ease;
36
+ }
37
+
38
+ .team-card:hover {
39
+ transform: scale(1.03);
40
+ transition: all 0.3s ease;
41
+ }
42
+
43
+ .nav-link:hover {
44
+ color: #00ffff;
45
+ transition: all 0.3s ease;
46
+ }
47
+
48
+ .btn-primary:hover {
49
+ background: linear-gradient(90deg, #00ffff 0%, #8b5cf6 100%);
50
+ transition: all 0.3s ease;
51
+ }
52
+
53
+ .btn-secondary:hover {
54
+ background: rgba(139, 92, 246, 0.2);
55
+ transition: all 0.3s ease;
56
+ }
57
+
58
+ .pulse {
59
+ animation: pulse 2s infinite;
60
+ }
61
+
62
+ @keyframes pulse {
63
+ 0% {
64
+ box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.7);
65
+ }
66
+ 70% {
67
+ box-shadow: 0 0 0 10px rgba(0, 255, 255, 0);
68
+ }
69
+ 100% {
70
+ box-shadow: 0 0 0 0 rgba(0, 255, 255, 0);
71
+ }
72
+ }
73
+
74
+ .carousel-item {
75
+ transition: opacity 0.5s ease-in-out;
76
+ }
77
+ </style>
78
+ </head>
79
+ <body class="min-h-screen">
80
+ <!-- Navigation -->
81
+ <nav class="bg-gray-900/80 backdrop-blur-md fixed w-full z-50 border-b border-gray-800">
82
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
83
+ <div class="flex items-center justify-between h-16">
84
+ <div class="flex items-center">
85
+ <div class="flex-shrink-0">
86
+ <span class="text-2xl font-bold gradient-text">RxDevelopement</span>
87
+ </div>
88
+ <div class="hidden md:block">
89
+ <div class="ml-10 flex items-baseline space-x-4">
90
+ <a href="#home" class="nav-link text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Home</a>
91
+ <a href="#plugins" class="nav-link text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Plugins</a>
92
+ <a href="#team" class="nav-link text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Team</a>
93
+ <a href="#about" class="nav-link text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">About</a>
94
+ <a href="#contact" class="nav-link text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Contact</a>
95
+ </div>
96
+ </div>
97
+ </div>
98
+ <div class="hidden md:block">
99
+ <div class="ml-4 flex items-center md:ml-6">
100
+ <a href="#join" class="btn-primary bg-gradient-to-r from-cyan-500 to-purple-500 text-white px-4 py-2 rounded-md text-sm font-medium mr-4">Join Us</a>
101
+ <button id="theme-toggle" class="text-gray-300 hover:text-white focus:outline-none">
102
+ <i class="fas fa-moon"></i>
103
+ </button>
104
+ </div>
105
+ </div>
106
+ <div class="-mr-2 flex md:hidden">
107
+ <button id="mobile-menu-button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-white hover:bg-gray-700 focus:outline-none">
108
+ <svg class="h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
109
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
110
+ </svg>
111
+ </button>
112
+ </div>
113
+ </div>
114
+ </div>
115
+
116
+ <!-- Mobile menu -->
117
+ <div id="mobile-menu" class="md:hidden hidden">
118
+ <div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
119
+ <a href="#home" class="nav-link text-gray-300 hover:text-white block px-3 py-2 rounded-md text-base font-medium">Home</a>
120
+ <a href="#plugins" class="nav-link text-gray-300 hover:text-white block px-3 py-2 rounded-md text-base font-medium">Plugins</a>
121
+ <a href="#team" class="nav-link text-gray-300 hover:text-white block px-3 py-2 rounded-md text-base font-medium">Team</a>
122
+ <a href="#about" class="nav-link text-gray-300 hover:text-white block px-3 py-2 rounded-md text-base font-medium">About</a>
123
+ <a href="#contact" class="nav-link text-gray-300 hover:text-white block px-3 py-2 rounded-md text-base font-medium">Contact</a>
124
+ <a href="#join" class="btn-primary bg-gradient-to-r from-cyan-500 to-purple-500 text-white block px-3 py-2 rounded-md text-base font-medium">Join Us</a>
125
+ </div>
126
+ </div>
127
+ </nav>
128
+
129
+ <!-- Hero Section -->
130
+ <section id="home" class="pt-32 pb-20 px-4 sm:px-6 lg:px-8 bg-gradient-to-b from-gray-900 to-gray-800">
131
+ <div class="max-w-7xl mx-auto">
132
+ <div class="lg:grid lg:grid-cols-12 lg:gap-8">
133
+ <div class="sm:text-center md:max-w-2xl md:mx-auto lg:col-span-6 lg:text-left">
134
+ <h1 class="text-4xl tracking-tight font-extrabold text-white sm:text-5xl md:text-6xl">
135
+ <span class="gradient-text">⚡ Welcome to RxDevelopement</span>
136
+ </h1>
137
+ <p class="mt-3 text-base text-gray-300 sm:mt-5 sm:text-lg sm:max-w-xl sm:mx-auto md:mt-5 md:text-xl lg:mx-0">
138
+ We craft powerful Minecraft plugins that push the limits of creativity.
139
+ </p>
140
+ <div class="mt-8 sm:max-w-lg sm:mx-auto sm:text-center lg:text-left lg:mx-0">
141
+ <div class="flex flex-col sm:flex-row gap-4">
142
+ <a href="#plugins" class="btn-primary bg-gradient-to-r from-cyan-500 to-purple-500 text-white px-6 py-3 rounded-md text-base font-medium shadow-lg hover:shadow-xl transition-all duration-300">
143
+ View Plugins
144
+ </a>
145
+ <a href="#join" class="btn-secondary border border-purple-500 text-purple-500 px-6 py-3 rounded-md text-base font-medium hover:bg-purple-500/10 transition-all duration-300">
146
+ Join Our Team
147
+ </a>
148
+ </div>
149
+ </div>
150
+ </div>
151
+ <div class="mt-12 relative sm:max-w-lg sm:mx-auto lg:mt-0 lg:max-w-none lg:mx-0 lg:col-span-6 lg:flex lg:items-center">
152
+ <div class="relative mx-auto w-full rounded-lg shadow-lg lg:max-w-md glow-effect">
153
+ <div id="hero-carousel" class="relative overflow-hidden rounded-lg">
154
+ <div class="carousel-item active">
155
+ <img class="w-full" src="https://images.unsplash.com/photo-1589254065878-42c9da997008?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Minecraft plugin development">
156
+ </div>
157
+ <div class="carousel-item hidden">
158
+ <img class="w-full" src="https://images.unsplash.com/photo-1627855437693-dcc7b0c4ba74?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Minecraft server">
159
+ </div>
160
+ <div class="carousel-item hidden">
161
+ <img class="w-full" src="https://images.unsplash.com/photo-1627855437698-3f3fb2a3f8a3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Minecraft coding">
162
+ </div>
163
+ </div>
164
+ </div>
165
+ </div>
166
+ </div>
167
+ </div>
168
+ </section>
169
+
170
+ <!-- Stats Section -->
171
+ <section class="py-12 bg-gray-800">
172
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
173
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-8 text-center">
174
+ <div class="p-6 rounded-lg bg-gray-700/50 backdrop-blur-sm border border-gray-600">
175
+ <div class="text-4xl font-bold gradient-text" id="plugin-count">15+</div>
176
+ <div class="mt-2 text-gray-300">Plugins</div>
177
+ </div>
178
+ <div class="p-6 rounded-lg bg-gray-700/50 backdrop-blur-sm border border-gray-600">
179
+ <div class="text-4xl font-bold gradient-text" id="download-count">50K+</div>
180
+ <div class="mt-2 text-gray-300">Downloads</div>
181
+ </div>
182
+ <div class="p-6 rounded-lg bg-gray-700/50 backdrop-blur-sm border border-gray-600">
183
+ <div class="text-4xl font-bold gradient-text" id="server-count">5K+</div>
184
+ <div class="mt-2 text-gray-300">Servers</div>
185
+ </div>
186
+ <div class="p-6 rounded-lg bg-gray-700/50 backdrop-blur-sm border border-gray-600">
187
+ <div class="text-4xl font-bold gradient-text" id="team-count">8</div>
188
+ <div class="mt-2 text-gray-300">Team Members</div>
189
+ </div>
190
+ </div>
191
+ </div>
192
+ </section>
193
+
194
+ <!-- Plugins Section -->
195
+ <section id="plugins" class="py-20 px-4 sm:px-6 lg:px-8 bg-gray-900">
196
+ <div class="max-w-7xl mx-auto">
197
+ <div class="text-center mb-16">
198
+ <h2 class="text-3xl font-extrabold text-white sm:text-4xl">
199
+ <span class="gradient-text">Our Premium Plugins</span>
200
+ </h2>
201
+ <p class="mt-4 max-w-2xl text-xl text-gray-300 mx-auto">
202
+ High-quality plugins designed to enhance your Minecraft experience.
203
+ </p>
204
+ </div>
205
+
206
+ <div class="flex justify-center mb-8">
207
+ <div class="inline-flex rounded-md shadow-sm" role="group">
208
+ <button type="button" class="filter-btn px-4 py-2 text-sm font-medium rounded-l-lg border border-gray-600 bg-gray-800 text-white hover:bg-gray-700" data-filter="all">
209
+ All
210
+ </button>
211
+ <button type="button" class="filter-btn px-4 py-2 text-sm font-medium border-t border-b border-gray-600 bg-gray-800 text-white hover:bg-gray-700" data-filter="pvp">
212
+ PvP
213
+ </button>
214
+ <button type="button" class="filter-btn px-4 py-2 text-sm font-medium border-t border-b border-gray-600 bg-gray-800 text-white hover:bg-gray-700" data-filter="economy">
215
+ Economy
216
+ </button>
217
+ <button type="button" class="filter-btn px-4 py-2 text-sm font-medium border-t border-b border-gray-600 bg-gray-800 text-white hover:bg-gray-700" data-filter="cosmetics">
218
+ Cosmetics
219
+ </button>
220
+ <button type="button" class="filter-btn px-4 py-2 text-sm font-medium rounded-r-lg border border-gray-600 bg-gray-800 text-white hover:bg-gray-700" data-filter="utility">
221
+ Utility
222
+ </button>
223
+ </div>
224
+ </div>
225
+
226
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
227
+ <!-- Plugin 1 -->
228
+ <div class="plugin-card p-6 rounded-lg bg-gray-800 border border-gray-700 hover:border-cyan-500 transition-all duration-300" data-category="pvp">
229
+ <div class="flex items-center mb-4">
230
+ <div class="flex-shrink-0 bg-gray-700 p-3 rounded-lg">
231
+ <i class="fas fa-swords text-cyan-500 text-xl"></i>
232
+ </div>
233
+ <div class="ml-4">
234
+ <h3 class="text-lg font-bold text-white">RxPvP</h3>
235
+ <div class="flex mt-1">
236
+ <span class="px-2 py-1 text-xs rounded-full bg-purple-500/20 text-purple-300">PvP</span>
237
+ </div>
238
+ </div>
239
+ </div>
240
+ <p class="text-gray-300 mb-4">
241
+ Advanced PvP mechanics with custom kits, arenas, and leaderboards. Perfect for competitive servers.
242
+ </p>
243
+ <div class="flex justify-between items-center">
244
+ <span class="text-cyan-400 font-medium">$14.99</span>
245
+ <button class="btn-primary bg-gradient-to-r from-cyan-500 to-purple-500 text-white px-4 py-2 rounded-md text-sm font-medium">
246
+ View Details
247
+ </button>
248
+ </div>
249
+ </div>
250
+
251
+ <!-- Plugin 2 -->
252
+ <div class="plugin-card p-6 rounded-lg bg-gray-800 border border-gray-700 hover:border-cyan-500 transition-all duration-300" data-category="economy">
253
+ <div class="flex items-center mb-4">
254
+ <div class="flex-shrink-0 bg-gray-700 p-3 rounded-lg">
255
+ <i class="fas fa-coins text-cyan-500 text-xl"></i>
256
+ </div>
257
+ <div class="ml-4">
258
+ <h3 class="text-lg font-bold text-white">RxEconomy</h3>
259
+ <div class="flex mt-1">
260
+ <span class="px-2 py-1 text-xs rounded-full bg-purple-500/20 text-purple-300">Economy</span>
261
+ </div>
262
+ </div>
263
+ </div>
264
+ <p class="text-gray-300 mb-4">
265
+ Comprehensive economy system with shops, banks, auctions, and player trading. Fully customizable.
266
+ </p>
267
+ <div class="flex justify-between items-center">
268
+ <span class="text-cyan-400 font-medium">$19.99</span>
269
+ <button class="btn-primary bg-gradient-to-r from-cyan-500 to-purple-500 text-white px-4 py-2 rounded-md text-sm font-medium">
270
+ View Details
271
+ </button>
272
+ </div>
273
+ </div>
274
+
275
+ <!-- Plugin 3 -->
276
+ <div class="plugin-card p-6 rounded-lg bg-gray-800 border border-gray-700 hover:border-cyan-500 transition-all duration-300" data-category="cosmetics">
277
+ <div class="flex items-center mb-4">
278
+ <div class="flex-shrink-0 bg-gray-700 p-3 rounded-lg">
279
+ <i class="fas fa-hat-wizard text-cyan-500 text-xl"></i>
280
+ </div>
281
+ <div class="ml-4">
282
+ <h3 class="text-lg font-bold text-white">RxCosmetics</h3>
283
+ <div class="flex mt-1">
284
+ <span class="px-2 py-1 text-xs rounded-full bg-purple-500/20 text-purple-300">Cosmetics</span>
285
+ </div>
286
+ </div>
287
+ </div>
288
+ <p class="text-gray-300 mb-4">
289
+ Hundreds of unique cosmetics including pets, particles, hats, and trails to customize your players.
290
+ </p>
291
+ <div class="flex justify-between items-center">
292
+ <span class="text-cyan-400 font-medium">$12.99</span>
293
+ <button class="btn-primary bg-gradient-to-r from-cyan-500 to-purple-500 text-white px-4 py-2 rounded-md text-sm font-medium">
294
+ View Details
295
+ </button>
296
+ </div>
297
+ </div>
298
+
299
+ <!-- Plugin 4 -->
300
+ <div class="plugin-card p-6 rounded-lg bg-gray-800 border border-gray-700 hover:border-cyan-500 transition-all duration-300" data-category="utility">
301
+ <div class="flex items-center mb-4">
302
+ <div class="flex-shrink-0 bg-gray-700 p-3 rounded-lg">
303
+ <i class="fas fa-tools text-cyan-500 text-xl"></i>
304
+ </div>
305
+ <div class="ml-4">
306
+ <h3 class="text-lg font-bold text-white">RxUtils</h3>
307
+ <div class="flex mt-1">
308
+ <span class="px-2 py-1 text-xs rounded-full bg-purple-500/20 text-purple-300">Utility</span>
309
+ </div>
310
+ </div>
311
+ </div>
312
+ <p class="text-gray-300 mb-4">
313
+ Essential utilities for server management including staff tools, player analytics, and automation.
314
+ </p>
315
+ <div class="flex justify-between items-center">
316
+ <span class="text-cyan-400 font-medium">$9.99</span>
317
+ <button class="btn-primary bg-gradient-to-r from-cyan-500 to-purple-500 text-white px-4 py-2 rounded-md text-sm font-medium">
318
+ View Details
319
+ </button>
320
+ </div>
321
+ </div>
322
+
323
+ <!-- Plugin 5 -->
324
+ <div class="plugin-card p-6 rounded-lg bg-gray-800 border border-gray-700 hover:border-cyan-500 transition-all duration-300" data-category="pvp">
325
+ <div class="flex items-center mb-4">
326
+ <div class="flex-shrink-0 bg-gray-700 p-3 rounded-lg">
327
+ <i class="fas fa-shield-alt text-cyan-500 text-xl"></i>
328
+ </div>
329
+ <div class="ml-4">
330
+ <h3 class="text-lg font-bold text-white">RxDuels</h3>
331
+ <div class="flex mt-1">
332
+ <span class="px-2 py-1 text-xs rounded-full bg-purple-500/20 text-purple-300">PvP</span>
333
+ </div>
334
+ </div>
335
+ </div>
336
+ <p class="text-gray-300 mb-4">
337
+ Advanced 1v1, 2v2, and tournament dueling system with custom arenas and matchmaking.
338
+ </p>
339
+ <div class="flex justify-between items-center">
340
+ <span class="text-cyan-400 font-medium">$16.99</span>
341
+ <button class="btn-primary bg-gradient-to-r from-cyan-500 to-purple-500 text-white px-4 py-2 rounded-md text-sm font-medium">
342
+ View Details
343
+ </button>
344
+ </div>
345
+ </div>
346
+
347
+ <!-- Plugin 6 -->
348
+ <div class="plugin-card p-6 rounded-lg bg-gray-800 border border-gray-700 hover:border-cyan-500 transition-all duration-300" data-category="economy">
349
+ <div class="flex items-center mb-4">
350
+ <div class="flex-shrink-0 bg-gray-700 p-3 rounded-lg">
351
+ <i class="fas fa-gem text-cyan-500 text-xl"></i>
352
+ </div>
353
+ <div class="ml-4">
354
+ <h3 class="text-lg font-bold text-white">RxCrates</h3>
355
+ <div class="flex mt-1">
356
+ <span class="px-2 py-1 text-xs rounded-full bg-purple-500/20 text-purple-300">Economy</span>
357
+ <span class="px-2 py-1 text-xs rounded-full bg-purple-500/20 text-purple-300 ml-2">Cosmetics</span>
358
+ </div>
359
+ </div>
360
+ </div>
361
+ <p class="text-gray-300 mb-4">
362
+ Customizable crate system with animations, effects, and multi-tiered rewards to engage players.
363
+ </p>
364
+ <div class="flex justify-between items-center">
365
+ <span class="text-cyan-400 font-medium">$14.99</span>
366
+ <button class="btn-primary bg-gradient-to-r from-cyan-500 to-purple-500 text-white px-4 py-2 rounded-md text-sm font-medium">
367
+ View Details
368
+ </button>
369
+ </div>
370
+ </div>
371
+ </div>
372
+
373
+ <div class="mt-12 text-center">
374
+ <a href="#" class="btn-secondary border border-purple-500 text-purple-500 px-6 py-3 rounded-md text-base font-medium hover:bg-purple-500/10 transition-all duration-300 inline-flex items-center">
375
+ View All Plugins <i class="fas fa-arrow-right ml-2"></i>
376
+ </a>
377
+ </div>
378
+ </div>
379
+ </section>
380
+
381
+ <!-- Plugin of the Month -->
382
+ <section class="py-16 bg-gradient-to-r from-gray-800 to-gray-900">
383
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
384
+ <div class="bg-gray-800/50 backdrop-blur-sm rounded-xl p-8 border border-gray-700 glow-effect-purple">
385
+ <div class="md:flex">
386
+ <div class="md:flex-shrink-0">
387
+ <div class="h-48 w-full md:h-full md:w-48 bg-gray-700 rounded-lg flex items-center justify-center">
388
+ <i class="fas fa-crown text-5xl gradient-text"></i>
389
+ </div>
390
+ </div>
391
+ <div class="mt-4 md:mt-0 md:ml-6">
392
+ <div class="uppercase tracking-wide text-sm text-purple-400 font-semibold">Plugin of the Month</div>
393
+ <h3 class="text-2xl font-bold text-white mt-1">RxPvP</h3>
394
+ <p class="mt-2 text-gray-300">
395
+ Our PvP plugin has been downloaded over 10,000 times this month! Experience the ultimate competitive Minecraft PvP with custom kits, arenas, and advanced matchmaking.
396
+ </p>
397
+ <div class="mt-4">
398
+ <div class="flex items-center">
399
+ <div class="flex-shrink-0">
400
+ <span class="text-cyan-400 font-bold">4.9</span>
401
+ </div>
402
+ <div class="ml-2">
403
+ <div class="flex items-center">
404
+ <i class="fas fa-star text-yellow-400"></i>
405
+ <i class="fas fa-star text-yellow-400"></i>
406
+ <i class="fas fa-star text-yellow-400"></i>
407
+ <i class="fas fa-star text-yellow-400"></i>
408
+ <i class="fas fa-star text-yellow-400"></i>
409
+ </div>
410
+ </div>
411
+ <div class="ml-4">
412
+ <span class="text-gray-400">(1,234 reviews)</span>
413
+ </div>
414
+ </div>
415
+ </div>
416
+ <div class="mt-6">
417
+ <a href="#" class="btn-primary bg-gradient-to-r from-cyan-500 to-purple-500 text-white px-6 py-2 rounded-md text-sm font-medium inline-flex items-center">
418
+ Get RxPvP Now <i class="fas fa-arrow-right ml-2"></i>
419
+ </a>
420
+ </div>
421
+ </div>
422
+ </div>
423
+ </div>
424
+ </div>
425
+ </section>
426
+
427
+ <!-- Team Section -->
428
+ <section id="team" class="py-20 px-4 sm:px-6 lg:px-8 bg-gray-900">
429
+ <div class="max-w-7xl mx-auto">
430
+ <div class="text-center mb-16">
431
+ <h2 class="text-3xl font-extrabold text-white sm:text-4xl">
432
+ <span class="gradient-text">Meet Our Team</span>
433
+ </h2>
434
+ <p class="mt-4 max-w-2xl text-xl text-gray-300 mx-auto">
435
+ The talented developers and designers behind RxDevelopement.
436
+ </p>
437
+ </div>
438
+
439
+ <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-8">
440
+ <!-- Team Member 1 -->
441
+ <div class="team-card p-6 rounded-lg bg-gray-800 border border-gray-700 hover:border-cyan-500 transition-all duration-300 text-center">
442
+ <div class="mx-auto h-32 w-32 rounded-full bg-gradient-to-r from-cyan-500 to-purple-500 p-1 mb-4">
443
+ <img class="h-full w-full rounded-full object-cover" src="https://randomuser.me/api/portraits/men/32.jpg" alt="Team member">
444
+ </div>
445
+ <h3 class="text-xl font-bold text-white">Alex</h3>
446
+ <p
447
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=notritik/rxdevelopement" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
448
+ </html>