Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Modern Dashboard</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> | |
| /* Custom CSS for elements that need more specific styling */ | |
| .sidebar { | |
| transition: all 0.3s ease; | |
| background: linear-gradient(135deg, #0a192f 0%, #172a45 100%); | |
| box-shadow: 0 0 25px rgba(0,0,0,0.2); | |
| } | |
| .card-hover:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); | |
| } | |
| .chart-container { | |
| position: relative; | |
| height: 100%; | |
| width: 100%; | |
| } | |
| @keyframes pulse { | |
| 0%, 100% { | |
| opacity: 1; | |
| } | |
| 50% { | |
| opacity: 0.5; | |
| } | |
| } | |
| .animate-pulse { | |
| animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; | |
| } | |
| /* Custom scrollbar */ | |
| ::-webkit-scrollbar { | |
| width: 6px; | |
| height: 6px; | |
| } | |
| ::-webkit-scrollbar-track { | |
| background: #f1f1f1; | |
| } | |
| ::-webkit-scrollbar-thumb { | |
| background: #888; | |
| border-radius: 3px; | |
| } | |
| ::-webkit-scrollbar-thumb:hover { | |
| background: #555; | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-gray-100 font-sans"> | |
| <div class="flex h-screen overflow-hidden"> | |
| <!-- Sidebar --> | |
| <div class="sidebar bg-indigo-800 text-white w-64 flex-shrink-0 md:block hidden"> | |
| <div class="p-4 flex items-center justify-between border-b border-indigo-700"> | |
| <div class="flex items-center space-x-2"> | |
| <i class="fas fa-chart-network text-2xl text-amber-400"></i> | |
| <span class="text-2xl font-bold font-serif tracking-wider text-white">InsightIQ <span class="text-amber-400">Premium</span></span> | |
| </div> | |
| <button id="sidebarToggle" class="text-indigo-300 hover:text-white focus:outline-none"> | |
| <i class="fas fa-bars"></i> | |
| </button> | |
| </div> | |
| <div class="p-4"> | |
| <div class="relative mb-4"> | |
| <input type="text" placeholder="Search..." class="w-full bg-indigo-700 text-white px-4 py-2 rounded-lg focus:outline-none focus:ring-2 focus:ring-indigo-500 placeholder-indigo-300"> | |
| <i class="fas fa-search absolute right-3 top-3 text-indigo-300"></i> | |
| </div> | |
| <nav> | |
| <a href="#" class="flex items-center space-x-3 py-3 px-4 bg-gray-800 rounded-lg text-white mb-2"> | |
| <i class="fas fa-chart-pie"></i> | |
| <span>Insight Dashboard</span> | |
| </a> | |
| <a href="#" class="flex items-center space-x-3 py-3 px-4 hover:bg-gray-800 rounded-lg text-gray-300 hover:text-white mb-2"> | |
| <i class="fas fa-lightbulb"></i> | |
| <span>Recommendations</span> | |
| </a> | |
| <a href="#" class="flex items-center space-x-3 py-3 px-4 hover:bg-gray-800 rounded-lg text-gray-300 hover:text-white mb-2"> | |
| <i class="fas fa-project-diagram"></i> | |
| <span>Data Relationships</span> | |
| <span class="ml-auto bg-amber-500 text-white text-xs px-2 py-1 rounded-full">New</span> | |
| </a> | |
| <a href="#" class="flex items-center space-x-3 py-3 px-4 hover:bg-gray-800 rounded-lg text-gray-300 hover:text-white mb-2"> | |
| <i class="fas fa-trophy"></i> | |
| <span>Benchmarks</span> | |
| </a> | |
| <a href="#" class="flex items-center space-x-3 py-3 px-4 hover:bg-gray-800 rounded-lg text-gray-300 hover:text-white mb-2"> | |
| <i class="fas fa-user-tie"></i> | |
| <span>Executive View</span> | |
| </a> | |
| <a href="#" class="flex items-center space-x-3 py-3 px-4 hover:bg-gray-800 rounded-lg text-gray-300 hover:text-white mb-2"> | |
| <i class="fas fa-sliders-h"></i> | |
| <span>Customization</span> | |
| </a> | |
| </nav> | |
| </div> | |
| <div class="absolute bottom-0 left-0 right-0 p-4 border-t border-indigo-700"> | |
| <div class="flex items-center space-x-3 bg-white/5 p-3 rounded-xl backdrop-blur-sm"> | |
| <div class="relative"> | |
| <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="User" class="w-10 h-10 rounded-full ring-2 ring-amber-400"> | |
| <div class="absolute -bottom-1 -right-1 w-4 h-4 bg-green-500 rounded-full border-2 border-white"></div> | |
| </div> | |
| <div> | |
| <div class="font-medium">Sarah Johnson</div> | |
| <div class="text-xs text-indigo-300">Admin</div> | |
| </div> | |
| <button class="ml-auto text-indigo-300 hover:text-white"> | |
| <i class="fas fa-sign-out-alt"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Mobile sidebar overlay --> | |
| <div id="sidebarOverlay" class="fixed inset-0 bg-black bg-opacity-50 z-40 md:hidden hidden"></div> | |
| <!-- Mobile sidebar --> | |
| <div id="mobileSidebar" class="sidebar fixed top-0 left-0 h-full z-50 transform -translate-x-full md:hidden"> | |
| <div class="p-4 flex items-center justify-between border-b border-indigo-700"> | |
| <div class="flex items-center space-x-2"> | |
| <i class="fas fa-rocket text-2xl text-indigo-300"></i> | |
| <span class="text-xl font-bold">DashPro</span> | |
| </div> | |
| <button id="mobileSidebarClose" class="text-indigo-300 hover:text-white focus:outline-none"> | |
| <i class="fas fa-times"></i> | |
| </button> | |
| </div> | |
| <div class="p-4"> | |
| <div class="relative mb-4"> | |
| <input type="text" placeholder="Search..." class="w-full bg-indigo-700 text-white px-4 py-2 rounded-lg focus:outline-none focus:ring-2 focus:ring-indigo-500 placeholder-indigo-300"> | |
| <i class="fas fa-search absolute right-3 top-3 text-indigo-300"></i> | |
| </div> | |
| <nav> | |
| <a href="#" class="flex items-center space-x-3 py-3 px-4 bg-indigo-900 rounded-lg text-white mb-2"> | |
| <i class="fas fa-home"></i> | |
| <span>Dashboard</span> | |
| </a> | |
| <a href="#" class="flex items-center space-x-3 py-3 px-4 hover:bg-indigo-700 rounded-lg text-indigo-200 hover:text-white mb-2"> | |
| <i class="fas fa-chart-line"></i> | |
| <span>Analytics</span> | |
| </a> | |
| <a href="#" class="flex items-center space-x-3 py-3 px-4 hover:bg-indigo-700 rounded-lg text-indigo-200 hover:text-white mb-2"> | |
| <i class="fas fa-envelope"></i> | |
| <span>Messages</span> | |
| <span class="ml-auto bg-red-500 text-white text-xs px-2 py-1 rounded-full">5</span> | |
| </a> | |
| <a href="#" class="flex items-center space-x-3 py-3 px-4 hover:bg-indigo-700 rounded-lg text-indigo-200 hover:text-white mb-2"> | |
| <i class="fas fa-calendar"></i> | |
| <span>Calendar</span> | |
| </a> | |
| <a href="#" class="flex items-center space-x-3 py-3 px-4 hover:bg-indigo-700 rounded-lg text-indigo-200 hover:text-white mb-2"> | |
| <i class="fas fa-users"></i> | |
| <span>Team</span> | |
| </a> | |
| <a href="#" class="flex items-center space-x-3 py-3 px-4 hover:bg-indigo-700 rounded-lg text-indigo-200 hover:text-white mb-2"> | |
| <i class="fas fa-cog"></i> | |
| <span>Settings</span> | |
| </a> | |
| </nav> | |
| </div> | |
| <div class="absolute bottom-0 left-0 right-0 p-4 border-t border-indigo-700"> | |
| <div class="flex items-center space-x-3"> | |
| <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="User" class="w-10 h-10 rounded-full"> | |
| <div> | |
| <div class="font-medium">Sarah Johnson</div> | |
| <div class="text-xs text-indigo-300">Admin</div> | |
| </div> | |
| <button class="ml-auto text-indigo-300 hover:text-white"> | |
| <i class="fas fa-sign-out-alt"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Main content --> | |
| <div class="flex-1 overflow-auto"> | |
| <!-- Premium Top Navigation --> | |
| <header class="bg-gradient-to-r from-blue-900 to-indigo-900 shadow-lg"> | |
| <div class="absolute inset-0 bg-opacity-20 bg-white/5 backdrop-blur-sm"></div> | |
| <div class="flex items-center justify-between px-6 py-4"> | |
| <div class="flex items-center space-x-4"> | |
| <button id="mobileMenuButton" class="text-gray-500 hover:text-gray-700 focus:outline-none md:hidden"> | |
| <i class="fas fa-bars text-xl"></i> | |
| </button> | |
| <h1 class="text-2xl font-bold text-gray-800">Dashboard</h1> | |
| </div> | |
| <div class="flex items-center space-x-4"> | |
| <button class="text-gray-500 hover:text-gray-700 focus:outline-none"> | |
| <i class="fas fa-bell text-xl"></i> | |
| <span class="absolute top-3 right-3 md:top-4 md:right-4 h-2 w-2 rounded-full bg-red-500"></span> | |
| </button> | |
| <div class="relative"> | |
| <button id="userMenuButton" class="flex items-center space-x-2 focus:outline-none"> | |
| <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="User" class="w-8 h-8 rounded-full"> | |
| <span class="hidden md:inline text-gray-700">Sarah</span> | |
| <i class="fas fa-chevron-down text-gray-500 text-xs"></i> | |
| </button> | |
| <div id="userMenu" class="hidden absolute right-0 mt-2 w-48 bg-white rounded-md shadow-lg py-1 z-50"> | |
| <a href="#" class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-100">Your Profile</a> | |
| <a href="#" class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-100">Settings</a> | |
| <a href="#" class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-100">Sign out</a> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </header> | |
| <!-- Main content area --> | |
| <main class="p-6"> | |
| <!-- Stats cards --> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6 mb-6"> | |
| <div class="bg-gradient-to-br from-white to-gray-50 rounded-xl shadow-xl p-6 card-hover transition-all duration-300 border-l-4 border-amber-400 hover:shadow-2xl"> | |
| <div class="flex items-center justify-between"> | |
| <div> | |
| <p class="text-gray-500">Insight Opportunities</p> | |
| <h3 class="text-2xl font-bold text-gray-800">42</h3> | |
| <p class="text-amber-500 text-sm mt-1"> | |
| <i class="fas fa-bolt mr-1"></i> High-value recommendations | |
| </p> | |
| </div> | |
| <div class="bg-amber-50 p-3 rounded-full"> | |
| <i class="fas fa-chart-network text-amber-600 text-xl"></i> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="bg-white rounded-lg shadow-lg p-6 card-hover transition-all duration-300 border-t-4 border-blue-400"> | |
| <div class="flex items-center justify-between"> | |
| <div> | |
| <p class="text-gray-500">Data Relationships</p> | |
| <h3 class="text-2xl font-bold text-gray-800">18</h3> | |
| <p class="text-blue-500 text-sm mt-1"> | |
| <i class="fas fa-link mr-1"></i> New correlations found | |
| </p> | |
| </div> | |
| <div class="bg-blue-50 p-3 rounded-full"> | |
| <i class="fas fa-project-diagram text-blue-600 text-xl"></i> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Premium Footer --> | |
| <footer class="bg-gradient-to-r from-blue-900 to-indigo-900 text-white/80 py-6 px-6 text-sm"> | |
| <div class="max-w-7xl mx-auto flex flex-col md:flex-row justify-between items-center"> | |
| <div class="flex items-center space-x-2 mb-4 md:mb-0"> | |
| <i class="fas fa-gem text-amber-400"></i> | |
| <span>InsightIQ Premium</span> | |
| </div> | |
| <div class="flex space-x-6"> | |
| <a href="#" class="hover:text-amber-300 transition">Privacy</a> | |
| <a href="#" class="hover:text-amber-300 transition">Terms</a> | |
| <a href="#" class="hover:text-amber-300 transition">Support</a> | |
| </div> | |
| </div> | |
| </footer> | |
| <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=yellowbuttermix/bibi" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |