redbot-manager / index.html
FDxMinh's picture
Tạo cogs và webs cho redbot discord như webs dyno của bot dyno trong discord để quản lý redbot với tất cả chức năng của nó có và cóg của nó, chỉnh sửa cấu hình, quản lý server và nhiều chức năng khác như của dyno bit
b154756 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RedBot Manager - Discord Bot Dashboard</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
</head>
<body class="bg-gray-900 text-white min-h-screen flex flex-col">
<custom-navbar></custom-navbar>
<!-- Hero Section -->
<section id="hero" class="relative py-20 md:py-32 overflow-hidden">
<div class="absolute inset-0 z-0" id="vanta-bg"></div>
<div class="container mx-auto px-4 relative z-10">
<div class="max-w-3xl mx-auto text-center">
<h1 class="text-4xl md:text-6xl font-bold mb-6">Manage Your RedBot Like a Pro</h1>
<p class="text-xl md:text-2xl mb-8 text-gray-300">Powerful dashboard for configuring, managing, and optimizing your RedBot Discord bot</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<a href="#dashboard" class="bg-indigo-600 hover:bg-indigo-700 text-white font-bold py-3 px-8 rounded-lg transition duration-300 transform hover:scale-105">
Get Started
</a>
<a href="#features" class="bg-transparent border-2 border-indigo-600 text-indigo-400 hover:bg-indigo-600 hover:text-white font-bold py-3 px-8 rounded-lg transition duration-300">
Learn More
</a>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-20 bg-gray-800">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Powerful Features</h2>
<p class="text-xl text-gray-400 max-w-2xl mx-auto">Everything you need to manage your RedBot efficiently</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="bg-gray-700 rounded-xl p-6 hover:bg-gray-600 transition duration-300">
<div class="w-12 h-12 rounded-full bg-indigo-600 flex items-center justify-center mb-4">
<i data-feather="settings" class="text-white"></i>
</div>
<h3 class="text-xl font-bold mb-2">Configuration Management</h3>
<p class="text-gray-300">Easily configure all aspects of your RedBot with our intuitive interface</p>
</div>
<!-- Feature 2 -->
<div class="bg-gray-700 rounded-xl p-6 hover:bg-gray-600 transition duration-300">
<div class="w-12 h-12 rounded-full bg-indigo-600 flex items-center justify-center mb-4">
<i data-feather="server" class="text-white"></i>
</div>
<h3 class="text-xl font-bold mb-2">Server Management</h3>
<p class="text-gray-300">Manage multiple servers from a single dashboard with ease</p>
</div>
<!-- Feature 3 -->
<div class="bg-gray-700 rounded-xl p-6 hover:bg-gray-600 transition duration-300">
<div class="w-12 h-12 rounded-full bg-indigo-600 flex items-center justify-center mb-4">
<i data-feather="command" class="text-white"></i>
</div>
<h3 class="text-xl font-bold mb-2">Cog Management</h3>
<p class="text-gray-300">Install, update, and configure cogs with just a few clicks</p>
</div>
<!-- Feature 4 -->
<div class="bg-gray-700 rounded-xl p-6 hover:bg-gray-600 transition duration-300">
<div class="w-12 h-12 rounded-full bg-indigo-600 flex items-center justify-center mb-4">
<i data-feather="bar-chart-2" class="text-white"></i>
</div>
<h3 class="text-xl font-bold mb-2">Analytics & Stats</h3>
<p class="text-gray-300">Track bot performance and usage statistics in real-time</p>
</div>
<!-- Feature 5 -->
<div class="bg-gray-700 rounded-xl p-6 hover:bg-gray-600 transition duration-300">
<div class="w-12 h-12 rounded-full bg-indigo-600 flex items-center justify-center mb-4">
<i data-feather="users" class="text-white"></i>
</div>
<h3 class="text-xl font-bold mb-2">User Permissions</h3>
<p class="text-gray-300">Control who can access which features with granular permissions</p>
</div>
<!-- Feature 6 -->
<div class="bg-gray-700 rounded-xl p-6 hover:bg-gray-600 transition duration-300">
<div class="w-12 h-12 rounded-full bg-indigo-600 flex items-center justify-center mb-4">
<i data-feather="bell" class="text-white"></i>
</div>
<h3 class="text-xl font-bold mb-2">Notifications</h3>
<p class="text-gray-300">Get alerts for important events and system updates</p>
</div>
</div>
</div>
</section>
<!-- Dashboard Preview -->
<section id="dashboard" class="py-20">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Dashboard Overview</h2>
<p class="text-xl text-gray-400 max-w-2xl mx-auto">See how easy it is to manage your RedBot</p>
</div>
<div class="bg-gray-800 rounded-2xl p-6 shadow-2xl max-w-6xl mx-auto">
<div class="flex flex-wrap gap-4 mb-6">
<button class="px-4 py-2 bg-indigo-600 rounded-lg">Overview</button>
<button class="px-4 py-2 bg-gray-700 hover:bg-gray-600 rounded-lg">Cogs</button>
<button class="px-4 py-2 bg-gray-700 hover:bg-gray-600 rounded-lg">Servers</button>
<button class="px-4 py-2 bg-gray-700 hover:bg-gray-600 rounded-lg">Settings</button>
<button class="px-4 py-2 bg-gray-700 hover:bg-gray-600 rounded-lg">Analytics</button>
</div>
<div class="grid grid-cols-1 lg:grid-cols-3 gap-6">
<div class="lg:col-span-2 bg-gray-900 rounded-xl p-6">
<h3 class="text-xl font-bold mb-4">Server Configuration</h3>
<div class="space-y-4">
<div class="flex items-center justify-between p-4 bg-gray-700 rounded-lg">
<span>Prefix</span>
<span class="bg-indigo-600 px-3 py-1 rounded">!</span>
</div>
<div class="flex items-center justify-between p-4 bg-gray-700 rounded-lg">
<span>Language</span>
<span>English</span>
</div>
<div class="flex items-center justify-between p-4 bg-gray-700 rounded-lg">
<span>Auto Delete Messages</span>
<div class="relative inline-block w-12 h-6">
<input type="checkbox" class="opacity-0 w-0 h-0 peer" id="toggle1">
<label for="toggle1" class="absolute cursor-pointer top-0 left-0 right-0 bottom-0 bg-gray-600 rounded-full transition duration-300 before:absolute before:h-4 before:w-4 before:left-1 before:bottom-1 before:bg-white before:rounded-full before:transition before:duration-300 peer-checked:before:translate-x-6 peer-checked:bg-indigo-600"></label>
</div>
</div>
</div>
</div>
<div class="bg-gray-900 rounded-xl p-6">
<h3 class="text-xl font-bold mb-4">Active Cogs</h3>
<div class="space-y-3">
<div class="flex items-center justify-between p-3 bg-gray-700 rounded-lg">
<span>Admin</span>
<i data-feather="check-circle" class="text-green-500"></i>
</div>
<div class="flex items-center justify-between p-3 bg-gray-700 rounded-lg">
<span>Moderation</span>
<i data-feather="check-circle" class="text-green-500"></i>
</div>
<div class="flex items-center justify-between p-3 bg-gray-700 rounded-lg">
<span>Music</span>
<i data-feather="check-circle" class="text-green-500"></i>
</div>
<div class="flex items-center justify-between p-3 bg-gray-700 rounded-lg">
<span>Economy</span>
<i data-feather="check-circle" class="text-green-500"></i>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-20 bg-indigo-900">
<div class="container mx-auto px-4 text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Manage Your RedBot?</h2>
<p class="text-xl mb-8 max-w-2xl mx-auto">Join thousands of server owners who trust us to manage their bots</p>
<a href="#" class="inline-block bg-white text-indigo-900 font-bold py-3 px-8 rounded-lg hover:bg-gray-200 transition duration-300 transform hover:scale-105">
Get Started Now
</a>
</div>
</section>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>
feather.replace();
// Initialize Vanta.js
VANTA.GLOBE({
el: "#vanta-bg",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
color: 0x4f46e5,
color2: 0x818cf8,
backgroundColor: 0x111827
})
</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>