redbot-manager / cogs.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>Cogs - RedBot Manager</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>
</head>
<body class="bg-gray-900 text-white min-h-screen flex flex-col">
<custom-navbar></custom-navbar>
<!-- Header -->
<header class="bg-gray-800 border-b border-gray-700 py-6">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row md:items-center md:justify-between gap-4">
<div>
<h1 class="text-2xl font-bold">Cogs Management</h1>
<p class="text-gray-400">Install, configure, and manage your RedBot cogs</p>
</div>
<div class="flex gap-3">
<button class="bg-indigo-600 hover:bg-indigo-700 px-4 py-2 rounded-lg flex items-center gap-2">
<i data-feather="plus"></i>
<span>Add Cog</span>
</button>
<button class="bg-gray-700 hover:bg-gray-600 px-4 py-2 rounded-lg flex items-center gap-2">
<i data-feather="refresh-cw"></i>
<span>Refresh</span>
</button>
</div>
</div>
</div>
</header>
<!-- Main Content -->
<main class="flex-grow container mx-auto px-4 py-8">
<!-- Search and Filters -->
<div class="bg-gray-800 rounded-xl p-5 mb-6">
<div class="flex flex-col md:flex-row gap-4">
<div class="flex-grow">
<div class="relative">
<input type="text" placeholder="Search cogs..." class="w-full bg-gray-700 border border-gray-600 rounded-lg pl-10 pr-4 py-2 focus:outline-none focus:ring-2 focus:ring-indigo-500">
<i data-feather="search" class="absolute left-3 top-2.5 text-gray-400"></i>
</div>
</div>
<div class="flex gap-3">
<select class="bg-gray-700 border border-gray-600 rounded-lg px-4 py-2 focus:outline-none focus:ring-2 focus:ring-indigo-500">
<option>All Statuses</option>
<option>Installed</option>
<option>Available</option>
<option>Updates Available</option>
</select>
<select class="bg-gray-700 border border-gray-600 rounded-lg px-4 py-2 focus:outline-none focus:ring-2 focus:ring-indigo-500">
<option>All Categories</option>
<option>Moderation</option>
<option>Utility</option>
<option>Fun</option>
<option>Music</option>
<option>Economy</option>
</select>
</div>
</div>
</div>
<!-- Cogs Grid -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Cog Card 1 -->
<div class="bg-gray-800 rounded-xl p-5 hover:bg-gray-750 transition duration-300">
<div class="flex justify-between items-start mb-4">
<div>
<h3 class="text-xl font-bold">Admin</h3>
<p class="text-gray-400 text-sm">Core administration tools</p>
</div>
<div class="bg-green-500 text-white text-xs px-2 py-1 rounded-full">Installed</div>
</div>
<p class="text-gray-300 mb-4">Provides essential administrative commands for server management including kick, ban, and role management.</p>
<div class="flex items-center justify-between mb-4">
<div class="flex items-center gap-2 text-sm text-gray-400">
<i data-feather="download" class="w-4 h-4"></i>
<span>v1.2.4</span>
</div>
<div class="flex items-center gap-2 text-sm text-gray-400">
<i data-feather="star" class="w-4 h-4"></i>
<span>4.8 (128)</span>
</div>
</div>
<div class="flex gap-2">
<button class="flex-grow bg-indigo-600 hover:bg-indigo-700 py-2 rounded-lg flex items-center justify-center gap-2">
<i data-feather="settings"></i>
<span>Configure</span>
</button>
<button class="w-10 h-10 bg-gray-700 hover:bg-gray-600 rounded-lg flex items-center justify-center">
<i data-feather="more-vertical"></i>
</button>
</div>
</div>
<!-- Cog Card 2 -->
<div class="bg-gray-800 rounded-xl p-5 hover:bg-gray-750 transition duration-300">
<div class="flex justify-between items-start mb-4">
<div>
<h3 class="text-xl font-bold">Moderation</h3>
<p class="text-gray-400 text-sm">Advanced moderation tools</p>
</div>
<div class="bg-green-500 text-white text-xs px-2 py-1 rounded-full">Installed</div>
</div>
<p class="text-gray-300 mb-4">Comprehensive moderation suite with advanced logging, warnings, mutes, and automated moderation features.</p>
<div class="flex items-center justify-between mb-4">
<div class="flex items-center gap-2 text-sm text-gray-400">
<i data-feather="download" class="w-4 h-4"></i>
<span>v2.1.0</span>
</div>
<div class="flex items-center gap-2 text-sm text-gray-400">
<i data-feather="star" class="w-4 h-4"></i>
<span>4.9 (256)</span>
</div>
</div>
<div class="flex gap-2">
<button class="flex-grow bg-indigo-600 hover:bg-indigo-700 py-2 rounded-lg flex items-center justify-center gap-2">
<i data-feather="settings"></i>
<span>Configure</span>
</button>
<button class="w-10 h-10 bg-gray-700 hover:bg-gray-600 rounded-lg flex items-center justify-center">
<i data-feather="more-vertical"></i>
</button>
</div>
</div>
<!-- Cog Card 3 -->
<div class="bg-gray-800 rounded-xl p-5 hover:bg-gray-750 transition duration-300">
<div class="flex justify-between items-start mb-4">
<div>
<h3 class="text-xl font-bold">Music</h3>
<p class="text-gray-400 text-sm">High-quality music streaming</p>
</div>
<div class="bg-yellow-500 text-white text-xs px-2 py-1 rounded-full">Update Available</div>
</div>
<p class="text-gray-300 mb-4">Stream high-quality music from YouTube, Spotify, SoundCloud, and more directly in your voice channels.</p>
<div class="flex items-center justify-between mb-4">
<div class="flex items-center gap-2 text-sm text-gray-400">
<i data-feather="download" class="w-4 h-4"></i>
<span>v3.0.1 → v3.1.0</span>
</div>
<div class="flex items-center gap-2 text-sm text-gray-400">
<i data-feather="star" class="w-4 h-4"></i>
<span>4.7 (312)</span>
</div>
</div>
<div class="flex gap-2">
<button class="flex-grow bg-yellow-600 hover:bg-yellow-700 py-2 rounded-lg flex items-center justify-center gap-2">
<i data-feather="arrow-up-circle"></i>
<span>Update</span>
</button>
<button class="w-10 h-10 bg-gray-700 hover:bg-gray-600 rounded-lg flex items-center justify-center">
<i data-feather="more-vertical"></i>
</button>
</div>
</div>
<!-- Cog Card 4 -->
<div class="bg-gray-800 rounded-xl p-5 hover:bg-gray-750 transition duration-300">
<div class="flex justify-between items-start mb-4">
<div>
<h3 class="text-xl font-bold">Economy</h3>
<p class="text-gray-400 text-sm">Virtual currency system</p>
</div>
<div class="bg-gray-500 text-white text-xs px-2 py-1 rounded-full">Not Installed</div>
</div>
<p class="text-gray-300 mb-4">Create a fully customizable economy system with currencies, shops, jobs, and gambling games for your community.</p>
<div class="flex items-center justify-between mb-4">
<div class="flex items-center gap-2 text-sm text-gray-400">
<i data-feather="download" class="w-4 h-4"></i>
<span>v1.5.3</span>
</div>
<div class="flex items-center gap-2 text-sm text-gray-400">
<i data-feather="star" class="w-4 h-4"></i>
<span>4.6 (189)</span>
</div>
</div>
<div class="flex gap-2">
<button class="flex-grow bg-green-600 hover:bg-green-700 py-2 rounded-lg flex items-center justify-center gap-2">
<i data-feather="download"></i>
<span>Install</span>
</button>
<button class="w-10 h-10 bg-gray-700 hover:bg-gray-600 rounded-lg flex items-center justify-center">
<i data-feather="more-vertical"></i>
</button>
</div>
</div>
<!-- Cog Card 5 -->
<div class="bg-gray-800 rounded-xl p-5 hover:bg-gray-750 transition duration-300">
<div class="flex justify-between items-start mb-4">
<div>
<h3 class="text-xl font-bold">Leveling</h3>
<p class="text-gray-400 text-sm">User ranking system</p>
</div>
<div class="bg-gray-500 text-white text-xs px-2 py-1 rounded-full">Not Installed</div>
</div>
<p class="text-gray-300 mb-4">Implement a comprehensive leveling system with experience points, ranks, leaderboards, and customizable rewards.</p>
<div class="flex items-center justify-between mb-4">
<div class="flex items-center gap-2 text-sm text-gray-400">
<i data-feather="download" class="w-4 h-4"></i>
<span>v2.3.1</span>
</div>
<div class="flex items-center gap-2 text-sm text-gray-400">
<i data-feather="star" class="w-4 h-4"></i>
<span>4.5 (142)</span>
</div>
</div>
<div class="flex gap-2">
<button class="flex-grow bg-green-600 hover:bg-green-700 py-2 rounded-lg flex items-center justify-center gap-2">
<i data-feather="download"></i>
<span>Install</span>
</button>
<button class="w-10 h-10 bg-gray-700 hover:bg-gray-600 rounded-lg flex items-center justify-center">
<i data-feather="more-vertical"></i>
</button>
</div>
</div>
<!-- Cog Card 6 -->
<div class="bg-gray-800 rounded-xl p-5 hover:bg-gray-750 transition duration-300">
<div class="flex justify-between items-start mb-4">
<div>
<h3 class="text-xl font-bold">Tickets</h3>
<p class="text-gray-400 text-sm">Support ticket system</p>
</div>
<div class="bg-green-500 text-white text-xs px-2 py-1 rounded-full">Installed</div>
</div>
<p class="text-gray-300 mb-4">Create a professional support ticket system with customizable panels, staff assignments, and detailed transcripts.</p>
<div class="flex items-center justify-between mb-4">
<div class="flex items-center gap-2 text-sm text-gray-400">
<i data-feather="download" class="w-4 h-4"></i>
<span>v1.8.2</span>
</div>
<div class="flex items-center gap-2 text-sm text-gray-400">
<i data-feather="star" class="w-4 h-4"></i>
<span>4.8 (98)</span>
</div>
</div>
<div class="flex gap-2">
<button class="flex-grow bg-indigo-600 hover:bg-indigo-700 py-2 rounded-lg flex items-center justify-center gap-2">
<i data-feather="settings"></i>
<span>Configure</span>
</button>
<button class="w-10 h-10 bg-gray-700 hover:bg-gray-600 rounded-lg flex items-center justify-center">
<i data-feather="more-vertical"></i>
</button>
</div>
</div>
</div>
<!-- Pagination -->
<div class="mt-8 flex justify-center">
<div class="flex gap-2">
<button class="w-10 h-10 bg-gray-800 rounded-lg flex items-center justify-center">
<i data-feather="chevron-left"></i>
</button>
<button class="w-10 h-10 bg-indigo-600 rounded-lg flex items-center justify-center">1</button>
<button class="w-10 h-10 bg-gray-800 rounded-lg flex items-center justify-center">2</button>
<button class="w-10 h-10 bg-gray-800 rounded-lg flex items-center justify-center">3</button>
<button class="w-10 h-10 bg-gray-800 rounded-lg flex items-center justify-center">
<i data-feather="chevron-right"></i>
</button>
</div>
</div>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>
feather.replace();
</script>
</body>
</html>