-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (76 loc) · 4.54 KB
/
Copy pathindex.html
File metadata and controls
82 lines (76 loc) · 4.54 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OmniDev | All-in-One Developer Toolbox</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/lucide@latest"></script>
<link rel="stylesheet" href="style.css">
</head>
<body class="bg-slate-950 text-slate-200 font-sans overflow-hidden">
<div class="flex h-screen w-full">
<!-- Sidebar -->
<aside class="w-64 bg-slate-900 border-r border-slate-800 flex flex-col">
<div class="p-6">
<h1 class="text-xl font-bold bg-gradient-to-r from-blue-400 to-cyan-400 bg-clip-text text-transparent">
Omni_Dev
</h1>
<p class="text-xs text-slate-500">by anonymous-201</p>
</div>
<nav class="flex-1 overflow-y-auto px-4 space-y-1 custom-scrollbar">
<p class="text-[10px] uppercase text-slate-500 font-bold px-2 mb-2">Categories</p>
<button onclick="filterCategory('all')" class="nav-btn active w-full text-left px-3 py-2 rounded-lg flex items-center gap-3 hover:bg-slate-800 transition-all">
<i data-lucide="layout-grid" class="w-4 h-4"></i> All Tools
</button>
<button onclick="filterCategory('code')" class="nav-btn w-full text-left px-3 py-2 rounded-lg flex items-center gap-3 hover:bg-slate-800 transition-all">
<i data-lucide="code" class="w-4 h-4"></i> Code Tools
</button>
<button onclick="filterCategory('security')" class="nav-btn w-full text-left px-3 py-2 rounded-lg flex items-center gap-3 hover:bg-slate-800 transition-all">
<i data-lucide="shield-check" class="w-4 h-4"></i> Security
</button>
<button onclick="filterCategory('ui')" class="nav-btn w-full text-left px-3 py-2 rounded-lg flex items-center gap-3 hover:bg-slate-800 transition-all">
<i data-lucide="palette" class="w-4 h-4"></i> UI/Design
</button>
<button onclick="filterCategory('text')" class="nav-btn w-full text-left px-3 py-2 rounded-lg flex items-center gap-3 hover:bg-slate-800 transition-all">
<i data-lucide="type" class="w-4 h-4"></i> Text Tools
</button>
</nav>
</aside>
<!-- Main Content -->
<main class="flex-1 flex flex-col overflow-hidden">
<!-- Header/Search -->
<header class="h-16 border-b border-slate-800 flex items-center justify-between px-8 bg-slate-950/50 backdrop-blur-md">
<div class="relative w-96">
<i data-lucide="search" class="absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-slate-500"></i>
<input type="text" id="toolSearch" placeholder="Search for a tool..."
class="w-full bg-slate-900 border border-slate-800 rounded-full py-1.5 pl-10 pr-4 text-sm focus:outline-none focus:ring-2 focus:ring-blue-500/50 transition-all">
</div>
<div class="flex items-center gap-4 text-sm text-slate-400">
<span>v1.0.0</span>
<div class="h-4 w-px bg-slate-800"></div>
<span class="text-green-400 flex items-center gap-1">
<span class="w-2 h-2 bg-green-400 rounded-full animate-pulse"></span> Online
</span>
</div>
</header>
<!-- Dashboard Grid -->
<section id="dashboard" class="flex-1 overflow-y-auto p-8">
<div id="toolGrid" class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-4">
<!-- Tools injected by JS -->
</div>
</section>
<!-- Tool Workspace (Hidden by default) -->
<section id="workspace" class="hidden flex-1 overflow-hidden flex flex-col p-8">
<button onclick="closeTool()" class="flex items-center gap-2 text-slate-400 hover:text-white mb-4 transition-colors">
<i data-lucide="arrow-left" class="w-4 h-4"></i> Back to Dashboard
</button>
<div id="toolContent" class="bg-slate-900 border border-slate-800 rounded-2xl p-6 flex-1 overflow-auto">
<!-- Tool UI injected by JS -->
</div>
</section>
</main>
</div>
<script src="script.js"></script>
</body>
</html>