Spaces:
Running
Running
store create karne wala page banao abhi account create nahi ho raha ise thik karo design full professional karo live admin panel banao login page banao full working website banao jaldi please tum bahut der laga rahe ho jesa first prompt me kaha he same wesa hi admin panel banana
c728eba verified | ```html | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Dashboard - StoreForge Pro</title> | |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> | |
| <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> | |
| <style> | |
| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap'); | |
| * { | |
| font-family: 'Inter', sans-serif; | |
| } | |
| .gradient-text { | |
| background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| } | |
| .sidebar { | |
| transition: all 0.3s ease; | |
| } | |
| @media (max-width: 768px) { | |
| .sidebar { | |
| transform: translateX(-100%); | |
| } | |
| .sidebar.active { | |
| transform: translateX(0); | |
| } | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-gray-100 min-h-screen"> | |
| <!-- Mobile menu button --> | |
| <div class="md:hidden fixed top-4 left-4 z-50"> | |
| <button id="mobileMenuBtn" class="p-2 rounded-md bg-indigo-600 text-white"> | |
| <i data-feather="menu"></i> | |
| </button> | |
| </div> | |
| <!-- Sidebar --> | |
| <div class="sidebar fixed inset-y-0 left-0 z-40 w-64 bg-gray-900 text-white transform md:translate-x-0"> | |
| <div class="flex items-center justify-center h-16 px-4 bg-gray-800"> | |
| <span class="text-xl font-bold gradient-text">StoreForge Pro</span> | |
| </div> | |
| <nav class="mt-8 px-4"> | |
| <a href="dashboard.html" class="flex items-center px-4 py-2 text-gray-100 bg-gray-700 rounded-lg"> | |
| <i data-feather="home" class="w-5 h-5 mr-3"></i> | |
| Dashboard | |
| </a> | |
| <a href="create-store.html" class="flex items-center px-4 py-2 mt-2 text-gray-300 hover:bg-gray-700 hover:text-gray-100 rounded-lg"> | |
| <i data-feather="shopping-bag" class="w-5 h-5 mr-3"></i> | |
| Create Store | |
| </a> | |
| <a href="my-stores.html" class="flex items-center px-4 py-2 mt-2 text-gray-300 hover:bg-gray-700 hover:text-gray-100 rounded-lg"> | |
| <i data-feather="grid" class="w-5 h-5 mr-3"></i> | |
| My Stores | |
| </a> | |
| <a href="profile.html" class="flex items-center px-4 py-2 mt-2 text-gray-300 hover:bg-gray-700 hover:text-gray-100 rounded-lg"> | |
| <i data-feather="user" class="w-5 h-5 mr-3"></i> | |
| Profile | |
| </a> | |
| <a href="#" class="flex items-center px-4 py-2 mt-2 text-gray-300 hover:bg-gray-700 hover:text-gray-100 rounded-lg"> | |
| <i data-feather="settings" class="w-5 h-5 mr-3"></i> | |
| Settings | |
| </a> | |
| <a href="login.html" class="flex items-center px-4 py-2 mt-2 text-gray-300 hover:bg-gray-700 hover:text-gray-100 rounded-lg"> | |
| <i data-feather="log-out" class="w-5 h-5 mr-3"></i> | |
| Logout | |
| </a> | |
| </nav> | |
| </div> | |
| <!-- Main content --> | |
| <div class="md:ml-64 min-h-screen"> | |
| <!-- Header --> | |
| <header class="bg-white shadow-sm"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-4"> | |
| <div class="flex justify-between items-center"> | |
| <h1 class="text-2xl font-bold text-gray-900">Dashboard</h1> | |
| <div class="flex items-center space-x-4"> | |
| <span class="text-sm text-gray-600">Welcome, User</span> | |
| <div class=" |