seo-agentic-wizardry / dashboard.html
jeevan122323's picture
SEO Auto-Publisher – Generate and publish SEO posts to WordPress using Perplexity + OpenAI + ToolRouter, with internal links tracked in Sheets.The Agents In Production Hackathon challenges participants to build agentic workflows that orchestrate complex tasks across multiple tools and services. Each team will use:
77f8e8e verified
Raw
History Blame Contribute Delete
15.8 kB
<!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>