privateuserh commited on
Commit
a99689f
·
verified ·
1 Parent(s): 6a9a81a

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +439 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Mrj Beta1 00
3
- emoji: 🌖
4
- colorFrom: pink
5
- colorTo: indigo
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: mrj-beta1-00
3
+ emoji: 🐳
4
+ colorFrom: blue
5
+ colorTo: gray
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,439 @@
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">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>MR. Jaycee Access Pod - Interactive Bot</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
+ <style>
10
+ @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
11
+
12
+ body {
13
+ font-family: 'Poppins', sans-serif;
14
+ background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
15
+ color: #e6e6e6;
16
+ min-height: 100vh;
17
+ }
18
+
19
+ .gradient-text {
20
+ background: linear-gradient(90deg, #00dbde 0%, #fc00ff 100%);
21
+ -webkit-background-clip: text;
22
+ background-clip: text;
23
+ color: transparent;
24
+ }
25
+
26
+ .card-glass {
27
+ background: rgba(255, 255, 255, 0.08);
28
+ backdrop-filter: blur(10px);
29
+ -webkit-backdrop-filter: blur(10px);
30
+ border-radius: 12px;
31
+ border: 1px solid rgba(255, 255, 255, 0.1);
32
+ box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.36);
33
+ }
34
+
35
+ .btn-primary {
36
+ background: linear-gradient(90deg, #00dbde 0%, #fc00ff 100%);
37
+ transition: all 0.3s ease;
38
+ }
39
+
40
+ .btn-primary:hover {
41
+ transform: translateY(-2px);
42
+ box-shadow: 0 10px 20px rgba(0, 219, 222, 0.3);
43
+ }
44
+
45
+ .pulse {
46
+ animation: pulse 2s infinite;
47
+ }
48
+
49
+ @keyframes pulse {
50
+ 0% {
51
+ transform: scale(1);
52
+ }
53
+ 50% {
54
+ transform: scale(1.05);
55
+ }
56
+ 100% {
57
+ transform: scale(1);
58
+ }
59
+ }
60
+
61
+ .feature-icon {
62
+ font-size: 2.5rem;
63
+ background: linear-gradient(90deg, #00dbde 0%, #fc00ff 100%);
64
+ -webkit-background-clip: text;
65
+ background-clip: text;
66
+ color: transparent;
67
+ }
68
+ </style>
69
+ </head>
70
+ <body class="min-h-screen flex flex-col">
71
+ <!-- Header -->
72
+ <header class="py-6 px-4 sm:px-6 lg:px-8">
73
+ <div class="container mx-auto flex justify-between items-center">
74
+ <div class="flex items-center space-x-2">
75
+ <div class="w-10 h-10 rounded-full bg-gradient-to-r from-cyan-500 to-purple-500 flex items-center justify-center">
76
+ <i class="fas fa-robot text-white"></i>
77
+ </div>
78
+ <h1 class="text-2xl font-bold gradient-text">MR. Jaycee <span class="hidden sm:inline">Access Pod</span></h1>
79
+ </div>
80
+ <nav class="hidden md:flex space-x-6">
81
+ <a href="#features" class="text-gray-300 hover:text-white transition">Features</a>
82
+ <a href="#how-it-works" class="text-gray-300 hover:text-white transition">How It Works</a>
83
+ <a href="#payment" class="text-gray-300 hover:text-white transition">Payment</a>
84
+ <a href="#contact" class="text-gray-300 hover:text-white transition">Contact</a>
85
+ </nav>
86
+ <button class="md:hidden text-gray-300">
87
+ <i class="fas fa-bars text-2xl"></i>
88
+ </button>
89
+ </div>
90
+ </header>
91
+
92
+ <!-- Hero Section -->
93
+ <section class="py-16 px-4 sm:px-6 lg:px-8 flex-grow">
94
+ <div class="container mx-auto flex flex-col lg:flex-row items-center justify-between">
95
+ <div class="lg:w-1/2 mb-12 lg:mb-0">
96
+ <h2 class="text-4xl md:text-5xl lg:text-6xl font-bold mb-6 leading-tight">
97
+ Your Gateway to <span class="gradient-text">Premium Content</span>
98
+ </h2>
99
+ <p class="text-lg text-gray-300 mb-8 max-w-lg">
100
+ The MR. Jaycee Access Pod bot provides exclusive content and features through Telegram.
101
+ Get instant access after payment verification.
102
+ </p>
103
+ <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
104
+ <a href="https://t.me/MRJayceeBot"
105
+ class="btn-primary text-white font-semibold py-3 px-8 rounded-full flex items-center justify-center pulse">
106
+ <i class="fab fa-telegram mr-2 text-xl"></i> Open Telegram Bot
107
+ </a>
108
+ <a href="#payment"
109
+ class="bg-transparent border border-purple-500 text-purple-300 font-semibold py-3 px-8 rounded-full flex items-center justify-center hover:bg-purple-900/20 transition">
110
+ <i class="fas fa-lock mr-2"></i> Get Access
111
+ </a>
112
+ </div>
113
+ </div>
114
+ <div class="lg:w-1/2 flex justify-center">
115
+ <div class="card-glass p-6 max-w-md w-full">
116
+ <div class="bg-gray-800 rounded-lg overflow-hidden">
117
+ <div class="bg-gray-900 py-2 px-4 flex items-center">
118
+ <div class="flex space-x-2">
119
+ <div class="w-3 h-3 rounded-full bg-red-500"></div>
120
+ <div class="w-3 h-3 rounded-full bg-yellow-500"></div>
121
+ <div class="w-3 h-3 rounded-full bg-green-500"></div>
122
+ </div>
123
+ <div class="text-sm text-gray-400 ml-4">MR. Jaycee Bot</div>
124
+ </div>
125
+ <div class="p-4">
126
+ <div class="flex mb-4">
127
+ <div class="w-10 h-10 rounded-full bg-purple-600 flex items-center justify-center">
128
+ <i class="fas fa-robot text-white"></i>
129
+ </div>
130
+ <div class="ml-3 bg-gray-700 rounded-lg p-3 max-w-xs">
131
+ <p class="text-sm">Hello! I'm MR. Jaycee Access Pod bot. To unlock premium features, please complete your payment.</p>
132
+ </div>
133
+ </div>
134
+ <div class="flex justify-end mb-4">
135
+ <div class="bg-blue-600 rounded-lg p-3 max-w-xs">
136
+ <p class="text-sm">I've completed my payment. How do I get access?</p>
137
+ </div>
138
+ <div class="w-10 h-10 rounded-full bg-blue-500 flex items-center justify-center ml-3">
139
+ <i class="fas fa-user text-white"></i>
140
+ </div>
141
+ </div>
142
+ <div class="flex">
143
+ <div class="w-10 h-10 rounded-full bg-purple-600 flex items-center justify-center">
144
+ <i class="fas fa-robot text-white"></i>
145
+ </div>
146
+ <div class="ml-3 bg-gray-700 rounded-lg p-3 max-w-xs">
147
+ <p class="text-sm">Thanks! Your payment is being verified. You'll receive access shortly.</p>
148
+ <div class="mt-2">
149
+ <a href="https://nowpayments.io/payment/?iid=5608760585" class="text-blue-400 text-xs underline">View payment details</a>
150
+ </div>
151
+ </div>
152
+ </div>
153
+ </div>
154
+ <div class="bg-gray-900 py-2 px-4 flex items-center">
155
+ <input type="text" placeholder="Type your message..." class="bg-gray-800 text-white text-sm rounded-full py-2 px-4 w-full focus:outline-none">
156
+ <button class="ml-2 text-blue-400">
157
+ <i class="fas fa-paper-plane"></i>
158
+ </button>
159
+ </div>
160
+ </div>
161
+ </div>
162
+ </div>
163
+ </div>
164
+ </section>
165
+
166
+ <!-- Features Section -->
167
+ <section id="features" class="py-16 px-4 sm:px-6 lg:px-8 bg-gray-900/50">
168
+ <div class="container mx-auto">
169
+ <h2 class="text-3xl md:text-4xl font-bold text-center mb-16">
170
+ <span class="gradient-text">Exclusive Features</span> You'll Get
171
+ </h2>
172
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
173
+ <div class="card-glass p-8 rounded-xl">
174
+ <div class="feature-icon mb-4">
175
+ <i class="fas fa-lock-open"></i>
176
+ </div>
177
+ <h3 class="text-xl font-semibold mb-3">Instant Access</h3>
178
+ <p class="text-gray-300">
179
+ Get immediate access to premium content after payment verification through our secure system.
180
+ </p>
181
+ </div>
182
+ <div class="card-glass p-8 rounded-xl">
183
+ <div class="feature-icon mb-4">
184
+ <i class="fas fa-shield-alt"></i>
185
+ </div>
186
+ <h3 class="text-xl font-semibold mb-3">Secure Payments</h3>
187
+ <p class="text-gray-300">
188
+ All transactions are processed through NowPayments.io, ensuring your payment information is always protected.
189
+ </p>
190
+ </div>
191
+ <div class="card-glass p-8 rounded-xl">
192
+ <div class="feature-icon mb-4">
193
+ <i class="fas fa-comment-dots"></i>
194
+ </div>
195
+ <h3 class="text-xl font-semibold mb-3">24/7 Support</h3>
196
+ <p class="text-gray-300">
197
+ Our Telegram bot provides round-the-clock assistance for any questions or issues you might have.
198
+ </p>
199
+ </div>
200
+ <div class="card-glass p-8 rounded-xl">
201
+ <div class="feature-icon mb-4">
202
+ <i class="fas fa-bolt"></i>
203
+ </div>
204
+ <h3 class="text-xl font-semibold mb-3">Fast Delivery</h3>
205
+ <p class="text-gray-300">
206
+ Content is delivered instantly through Telegram with no waiting times or delays.
207
+ </p>
208
+ </div>
209
+ <div class="card-glass p-8 rounded-xl">
210
+ <div class="feature-icon mb-4">
211
+ <i class="fas fa-star"></i>
212
+ </div>
213
+ <h3 class="text-xl font-semibold mb-3">Exclusive Content</h3>
214
+ <p class="text-gray-300">
215
+ Access materials not available anywhere else, curated specifically for our premium members.
216
+ </p>
217
+ </div>
218
+ <div class="card-glass p-8 rounded-xl">
219
+ <div class="feature-icon mb-4">
220
+ <i class="fas fa-sync"></i>
221
+ </div>
222
+ <h3 class="text-xl font-semibold mb-3">Regular Updates</h3>
223
+ <p class="text-gray-300">
224
+ New content is added frequently to ensure you always have fresh material to explore.
225
+ </p>
226
+ </div>
227
+ </div>
228
+ </div>
229
+ </section>
230
+
231
+ <!-- How It Works Section -->
232
+ <section id="how-it-works" class="py-16 px-4 sm:px-6 lg:px-8">
233
+ <div class="container mx-auto">
234
+ <h2 class="text-3xl md:text-4xl font-bold text-center mb-16">
235
+ How To <span class="gradient-text">Get Started</span>
236
+ </h2>
237
+ <div class="max-w-4xl mx-auto">
238
+ <div class="flex flex-col md:flex-row mb-12">
239
+ <div class="md:w-1/4 flex justify-center mb-6 md:mb-0">
240
+ <div class="w-16 h-16 rounded-full bg-gradient-to-r from-cyan-500 to-purple-500 flex items-center justify-center text-white text-2xl font-bold">
241
+ 1
242
+ </div>
243
+ </div>
244
+ <div class="md:w-3/4">
245
+ <h3 class="text-xl font-semibold mb-3">Open the Telegram Bot</h3>
246
+ <p class="text-gray-300">
247
+ Start by opening the MR. Jaycee Bot on Telegram. You can access it directly by clicking the button below or searching for @MRJayceeBot in the Telegram app.
248
+ </p>
249
+ <div class="mt-4">
250
+ <a href="https://t.me/MRJayceeBot" class="inline-flex items-center text-blue-400 hover:text-blue-300">
251
+ <i class="fab fa-telegram mr-2"></i> t.me/MRJayceeBot
252
+ </a>
253
+ </div>
254
+ </div>
255
+ </div>
256
+ <div class="flex flex-col md:flex-row mb-12">
257
+ <div class="md:w-1/4 flex justify-center mb-6 md:mb-0">
258
+ <div class="w-16 h-16 rounded-full bg-gradient-to-r from-cyan-500 to-purple-500 flex items-center justify-center text-white text-2xl font-bold">
259
+ 2
260
+ </div>
261
+ </div>
262
+ <div class="md:w-3/4">
263
+ <h3 class="text-xl font-semibold mb-3">Complete Your Payment</h3>
264
+ <p class="text-gray-300">
265
+ Follow the bot's instructions to make your payment through our secure NowPayments.io gateway. All major cryptocurrencies are accepted.
266
+ </p>
267
+ <div class="mt-4">
268
+ <a href="https://nowpayments.io/payment/?iid=5608760585" class="inline-flex items-center text-purple-400 hover:text-purple-300">
269
+ <i class="fas fa-external-link-alt mr-2"></i> Payment Portal
270
+ </a>
271
+ </div>
272
+ </div>
273
+ </div>
274
+ <div class="flex flex-col md:flex-row">
275
+ <div class="md:w-1/4 flex justify-center mb-6 md:mb-0">
276
+ <div class="w-16 h-16 rounded-full bg-gradient-to-r from-cyan-500 to-purple-500 flex items-center justify-center text-white text-2xl font-bold">
277
+ 3
278
+ </div>
279
+ </div>
280
+ <div class="md:w-3/4">
281
+ <h3 class="text-xl font-semibold mb-3">Access Premium Content</h3>
282
+ <p class="text-gray-300">
283
+ Once your payment is verified (usually within minutes), you'll receive immediate access to all premium features and content through the bot.
284
+ </p>
285
+ </div>
286
+ </div>
287
+ </div>
288
+ </div>
289
+ </section>
290
+
291
+ <!-- Payment Section -->
292
+ <section id="payment" class="py-16 px-4 sm:px-6 lg:px-8 bg-gray-900/50">
293
+ <div class="container mx-auto">
294
+ <h2 class="text-3xl md:text-4xl font-bold text-center mb-12">
295
+ <span class="gradient-text">Secure Payment</span> Options
296
+ </h2>
297
+ <div class="max-w-2xl mx-auto card-glass p-8 rounded-xl">
298
+ <div class="text-center mb-8">
299
+ <i class="fas fa-lock text-5xl text-green-500 mb-4"></i>
300
+ <h3 class="text-2xl font-semibold mb-2">Payment Verification</h3>
301
+ <p class="text-gray-300 mb-6">
302
+ All payments are processed through NowPayments.io, a trusted cryptocurrency payment gateway.
303
+ </p>
304
+ <a href="https://nowpayments.io/payment/?iid=5608760585"
305
+ class="btn-primary text-white font-semibold py-3 px-8 rounded-full inline-flex items-center">
306
+ <i class="fas fa-external-link-alt mr-2"></i> Proceed to Payment
307
+ </a>
308
+ </div>
309
+ <div class="border-t border-gray-700 pt-6">
310
+ <h4 class="text-lg font-semibold mb-4 text-center">Accepted Cryptocurrencies</h4>
311
+ <div class="flex flex-wrap justify-center gap-4">
312
+ <div class="flex items-center bg-gray-800/50 rounded-full py-2 px-4">
313
+ <i class="fab fa-bitcoin text-orange-500 mr-2"></i>
314
+ <span>Bitcoin</span>
315
+ </div>
316
+ <div class="flex items-center bg-gray-800/50 rounded-full py-2 px-4">
317
+ <i class="fab fa-ethereum text-purple-500 mr-2"></i>
318
+ <span>Ethereum</span>
319
+ </div>
320
+ <div class="flex items-center bg-gray-800/50 rounded-full py-2 px-4">
321
+ <i class="fas fa-dollar-sign text-green-500 mr-2"></i>
322
+ <span>USDT</span>
323
+ </div>
324
+ <div class="flex items-center bg-gray-800/50 rounded-full py-2 px-4">
325
+ <i class="fab fa-litecoin text-gray-400 mr-2"></i>
326
+ <span>Litecoin</span>
327
+ </div>
328
+ </div>
329
+ </div>
330
+ </div>
331
+ </div>
332
+ </section>
333
+
334
+ <!-- Contact Section -->
335
+ <section id="contact" class="py-16 px-4 sm:px-6 lg:px-8">
336
+ <div class="container mx-auto">
337
+ <h2 class="text-3xl md:text-4xl font-bold text-center mb-12">
338
+ Need <span class="gradient-text">Help?</span> Contact Us
339
+ </h2>
340
+ <div class="max-w-4xl mx-auto grid grid-cols-1 md:grid-cols-2 gap-8">
341
+ <div class="card-glass p-8 rounded-xl">
342
+ <h3 class="text-xl font-semibold mb-6 text-center">Direct Support</h3>
343
+ <div class="space-y-4">
344
+ <div class="flex items-center">
345
+ <div class="w-12 h-12 rounded-full bg-blue-600 flex items-center justify-center text-white mr-4">
346
+ <i class="fab fa-telegram"></i>
347
+ </div>
348
+ <div>
349
+ <h4 class="font-medium">Telegram Bot</h4>
350
+ <a href="https://t.me/MRJayceeBot" class="text-blue-400 text-sm">@MRJayceeBot</a>
351
+ </div>
352
+ </div>
353
+ <div class="flex items-center">
354
+ <div class="w-12 h-12 rounded-full bg-blue-400 flex items-center justify-center text-white mr-4">
355
+ <i class="fas fa-globe"></i>
356
+ </div>
357
+ <div>
358
+ <h4 class="font-medium">Website</h4>
359
+ <a href="https://jayceejames.minisite.ai" class="text-blue-400 text-sm">jayceejames.minisite.ai</a>
360
+ </div>
361
+ </div>
362
+ </div>
363
+ </div>
364
+ <div class="card-glass p-8 rounded-xl">
365
+ <h3 class="text-xl font-semibold mb-6 text-center">Payment Support</h3>
366
+ <div class="space-y-4">
367
+ <div class="flex items-center">
368
+ <div class="w-12 h-12 rounded-full bg-purple-600 flex items-center justify-center text-white mr-4">
369
+ <i class="fas fa-credit-card"></i>
370
+ </div>
371
+ <div>
372
+ <h4 class="font-medium">Payment Portal</h4>
373
+ <a href="https://nowpayments.io/payment/?iid=5608760585" class="text-purple-400 text-sm">NowPayments.io</a>
374
+ </div>
375
+ </div>
376
+ <div class="flex items-center">
377
+ <div class="w-12 h-12 rounded-full bg-gray-600 flex items-center justify-center text-white mr-4">
378
+ <i class="fas fa-question-circle"></i>
379
+ </div>
380
+ <div>
381
+ <h4 class="font-medium">Payment Issues</h4>
382
+ <p class="text-gray-400 text-sm">Contact through Telegram for payment verification issues</p>
383
+ </div>
384
+ </div>
385
+ </div>
386
+ </div>
387
+ </div>
388
+ </div>
389
+ </section>
390
+
391
+ <!-- Footer -->
392
+ <footer class="py-8 px-4 sm:px-6 lg:px-8 bg-gray-900/80">
393
+ <div class="container mx-auto">
394
+ <div class="flex flex-col md:flex-row justify-between items-center">
395
+ <div class="flex items-center space-x-2 mb-4 md:mb-0">
396
+ <div class="w-8 h-8 rounded-full bg-gradient-to-r from-cyan-500 to-purple-500 flex items-center justify-center">
397
+ <i class="fas fa-robot text-white text-sm"></i>
398
+ </div>
399
+ <span class="font-semibold">MR. Jaycee Access Pod</span>
400
+ </div>
401
+ <div class="flex space-x-6">
402
+ <a href="https://t.me/MRJayceeBot" class="text-gray-400 hover:text-blue-400 transition">
403
+ <i class="fab fa-telegram text-xl"></i>
404
+ </a>
405
+ <a href="https://nowpayments.io/payment/?iid=5608760585" class="text-gray-400 hover:text-purple-400 transition">
406
+ <i class="fas fa-lock text-xl"></i>
407
+ </a>
408
+ <a href="https://jayceejames.minisite.ai" class="text-gray-400 hover:text-blue-300 transition">
409
+ <i class="fas fa-globe text-xl"></i>
410
+ </a>
411
+ </div>
412
+ </div>
413
+ <div class="border-t border-gray-800 mt-6 pt-6 text-center text-gray-500 text-sm">
414
+ <p>© 2025 MR. Jaycee Access Pod. All rights reserved.</p>
415
+ <p class="mt-2">Secure payments processed through NowPayments.io</p>
416
+ </div>
417
+ </div>
418
+ </footer>
419
+
420
+ <script>
421
+ // Smooth scrolling for anchor links
422
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
423
+ anchor.addEventListener('click', function (e) {
424
+ e.preventDefault();
425
+
426
+ document.querySelector(this.getAttribute('href')).scrollIntoView({
427
+ behavior: 'smooth'
428
+ });
429
+ });
430
+ });
431
+
432
+ // Mobile menu toggle functionality could be added here
433
+ // For now it's just a placeholder
434
+ document.querySelector('.md\\:hidden').addEventListener('click', function() {
435
+ alert('Mobile menu would open here in a full implementation');
436
+ });
437
+ </script>
438
+ <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=privateuserh/mrj-beta1-00" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
439
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ Create a site for Info about Bot to interact with MR. Jaycee Access Pod. https://nowpayments.io/payment/?iid=5608760585 https://t.me/MRJayceeBot jayceejames.minisite.ai https://t.me/MRJayceeBot