File size: 1,284 Bytes
1c60365 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ImageGate Bot Settings</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="components/settings-form.js"></script>
</head>
<body class="bg-gray-900 text-white">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-8">
<section class="bg-gray-800/80 backdrop-blur-lg rounded-xl p-6 shadow-2xl max-w-4xl mx-auto">
<div class="flex items-center gap-4 mb-6">
<i data-feather="settings" class="w-12 h-12 text-purple-500"></i>
<h1 class="text-3xl font-bold">Bot Settings</h1>
</div>
<custom-settings-form></custom-settings-form>
</section>
</main>
<custom-footer></custom-footer>
<script src="script.js"></script>
<script>feather.replace();</script>
</body>
</html> |