Spaces:
Running
Running
Add 3 files
Browse files- README.md +7 -5
- index.html +138 -19
- prompts.txt +1 -0
README.md
CHANGED
|
@@ -1,10 +1,12 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
-
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
| 1 |
---
|
| 2 |
+
title: mindfram3-studio
|
| 3 |
+
emoji: 🐳
|
| 4 |
+
colorFrom: blue
|
| 5 |
+
colorTo: yellow
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
| 8 |
+
tags:
|
| 9 |
+
- deepsite
|
| 10 |
---
|
| 11 |
|
| 12 |
+
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
index.html
CHANGED
|
@@ -1,19 +1,138 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Modern Dashboard UI</title>
|
| 7 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 8 |
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
| 9 |
+
<script>
|
| 10 |
+
tailwind.config = {
|
| 11 |
+
theme: {
|
| 12 |
+
extend: {
|
| 13 |
+
colors: {
|
| 14 |
+
primary: '#6366f1',
|
| 15 |
+
secondary: '#8b5cf6',
|
| 16 |
+
dark: '#1e293b',
|
| 17 |
+
light: '#f8fafc'
|
| 18 |
+
}
|
| 19 |
+
}
|
| 20 |
+
}
|
| 21 |
+
}
|
| 22 |
+
</script>
|
| 23 |
+
<style>
|
| 24 |
+
@keyframes float {
|
| 25 |
+
0% { transform: translateY(0px); }
|
| 26 |
+
50% { transform: translateY(-10px); }
|
| 27 |
+
100% { transform: translateY(0px); }
|
| 28 |
+
}
|
| 29 |
+
|
| 30 |
+
.floating {
|
| 31 |
+
animation: float 6s ease-in-out infinite;
|
| 32 |
+
}
|
| 33 |
+
|
| 34 |
+
.card-hover:hover {
|
| 35 |
+
transform: translateY(-5px);
|
| 36 |
+
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
| 37 |
+
}
|
| 38 |
+
|
| 39 |
+
.gradient-bg {
|
| 40 |
+
background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
|
| 41 |
+
}
|
| 42 |
+
|
| 43 |
+
.sidebar {
|
| 44 |
+
transition: all 0.3s ease;
|
| 45 |
+
}
|
| 46 |
+
|
| 47 |
+
.sidebar-collapsed {
|
| 48 |
+
width: 80px;
|
| 49 |
+
}
|
| 50 |
+
|
| 51 |
+
.sidebar-expanded {
|
| 52 |
+
width: 280px;
|
| 53 |
+
}
|
| 54 |
+
|
| 55 |
+
.content-area {
|
| 56 |
+
transition: all 0.3s ease;
|
| 57 |
+
}
|
| 58 |
+
|
| 59 |
+
.content-expanded {
|
| 60 |
+
margin-left: 280px;
|
| 61 |
+
}
|
| 62 |
+
|
| 63 |
+
.content-collapsed {
|
| 64 |
+
margin-left: 80px;
|
| 65 |
+
}
|
| 66 |
+
|
| 67 |
+
.progress-ring__circle {
|
| 68 |
+
transition: stroke-dashoffset 0.5s;
|
| 69 |
+
transform: rotate(-90deg);
|
| 70 |
+
transform-origin: 50% 50%;
|
| 71 |
+
}
|
| 72 |
+
</style>
|
| 73 |
+
</head>
|
| 74 |
+
<body class="bg-gray-50 text-gray-800 font-sans">
|
| 75 |
+
<div class="flex h-screen overflow-hidden">
|
| 76 |
+
<!-- Sidebar -->
|
| 77 |
+
<div id="sidebar" class="sidebar sidebar-expanded bg-white shadow-lg flex flex-col">
|
| 78 |
+
<div class="p-4 flex items-center justify-between border-b">
|
| 79 |
+
<div class="flex items-center space-x-3">
|
| 80 |
+
<div class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center text-white">
|
| 81 |
+
<i class="fas fa-rocket text-xl"></i>
|
| 82 |
+
</div>
|
| 83 |
+
<span id="logo-text" class="text-xl font-bold text-primary">DashboardPro</span>
|
| 84 |
+
</div>
|
| 85 |
+
<button id="toggle-sidebar" class="text-gray-500 hover:text-primary focus:outline-none">
|
| 86 |
+
<i class="fas fa-bars"></i>
|
| 87 |
+
</button>
|
| 88 |
+
</div>
|
| 89 |
+
|
| 90 |
+
<div class="flex-1 overflow-y-auto py-4">
|
| 91 |
+
<div class="px-4 mb-6">
|
| 92 |
+
<div class="relative">
|
| 93 |
+
<input type="text" placeholder="Search..." class="w-full pl-10 pr-4 py-2 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-primary focus:border-transparent">
|
| 94 |
+
<i class="fas fa-search absolute left-3 top-3 text-gray-400"></i>
|
| 95 |
+
</div>
|
| 96 |
+
</div>
|
| 97 |
+
|
| 98 |
+
<nav>
|
| 99 |
+
<div class="px-2">
|
| 100 |
+
<div class="mb-2">
|
| 101 |
+
<p id="nav-section-title" class="text-xs font-semibold text-gray-500 uppercase tracking-wider px-4 mb-2">Main Menu</p>
|
| 102 |
+
<ul>
|
| 103 |
+
<li>
|
| 104 |
+
<a href="#" class="flex items-center px-4 py-3 text-primary bg-primary bg-opacity-10 rounded-lg mx-2">
|
| 105 |
+
<i class="fas fa-home mr-3"></i>
|
| 106 |
+
<span id="dashboard-text" class="font-medium">Dashboard</span>
|
| 107 |
+
</a>
|
| 108 |
+
</li>
|
| 109 |
+
<li>
|
| 110 |
+
<a href="#" class="flex items-center px-4 py-3 text-gray-600 hover:text-primary hover:bg-primary hover:bg-opacity-10 rounded-lg mx-2">
|
| 111 |
+
<i class="fas fa-chart-line mr-3"></i>
|
| 112 |
+
<span id="analytics-text" class="font-medium">Analytics</span>
|
| 113 |
+
</a>
|
| 114 |
+
</li>
|
| 115 |
+
<li>
|
| 116 |
+
<a href="#" class="flex items-center px-4 py-3 text-gray-600 hover:text-primary hover:bg-primary hover:bg-opacity-10 rounded-lg mx-2">
|
| 117 |
+
<i class="fas fa-envelope mr-3"></i>
|
| 118 |
+
<span id="messages-text" class="font-medium">Messages</span>
|
| 119 |
+
<span class="ml-auto bg-red-500 text-white text-xs font-bold px-2 py-1 rounded-full">5</span>
|
| 120 |
+
</a>
|
| 121 |
+
</li>
|
| 122 |
+
<li>
|
| 123 |
+
<a href="#" class="flex items-center px-4 py-3 text-gray-600 hover:text-primary hover:bg-primary hover:bg-opacity-10 rounded-lg mx-2">
|
| 124 |
+
<i class="fas fa-calendar mr-3"></i>
|
| 125 |
+
<span id="calendar-text" class="font-medium">Calendar</span>
|
| 126 |
+
</a>
|
| 127 |
+
</li>
|
| 128 |
+
</ul>
|
| 129 |
+
</div>
|
| 130 |
+
|
| 131 |
+
<div class="mb-2">
|
| 132 |
+
<p id="settings-section-title" class="text-xs font-semibold text-gray-500 uppercase tracking-wider px-4 mb-2">Settings</p>
|
| 133 |
+
<ul>
|
| 134 |
+
<li>
|
| 135 |
+
<a href="#" class="flex items-center px-4 py-3 text-gray-600 hover:text-primary hover:bg-primary hover:bg-opacity-10 rounded-lg mx-2">
|
| 136 |
+
<i class="fas fa-cog mr-3"></i>
|
| 137 |
+
<span id
|
| 138 |
+
</html>
|
prompts.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
amgh344/la
|