Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>MR. Jaycee Access Pod - Interactive Bot</title> | |
<script src="https://cdn.tailwindcss.com"></script> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | |
<style> | |
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap'); | |
body { | |
font-family: 'Poppins', sans-serif; | |
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); | |
color: #e6e6e6; | |
min-height: 100vh; | |
} | |
.gradient-text { | |
background: linear-gradient(90deg, #00dbde 0%, #fc00ff 100%); | |
-webkit-background-clip: text; | |
background-clip: text; | |
color: transparent; | |
} | |
.card-glass { | |
background: rgba(255, 255, 255, 0.08); | |
backdrop-filter: blur(10px); | |
-webkit-backdrop-filter: blur(10px); | |
border-radius: 12px; | |
border: 1px solid rgba(255, 255, 255, 0.1); | |
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.36); | |
} | |
.btn-primary { | |
background: linear-gradient(90deg, #00dbde 0%, #fc00ff 100%); | |
transition: all 0.3s ease; | |
} | |
.btn-primary:hover { | |
transform: translateY(-2px); | |
box-shadow: 0 10px 20px rgba(0, 219, 222, 0.3); | |
} | |
.pulse { | |
animation: pulse 2s infinite; | |
} | |
@keyframes pulse { | |
0% { | |
transform: scale(1); | |
} | |
50% { | |
transform: scale(1.05); | |
} | |
100% { | |
transform: scale(1); | |
} | |
} | |
.feature-icon { | |
font-size: 2.5rem; | |
background: linear-gradient(90deg, #00dbde 0%, #fc00ff 100%); | |
-webkit-background-clip: text; | |
background-clip: text; | |
color: transparent; | |
} | |
.keyword-badge { | |
display: inline-block; | |
background: rgba(0, 219, 222, 0.1); | |
border: 1px solid rgba(0, 219, 222, 0.3); | |
border-radius: 20px; | |
padding: 8px 16px; | |
margin: 4px; | |
transition: all 0.3s ease; | |
} | |
.keyword-badge:hover { | |
background: rgba(0, 219, 222, 0.2); | |
transform: translateY(-2px); | |
} | |
</style> | |
</head> | |
<body class="min-h-screen flex flex-col"> | |
<!-- Header --> | |
<header class="py-6 px-4 sm:px-6 lg:px-8"> | |
<div class="container mx-auto flex justify-between items-center"> | |
<div class="flex items-center space-x-2"> | |
<div class="w-10 h-10 rounded-full bg-gradient-to-r from-cyan-500 to-purple-500 flex items-center justify-center"> | |
<i class="fas fa-robot text-white"></i> | |
</div> | |
<h1 class="text-2xl font-bold gradient-text">MR. Jaycee <span class="hidden sm:inline">Access Pod</span></h1> | |
</div> | |
<nav class="hidden md:flex space-x-6"> | |
<a href="#features" class="text-gray-300 hover:text-white transition">Features</a> | |
<a href="#keywords" class="text-gray-300 hover:text-white transition">Keywords</a> | |
<a href="#how-it-works" class="text-gray-300 hover:text-white transition">How It Works</a> | |
<a href="#payment" class="text-gray-300 hover:text-white transition">Payment</a> | |
<a href="#contact" class="text-gray-300 hover:text-white transition">Contact</a> | |
</nav> | |
<button class="md:hidden text-gray-300"> | |
<i class="fas fa-bars text-2xl"></i> | |
</button> | |
</div> | |
</header> | |
<!-- Hero Section --> | |
<section class="py-16 px-4 sm:px-6 lg:px-8 flex-grow"> | |
<div class="container mx-auto flex flex-col lg:flex-row items-center justify-between"> | |
<div class="lg:w-1/2 mb-12 lg:mb-0"> | |
<h2 class="text-4xl md:text-5xl lg:text-6xl font-bold mb-6 leading-tight"> | |
Your Gateway to <span class="gradient-text">Premium Content</span> | |
</h2> | |
<p class="text-lg text-gray-300 mb-8 max-w-lg"> | |
The MR. Jaycee Access Pod bot provides exclusive content and features through Telegram. | |
Get instant access after payment verification. | |
</p> | |
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4"> | |
<a href="https://t.me/MRJayceeBot" | |
class="btn-primary text-white font-semibold py-3 px-8 rounded-full flex items-center justify-center pulse"> | |
<i class="fab fa-telegram mr-2 text-xl"></i> Open Telegram Bot | |
</a> | |
<a href="#payment" | |
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"> | |
<i class="fas fa-lock mr-2"></i> Get Access | |
</a> | |
</div> | |
</div> | |
<div class="lg:w-1/2 flex justify-center"> | |
<div class="card-glass p-6 max-w-md w-full"> | |
<div class="bg-gray-800 rounded-lg overflow-hidden"> | |
<div class="bg-gray-900 py-2 px-4 flex items-center"> | |
<div class="flex space-x-2"> | |
<div class="w-3 h-3 rounded-full bg-red-500"></div> | |
<div class="w-3 h-3 rounded-full bg-yellow-500"></div> | |
<div class="w-3 h-3 rounded-full bg-green-500"></div> | |
</div> | |
<div class="text-sm text-gray-400 ml-4">MR. Jaycee Bot (Sample Preview)</div> | |
</div> | |
<div class="p-4"> | |
<div class="flex mb-4"> | |
<div class="w-10 h-10 rounded-full bg-purple-600 flex items-center justify-center"> | |
<i class="fas fa-robot text-white"></i> | |
</div> | |
<div class="ml-3 bg-gray-700 rounded-lg p-3 max-w-xs"> | |
<p class="text-sm">Hello! I'm MR. Jaycee Access Pod bot. To unlock premium features, please complete your payment.</p> | |
</div> | |
</div> | |
<div class="flex justify-end mb-4"> | |
<div class="bg-blue-600 rounded-lg p-3 max-w-xs"> | |
<p class="text-sm">I've completed my payment. How do I get access?</p> | |
</div> | |
<div class="w-10 h-10 rounded-full bg-blue-500 flex items-center justify-center ml-3"> | |
<i class="fas fa-user text-white"></i> | |
</div> | |
</div> | |
<div class="flex"> | |
<div class="w-10 h-10 rounded-full bg-purple-600 flex items-center justify-center"> | |
<i class="fas fa-robot text-white"></i> | |
</div> | |
<div class="ml-3 bg-gray-700 rounded-lg p-3 max-w-xs"> | |
<p class="text-sm">Thanks! Your payment is being verified. You'll receive access shortly.</p> | |
<div class="mt-2"> | |
<a href="https://nowpayments.io/payment/?iid=5608760585" class="text-blue-400 text-xs underline">View payment details</a> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="bg-gray-900 py-2 px-4 flex items-center"> | |
<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"> | |
<button class="ml-2 text-blue-400"> | |
<i class="fas fa-paper-plane"></i> | |
</button> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Features Section --> | |
<section id="features" class="py-16 px-4 sm:px-6 lg:px-8 bg-gray-900/50"> | |
<div class="container mx-auto"> | |
<h2 class="text-3xl md:text-4xl font-bold text-center mb-16"> | |
<span class="gradient-text">Exclusive Features</span> You'll Get | |
</h2> | |
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
<div class="card-glass p-8 rounded-xl"> | |
<div class="feature-icon mb-4"> | |
<i class="fas fa-lock-open"></i> | |
</div> | |
<h3 class="text-xl font-semibold mb-3">Instant Access</h3> | |
<p class="text-gray-300"> | |
Get immediate access to premium content after payment verification through our secure system. | |
</p> | |
</div> | |
<div class="card-glass p-8 rounded-xl"> | |
<div class="feature-icon mb-4"> | |
<i class="fas fa-shield-alt"></i> | |
</div> | |
<h3 class="text-xl font-semibold mb-3">Secure Payments</h3> | |
<p class="text-gray-300"> | |
All transactions are processed through NowPayments.io, ensuring your payment information is always protected. | |
</p> | |
</div> | |
<div class="card-glass p-8 rounded-xl"> | |
<div class="feature-icon mb-4"> | |
<i class="fas fa-comment-dots"></i> | |
</div> | |
<h3 class="text-xl font-semibold mb-3">24/7 Support</h3> | |
<p class="text-gray-300"> | |
Our Telegram bot provides round-the-clock assistance for any questions or issues you might have. | |
</p> | |
</div> | |
<div class="card-glass p-8 rounded-xl"> | |
<div class="feature-icon mb-4"> | |
<i class="fas fa-bolt"></i> | |
</div> | |
<h3 class="text-xl font-semibold mb-3">Fast Delivery</h3> | |
<p class="text-gray-300"> | |
Content is delivered instantly through Telegram with no waiting times or delays. | |
</p> | |
</div> | |
<div class="card-glass p-8 rounded-xl"> | |
<div class="feature-icon mb-4"> | |
<i class="fas fa-star"></i> | |
</div> | |
<h3 class="text-xl font-semibold mb-3">Exclusive Content</h3> | |
<p class="text-gray-300"> | |
Access materials not available anywhere else, curated specifically for our premium members. | |
</p> | |
</div> | |
<div class="card-glass p-8 rounded-xl"> | |
<div class="feature-icon mb-4"> | |
<i class="fas fa-sync"></i> | |
</div> | |
<h3 class="text-xl font-semibold mb-3">Regular Updates</h3> | |
<p class="text-gray-300"> | |
New content is added frequently to ensure you always have fresh material to explore. | |
</p> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Keywords Section --> | |
<section id="keywords" class="py-16 px-4 sm:px-6 lg:px-8"> | |
<div class="container mx-auto"> | |
<h2 class="text-3xl md:text-4xl font-bold text-center mb-12"> | |
Bot <span class="gradient-text">Keywords</span> & Commands | |
</h2> | |
<div class="max-w-4xl mx-auto card-glass p-8 rounded-xl"> | |
<p class="text-gray-300 text-center mb-8"> | |
Use these keywords in the MR. Jaycee Bot to access specific features and content: | |
</p> | |
<div class="flex flex-wrap justify-center"> | |
<div class="keyword-badge"> | |
<i class="fas fa-door-open mr-2 text-cyan-400"></i> | |
<span>Welcome Message</span> | |
</div> | |
<div class="keyword-badge"> | |
<i class="fas fa-briefcase mr-2 text-purple-400"></i> | |
<span>Private Office</span> | |
</div> | |
<div class="keyword-badge"> | |
<i class="fas fa-hand-holding-usd mr-2 text-green-400"></i> | |
<span>Donate</span> | |
</div> | |
<div class="keyword-badge"> | |
<i class="fas fa-link mr-2 text-blue-400"></i> | |
<span>Blockchain</span> | |
</div> | |
<div class="keyword-badge"> | |
<i class="fas fa-digging mr-2 text-yellow-400"></i> | |
<span>Mining</span> | |
</div> | |
</div> | |
<div class="mt-12 text-center"> | |
<h3 class="text-xl font-semibold mb-4">How to use keywords</h3> | |
<p class="text-gray-300 mb-6 max-w-2xl mx-auto"> | |
Simply type any of these keywords in your chat with the MR. Jaycee Bot to instantly access the corresponding feature or information. | |
</p> | |
<a href="https://t.me/MRJayceeBot" class="btn-primary text-white font-semibold py-3 px-8 rounded-full inline-flex items-center"> | |
<i class="fab fa-telegram mr-2"></i> Try Keywords Now | |
</a> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- How It Works Section --> | |
<section id="how-it-works" class="py-16 px-4 sm:px-6 lg:px-8 bg-gray-900/50"> | |
<div class="container mx-auto"> | |
<h2 class="text-3xl md:text-4xl font-bold text-center mb-16"> | |
How To <span class="gradient-text">Get Started</span> | |
</h2> | |
<div class="max-w-4xl mx-auto"> | |
<div class="flex flex-col md:flex-row mb-12"> | |
<div class="md:w-1/4 flex justify-center mb-6 md:mb-0"> | |
<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"> | |
1 | |
</div> | |
</div> | |
<div class="md:w-3/4"> | |
<h3 class="text-xl font-semibold mb-3">Open the Telegram Bot</h3> | |
<p class="text-gray-300"> | |
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. | |
</p> | |
<div class="mt-4"> | |
<a href="https://t.me/MRJayceeBot" class="inline-flex items-center text-blue-400 hover:text-blue-300"> | |
<i class="fab fa-telegram mr-2"></i> t.me/MRJayceeBot | |
</a> | |
</div> | |
</div> | |
</div> | |
<div class="flex flex-col md:flex-row mb-12"> | |
<div class="md:w-1/4 flex justify-center mb-6 md:mb-0"> | |
<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"> | |
2 | |
</div> | |
</div> | |
<div class="md:w-3/4"> | |
<h3 class="text-xl font-semibold mb-3">Complete Your Payment</h3> | |
<p class="text-gray-300"> | |
Follow the bot's instructions to make your payment through our secure NowPayments.io gateway. All major cryptocurrencies are accepted. | |
</p> | |
<div class="mt-4"> | |
<a href="https://nowpayments.io/payment/?iid=5608760585" class="inline-flex items-center text-purple-400 hover:text-purple-300"> | |
<i class="fas fa-external-link-alt mr-2"></i> Payment Portal | |
</a> | |
</div> | |
</div> | |
</div> | |
<div class="flex flex-col md:flex-row"> | |
<div class="md:w-1/4 flex justify-center mb-6 md:mb-0"> | |
<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"> | |
3 | |
</div> | |
</div> | |
<div class="md:w-3/4"> | |
<h3 class="text-xl font-semibold mb-3">Access Premium Content</h3> | |
<p class="text-gray-300"> | |
Once your payment is verified (usually within minutes), you'll receive immediate access to all premium features and content through the bot. | |
</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Payment Section --> | |
<section id="payment" class="py-16 px-4 sm:px-6 lg:px-8"> | |
<div class="container mx-auto"> | |
<h2 class="text-3xl md:text-4xl font-bold text-center mb-12"> | |
<span class="gradient-text">Secure Payment</span> Options | |
</h2> | |
<div class="max-w-2xl mx-auto card-glass p-8 rounded-xl"> | |
<div class="text-center mb-8"> | |
<i class="fas fa-lock text-5xl text-green-500 mb-4"></i> | |
<h3 class="text-2xl font-semibold mb-2">Payment Verification</h3> | |
<p class="text-gray-300 mb-6"> | |
All payments are processed through NowPayments.io, a trusted cryptocurrency payment gateway. | |
</p> | |
<a href="https://nowpayments.io/payment/?iid=5608760585" | |
class="btn-primary text-white font-semibold py-3 px-8 rounded-full inline-flex items-center"> | |
<i class="fas fa-external-link-alt mr-2"></i> Proceed to Payment | |
</a> | |
</div> | |
<div class="border-t border-gray-700 pt-6"> | |
<h4 class="text-lg font-semibold mb-4 text-center">Accepted Cryptocurrencies</h4> | |
<div class="flex flex-wrap justify-center gap-4"> | |
<div class="flex items-center bg-gray-800/50 rounded-full py-2 px-4"> | |
<i class="fab fa-bitcoin text-orange-500 mr-2"></i> | |
<span>Bitcoin</span> | |
</div> | |
<div class="flex items-center bg-gray-800/50 rounded-full py-2 px-4"> | |
<i class="fab fa-ethereum text-purple-500 mr-2"></i> | |
<span>Ethereum</span> | |
</div> | |
<div class="flex items-center bg-gray-800/50 rounded-full py-2 px-4"> | |
<i class="fas fa-dollar-sign text-green-500 mr-2"></i> | |
<span>USDT</span> | |
</div> | |
<div class="flex items-center bg-gray-800/50 rounded-full py-2 px-4"> | |
<i class="fab fa-litecoin text-gray-400 mr-2"></i> | |
<span>Litecoin</span> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Contact Section --> | |
<section id="contact" class="py-16 px-4 sm:px-6 lg:px-8 bg-gray-900/50"> | |
<div class="container mx-auto"> | |
<h2 class="text-3xl md:text-4xl font-bold text-center mb-12"> | |
Need <span class="gradient-text">Help?</span> Contact Us | |
</h2> | |
<div class="max-w-4xl mx-auto grid grid-cols-1 md:grid-cols-2 gap-8"> | |
<div class="card-glass p-8 rounded-xl"> | |
<h3 class="text-xl font-semibold mb-6 text-center">Direct Support</h3> | |
<div class="space-y-4"> | |
<div class="flex items-center"> | |
<div class="w-12 h-12 rounded-full bg-blue-600 flex items-center justify-center text-white mr-4"> | |
<i class="fab fa-telegram"></i> | |
</div> | |
<div> | |
<h4 class="font-medium">Telegram Bot</h4> | |
<a href="https://t.me/MRJayceeBot" class="text-blue-400 text-sm">@MRJayceeBot</a> | |
</div> | |
</div> | |
<div class="flex items-center"> | |
<div class="w-12 h-12 rounded-full bg-blue-400 flex items-center justify-center text-white mr-4"> | |
<i class="fas fa-globe"></i> | |
</div> | |
<div> | |
<h4 class="font-medium">Website</h4> | |
<a href="https://jayceejames.minisite.ai" class="text-blue-400 text-sm">jayceejames.minisite.ai</a> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="card-glass p-8 rounded-xl"> | |
<h3 class="text-xl font-semibold mb-6 text-center">Payment Support</h3> | |
<div class="space-y-4"> | |
<div class="flex items-center"> | |
<div class="w-12 h-12 rounded-full bg-purple-600 flex items-center justify-center text-white mr-4"> | |
<i class="fas fa-credit-card"></i> | |
</div> | |
<div> | |
<h4 class="font-medium">Payment Portal</h4> | |
<a href="https://nowpayments.io/payment/?iid=5608760585" class="text-purple-400 text-sm">NowPayments.io</a> | |
</div> | |
</div> | |
<div class="flex items-center"> | |
<div class="w-12 h-12 rounded-full bg-gray-600 flex items-center justify-center text-white mr-4"> | |
<i class="fas fa-question-circle"></i> | |
</div> | |
<div> | |
<h4 class="font-medium">Payment Issues</h4> | |
<p class="text-gray-400 text-sm">Contact through Telegram for payment verification issues</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Footer --> | |
<footer class="py-8 px-4 sm:px-6 lg:px-8 bg-gray-900/80"> | |
<div class="container mx-auto"> | |
<div class="flex flex-col md:flex-row justify-between items-center"> | |
<div class="flex items-center space-x-2 mb-4 md:mb-0"> | |
<div class="w-8 h-8 rounded-full bg-gradient-to-r from-cyan-500 to-purple-500 flex items-center justify-center"> | |
<i class="fas fa-robot text-white text-sm"></i> | |
</div> | |
<span class="font-semibold">MR. Jaycee Access Pod</span> | |
</div> | |
<div class="flex space-x-6"> | |
<a href="https://t.me/MRJayceeBot" class="text-gray-400 hover:text-blue-400 transition"> | |
<i class="fab fa-telegram text-xl"></i> | |
</a> | |
<a href="https://nowpayments.io/payment/?iid=5608760585" class="text-gray-400 hover:text-purple-400 transition"> | |
<i class="fas fa-lock text-xl"></i> | |
</a> | |
<a href="https://jayceejames.minisite.ai" class="text-gray-400 hover:text-blue-300 transition"> | |
<i class="fas fa-globe text-xl"></i> | |
</a> | |
</div> | |
</div> | |
<div class="border-t border-gray-800 mt-6 pt-6 text-center text-gray-500 text-sm"> | |
<p>© 2025 MR. Jaycee Access Pod. All rights reserved. Disclaimer: Bot UI may differ from Sample Preview.</p> | |
<p class="mt-2">Secure payments processed through NowPayments.io</p> | |
</div> | |
</div> | |
</footer> | |
<script> | |
// Smooth scrolling for anchor links | |
document.querySelectorAll('a[href^="#"]').forEach(anchor => { | |
anchor.addEventListener('click', function (e) { | |
e.preventDefault(); | |
document.querySelector(this.getAttribute('href')).scrollIntoView({ | |
behavior: 'smooth' | |
}); | |
}); | |
}); | |
// Mobile menu toggle functionality could be added here | |
// For now it's just a placeholder | |
document.querySelector('.md\\:hidden').addEventListener('click', function() { | |
alert('Mobile menu would open here in a full implementation'); | |
}); | |
</script> | |
<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> | |
</html> |