File size: 15,756 Bytes
77f8e8e | 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 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dashboard - SEO Agentic Wizardry</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');
body {
font-family: 'Inter', sans-serif;
}
.sidebar {
transition: all 0.3s ease;
}
.card-gradient {
background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
}
.active-tab {
background: rgba(139, 92, 246, 0.2);
border-left: 3px solid #8b5cf6;
}
</style>
</head>
<body class="bg-gray-50 text-gray-900">
<div class="flex h-screen overflow-hidden">
<!-- Sidebar -->
<div class="sidebar w-64 bg-white border-r border-gray-200 flex-shrink-0">
<div class="p-6">
<div class="flex items-center space-x-2">
<i data-feather="wand" class="text-purple-500"></i>
<span class="text-xl font-bold">SEO Wizardry</span>
</div>
</div>
<nav class="mt-6">
<div class="px-6">
<p class="text-xs uppercase font-semibold text-gray-500 mb-4">Navigation</p>
<a href="#" class="flex items-center space-x-3 py-2 px-4 bg-purple-50 text-purple-700 rounded-lg mb-2">
<i data-feather="home" class="w-5 h-5"></i>
<span>Dashboard</span>
</a>
<a href="#" class="flex items-center space-x-3 py-2 px-4 text-gray-600 hover:bg-gray-100 rounded-lg mb-2">
<i data-feather="file-text" class="w-5 h-5"></i>
<span>Content</span>
</a>
<a href="#" class="flex items-center space-x-3 py-2 px-4 text-gray-600 hover:bg-gray-100 rounded-lg mb-2">
<i data-feather="trending-up" class="w-5 h-5"></i>
<span>Analytics</span>
</a>
<a href="#" class="flex items-center space-x-3 py-2 px-4 text-gray-600 hover:bg-gray-100 rounded-lg mb-2">
<i data-feather="link" class="w-5 h-5"></i>
<span>Link Tracking</span>
</a>
<a href="#" class="flex items-center space-x-3 py-2 px-4 text-gray-600 hover:bg-gray-100 rounded-lg mb-2">
<i data-feather="settings" class="w-5 h-5"></i>
<span>Settings</span>
</a>
</div>
<div class="mt-10 px-6">
<p class="text-xs uppercase font-semibold text-gray-500 mb-4">Agent Tools</p>
<a href="#" class="flex items-center space-x-3 py-2 px-4 text-gray-600 hover:bg-gray-100 rounded-lg mb-2">
<i data-feather="zap" class="w-5 h-5"></i>
<span>Run Agent</span>
</a>
<a href="#" class="flex items-center space-x-3 py-2 px-4 text-gray-600 hover:bg-gray-100 rounded-lg mb-2">
<i data-feather="list" class="w-5 h-5"></i>
<span>Workflows</span>
</a>
<a href="#" class="flex items-center space-x-3 py-2 px-4 text-gray-600 hover:bg-gray-100 rounded-lg mb-2">
<i data-feather="terminal" class="w-5 h-5"></i>
<span>Tool Router</span>
</a>
</div>
</nav>
</div>
<!-- Main Content -->
<div class="flex-1 overflow-auto">
<!-- Top Bar -->
<header class="bg-white border-b border-gray-200 py-4 px-6 flex justify-between items-center">
<h1 class="text-2xl font-bold">Dashboard</h1>
<div class="flex items-center space-x-4">
<div class="relative">
<input type="text" placeholder="Search..." class="pl-10 pr-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-purple-500 focus:border-transparent">
<i data-feather="search" class="absolute left-3 top-2.5 text-gray-400"></i>
</div>
<button class="p-2 rounded-full bg-gray-100 hover:bg-gray-200">
<i data-feather="bell" class="w-5 h-5"></i>
</button>
<div class="flex items-center space-x-2">
<div class="w-8 h-8 rounded-full bg-purple-500 flex items-center justify-center text-white font-semibold">JS</div>
<span class="font-medium">John Smith</span>
</div>
</div>
</header>
<!-- Dashboard Content -->
<main class="p-6">
<!-- Stats Cards -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6 mb-8">
<div class="card-gradient p-6 rounded-xl border border-gray-200">
<div class="flex justify-between items-start">
<div>
<p class="text-gray-500">Published Posts</p>
<h3 class="text-3xl font-bold mt-2">142</h3>
<p class="text-green-500 text-sm mt-2 flex items-center">
<i data-feather="trending-up" class="w-4 h-4 mr-1"></i> 12% this month
</p>
</div>
<div class="p-3 rounded-lg bg-purple-100 text-purple-500">
<i data-feather="file-text" class="w-6 h-6"></i>
</div>
</div>
</div>
<div class="card-gradient p-6 rounded-xl border border-gray-200">
<div class="flex justify-between items-start">
<div>
<p class="text-gray-500">Internal Links</p>
<h3 class="text-3xl font-bold mt-2">586</h3>
<p class="text-green-500 text-sm mt-2 flex items-center">
<i data-feather="trending-up" class="w-4 h-4 mr-1"></i> 8% this month
</p>
</div>
<div class="p-3 rounded-lg bg-purple-100 text-purple-500">
<i data-feather="link" class="w-6 h-6"></i>
</div>
</div>
</div>
<div class="card-gradient p-6 rounded-xl border border-gray-200">
<div class="flex justify-between items-start">
<div>
<p class="text-gray-500">Organic Traffic</p>
<h3 class="text-3xl font-bold mt-2">24.5K</h3>
<p class="text-green-500 text-sm mt-2 flex items-center">
<i data-feather="trending-up" class="w-4 h-4 mr-1"></i> 15% this month
</p>
</div>
<div class="p-3 rounded-lg bg-purple-100 text-purple-500">
<i data-feather="bar-chart-2" class="w-6 h-6"></i>
</div>
</div>
</div>
<div class="card-gradient p-6 rounded-xl border border-gray-200">
<div class="flex justify-between items-start">
<div>
<p class="text-gray-500">Agent Runs</p>
<h3 class="text-3xl font-bold mt-2">37</h3>
<p class="text-green-500 text-sm mt-2 flex items-center">
<i data-feather="trending-up" class="w-4 h-4 mr-1"></i> 22% this month
</p>
</div>
<div class="p-3 rounded-lg bg-purple-100 text-purple-500">
<i data-feather="zap" class="w-6 h-6"></i>
</div>
</div>
</div>
</div>
<!-- Recent Activity -->
<div class="bg-white rounded-xl border border-gray-200 p-6 mb-8">
<div class="flex justify-between items-center mb-6">
<h2 class="text-xl font-bold">Recent Activity</h2>
<button class="text-purple-600 hover:text-purple-800 flex items-center">
View All <i data-feather="chevron-right" class="w-4 h-4 ml-1"></i>
</button>
</div>
<div class="space-y-4">
<div class="flex items-start p-3 hover:bg-gray-50 rounded-lg">
<div class="p-2 rounded-full bg-green-100 text-green-500 mr-4">
<i data-feather="check" class="w-5 h-5"></i>
</div>
<div class="flex-1">
<p class="font-medium">New post published</p>
<p class="text-gray-500 text-sm">"The Future of AI in Content Marketing" was published to WordPress</p>
<p class="text-gray-400 text-xs mt-1">2 hours ago</p>
</div>
</div>
<div class="flex items-start p-3 hover:bg-gray-50 rounded-lg">
<div class="p-2 rounded-full bg-blue-100 text-blue-500 mr-4">
<i data-feather="zap" class="w-5 h-5"></i>
</div>
<div class="flex-1">
<p class="font-medium">Agent completed run</p>
<p class="text-gray-500 text-sm">SEO research and content generation completed successfully</p>
<p class="text-gray-400 text-xs mt-1">5 hours ago</p>
</div>
</div>
<div class="flex items-start p-3 hover:bg-gray-50 rounded-lg">
<div class="p-2 rounded-full bg-purple-100 text-purple-500 mr-4">
<i data-feather="link" class="w-5 h-5"></i>
</div>
<div class="flex-1">
<p class="font-medium">Links updated</p>
<p class="text-gray-500 text-sm">Added 12 new internal links to the tracking sheet</p>
<p class="text-gray-400 text-xs mt-1">Yesterday</p>
</div>
</div>
</div>
</div>
<!-- Quick Actions -->
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div class="bg-white rounded-xl border border-gray-200 p-6">
<h2 class="text-xl font-bold mb-4">Run Agent</h2>
<p class="text-gray-500 mb-4">Execute your SEO automation workflows with one click</p>
<div class="space-y-3">
<button class="w-full flex items-center justify-between p-4 bg-purple-600 hover:bg-purple-700 text-white rounded-lg transition">
<span>Full Content Pipeline</span>
<i data-feather="chevron-right" class="w-5 h-5"></i>
</button>
<button class="w-full flex items-center justify-between p-4 bg-white border border-gray-200 hover:bg-gray-50 rounded-lg transition">
<span>Research Only</span>
<i data-feather="chevron-right" class="w-5 h-5"></i>
</button>
<button class="w-full flex items-center justify-between p-4 bg-white border border-gray-200 hover:bg-gray-50 rounded-lg transition">
<span>Link Audit</span>
<i data-feather="chevron-right" class="w-5 h-5"></i>
</button>
</div>
</div>
<div class="bg-white rounded-xl border border-gray-200 p-6">
<h2 class="text-xl font-bold mb-4">Tool Router Configuration</h2>
<p class="text-gray-500 mb-4">Manage your connected services and integrations</p>
<div class="space-y-3">
<div class="flex items-center p-3 bg-gray-50 rounded-lg">
<div class="p-2 rounded-full bg-blue-100 text-blue-500 mr-3">
<i data-feather="box" class="w-5 h-5"></i>
</div>
<div>
<p class="font-medium">WordPress</p>
<p class="text-gray-500 text-sm">Connected to blog.example.com</p>
</div>
</div>
<div class="flex items-center p-3 bg-gray-50 rounded-lg">
<div class="p-2 rounded-full bg-green-100 text-green-500 mr-3">
<i data-feather="lock" class="w-5 h-5"></i>
</div>
<div>
<p class="font-medium">Google Sheets</p>
<p class="text-gray-500 text-sm">Connected to Link Tracker</p>
</div>
</div>
<div class="flex items-center p-3 bg-gray-50 rounded-lg">
<div class="p-2 rounded-full bg-yellow-100 text-yellow-500 mr-3">
<i data-feather="cpu" class="w-5 h-5"></i>
</div>
<div>
<p class="font-medium">OpenAI</p>
<p class="text-gray-500 text-sm">GPT-4 model enabled</p>
</div>
</div>
</div>
</div>
</div>
</main>
</div>
</div>
<script>
// Initialize Feather Icons
document.addEventListener('DOMContentLoaded', function() {
feather.replace();
});
</script>
</body>
</html>
|