seo-automaton-pro / index.html
ShabaMed's picture
i dont like the output. restore the previous version
8b14a71 verified
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SEO Automaton Pro - AI-Powered SEO Automation</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<script>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
fontFamily: {
'space-grotesk': ['Space Grotesk', 'monospace'],
},
colors: {
primary: {
50: '#f0f9ff',
100: '#e0f2fe',
200: '#bae6fd',
300: '#7dd3fc',
400: '#38bdf8',
500: '#0ea5e9',
600: '#0284c7',
700: '#0369a1',
800: '#075985',
900: '#0c4a6e',
},
secondary: {
50: '#fdf4ff',
100: '#fae8ff',
200: '#f5d0fe',
300: '#f0abfc',
400: '#e879f9',
500: '#d946ef',
600: '#c026d3',
700: '#a21caf',
800: '#86198f',
900: '#701a75',
}
}
}
}
}
</script>
</head>
<body class="bg-gray-900 text-white font-space-grotesk min-h-screen flex flex-col">
<custom-navbar></custom-navbar>
<main class="flex-1 container mx-auto px-4 py-8">
<!-- Header Section -->
<div class="text-center mb-12">
<h1 class="text-4xl md:text-6xl font-bold title-lighting mb-4">
SEO AUTOMATON PRO
</h1>
<p class="text-xl text-white/80 max-w-2xl mx-auto">
AI-POWERED SEO AUTOMATION FOR WORDPRESS
</p>
</div>
<!-- Main Dashboard Grid -->
<div class="grid grid-cols-1 lg:grid-cols-3 gap-6 mb-8">
<!-- Connection Panel -->
<div class="lg:col-span-1 animated-border">
<div class="card-content">
<div class="flex items-center gap-3 mb-6">
<i data-feather="link" class="text-primary-400"></i>
<h2 class="text-2xl font-semibold">WordPress Connection</h2>
</div>
<div class="space-y-4">
<div>
<label class="block text-sm font-medium text-gray-400 mb-2">WordPress URL</label>
<input type="text" placeholder="https://your-site.com"
class="w-full bg-gray-700 border border-gray-600 rounded-lg px-4 py-3 text-white placeholder-gray-500 focus:outline-none focus:ring-2 focus:ring-primary-500">
</div>
<div>
<label class="block text-sm font-medium text-gray-400 mb-2">API Key</label>
<input type="password" placeholder="Enter your WordPress API key"
class="w-full bg-gray-700 border border-gray-600 rounded-lg px-4 py-3 text-white placeholder-gray-500 focus:outline-none focus:ring-2 focus:ring-primary-500">
</div>
<button class="w-full bg-gradient-to-r from-primary-500 to-secondary-500 hover:from-primary-600 hover:to-secondary-600 text-white font-semibold py-3 px-6 rounded-lg transition-all duration-200 transform hover:scale-105">
<i data-feather="play" class="inline w-4 h-4 mr-2"></i>
Start SEO Automation
</button>
</div>
</div>
</div>
<!-- Analytics Panel -->
<div class="lg:col-span-2 bg-gray-800 rounded-2xl p-6 border border-gray-700">
<div class="flex items-center gap-3 mb-6">
<i data-feather="bar-chart-2" class="text-secondary-400"></i>
<h2 class="text-2xl font-semibold">Real-time Analytics</h2>
</div>
<div class="grid grid-cols-2 md:grid-cols-4 gap-4 mb-6">
<div class="bg-gray-700 rounded-xl p-4 text-center">
<div class="text-2xl font-bold text-primary-400">1.2K</div>
<div class="text-sm text-gray-400">Visitors Today</div>
</div>
<div class="bg-gray-700 rounded-xl p-4 text-center">
<div class="text-2xl font-bold text-secondary-400">45%</div>
<div class="text-sm text-gray-400">Bounce Rate</div>
</div>
<div class="bg-gray-700 rounded-xl p-4 text-center">
<div class="text-2xl font-bold text-green-400">3.2</div>
<div class="text-sm text-gray-400">Avg. Session</div>
</div>
<div class="bg-gray-700 rounded-xl p-4 text-center">
<div class="text-2xl font-bold text-yellow-400">87</div>
<div class="text-sm text-gray-400">SEO Score</div>
</div>
</div>
<div class="bg-gray-700 rounded-xl p-4">
<div class="h-48 flex items-center justify-center text-gray-500">
Analytics Chart Visualization
</div>
</div>
</div>
</div>
<!-- Tasks & Chat Section -->
<div class="grid grid-cols-1 lg:grid-cols-2 gap-6">
<!-- Tasks Panel -->
<div class="bg-gray-800 rounded-2xl p-6 border border-gray-700">
<div class="flex items-center gap-3 mb-6">
<i data-feather="check-square" class="text-green-400"></i>
<h2 class="text-2xl font-semibold">Recent Tasks</h2>
</div>
<div class="space-y-4">
<div class="bg-gray-700 rounded-xl p-4 border-l-4 border-primary-500">
<div class="flex justify-between items-center">
<span class="font-medium">Optimized meta tags for homepage</span>
<span class="text-xs text-green-400 bg-green-400/10 px-2 py-1 rounded-full">Completed</span>
</div>
<p class="text-sm text-gray-400 mt-2">Improved title and description for better CTR</p>
</div>
<div class="bg-gray-700 rounded-xl p-4 border-l-4 border-yellow-500">
<div class="flex justify-between items-center">
<span class="font-medium">Fixed broken internal links</span>
<span class="text-xs text-yellow-400 bg-yellow-400/10 px-2 py-1 rounded-full">In Progress</span>
</div>
<p class="text-sm text-gray-400 mt-2">Identified and fixed 12 broken links</p>
</div>
<div class="bg-gray-700 rounded-xl p-4 border-l-4 border-blue-500">
<div class="flex justify-between items-center">
<span class="font-medium">Image optimization batch</span>
<span class="text-xs text-blue-400 bg-blue-400/10 px-2 py-1 rounded-full">Queued</span>
</div>
<p class="text-sm text-gray-400 mt-2">Compressing 45 images for better load times</p>
</div>
</div>
</div>
<!-- Chat Panel -->
<div class="bg-gray-800 rounded-2xl p-6 border border-gray-700 flex flex-col">
<div class="flex items-center gap-3 mb-6">
<i data-feather="message-square" class="text-primary-400"></i>
<h2 class="text-2xl font-semibold">Chat with Agent</h2>
</div>
<div class="flex-1 bg-gray-700 rounded-xl p-4 mb-4 overflow-y-auto max-h-64">
<div class="space-y-4">
<div class="flex justify-start">
<div class="bg-gray-600 rounded-2xl rounded-tl-none px-4 py-3 max-w-xs">
<p class="text-sm">Hello! I'm your SEO assistant. I've connected to your WordPress site and started optimizing. How can I help you today?</p>
</div>
</div>
<div class="flex justify-end">
<div class="bg-primary-500 rounded-2xl rounded-tr-none px-4 py-3 max-w-xs">
<p class="text-sm">Can you run a full site audit and show me the results?</p>
</div>
</div>
<div class="flex justify-start">
<div class="bg-gray-600 rounded-2xl rounded-tl-none px-4 py-3 max-w-xs">
<p class="text-sm">Sure! I'll start a comprehensive SEO audit. This will analyze your site structure, content quality, technical SEO, and performance metrics.</p>
</div>
</div>
</div>
</div>
<div class="flex gap-2">
<input type="text" placeholder="Ask your SEO agent..."
class="flex-1 bg-gray-700 border border-gray-600 rounded-lg px-4 py-3 text-white placeholder-gray-500 focus:outline-none focus:ring-2 focus:ring-primary-500">
<button class="bg-primary-500 hover:bg-primary-600 text-white p-3 rounded-lg transition-colors">
<i data-feather="send" class="w-4 h-4"></i>
</button>
</div>
</div>
</div>
</main>
<custom-footer></custom-footer>
<!-- Component Scripts -->
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<!-- Main Script -->
<script src="script.js"></script>
<!-- Initialize Feather Icons -->
<script>
feather.replace();
</script>
</body>
</html>