seo-wizards-unleashed / config-builder.html
dbeck22's picture
The config maker should ask for the website url as well. Also lets make this a members website but we can allow free members to use with ads (using google adsense) and paid members will have less ads and more features
812f3ab verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Config Builder - SEO Sorcerer</title>
<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>
</head>
<body class="bg-gray-50 min-h-screen">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-12">
<div class="max-w-4xl mx-auto bg-white rounded-xl shadow-md overflow-hidden">
<div class="bg-gradient-to-r from-primary to-secondary p-6 text-white">
<h1 class="text-2xl font-bold">SEO Configuration Builder</h1>
<p class="opacity-90">Fill in the details below to create your custom SEO strategy</p>
</div>
<div class="p-6">
<div class="mb-8">
<label class="block text-gray-700 font-medium mb-2">Website URL</label>
<input type="url" class="w-full border border-gray-300 rounded-lg px-4 py-2 focus:ring-primary focus:border-primary" placeholder="https://yourwebsite.com" required>
</div>
<div class="mb-8">
<label class="block text-gray-700 font-medium mb-2">Website Niche/Industry</label>
<input type="text" class="w-full border border-gray-300 rounded-lg px-4 py-2 focus:ring-primary focus:border-primary" placeholder="e.g., E-commerce Fashion, Technology Blog, Local Restaurant" required>
</div>
<div class="mb-8">
<label class="block text-gray-700 font-medium mb-2">Target Audience</label>
<textarea class="w-full border border-gray-300 rounded-lg px-4 py-2 focus:ring-primary focus:border-primary h-24" placeholder="Describe your ideal customers (age, interests, pain points, etc.)"></textarea>
</div>
<div class="mb-8">
<label class="block text-gray-700 font-medium mb-2">Competitor Websites (optional)</label>
<textarea class="w-full border border-gray-300 rounded-lg px-4 py-2 focus:ring-primary focus:border-primary h-24" placeholder="List competitor websites you want to analyze"></textarea>
<p class="text-sm text-gray-500 mt-1">Enter one URL per line</p>
</div>
<div class="grid md:grid-cols-2 gap-6 mb-8">
<div>
<label class="block text-gray-700 font-medium mb-2">Primary Location</label>
<input type="text" class="w-full border border-gray-300 rounded-lg px-4 py-2 focus:ring-primary focus:border-primary" placeholder="Country, city or region">
</div>
<div>
<label class="block text-gray-700 font-medium mb-2">Language</label>
<select class="w-full border border-gray-300 rounded-lg px-4 py-2 focus:ring-primary focus:border-primary">
<option>English</option>
<option>Spanish</option>
<option>French</option>
<option>German</option>
<option>Other</option>
</select>
</div>
</div>
<div class="mb-8">
<label class="block text-gray-700 font-medium mb-2">Content Preferences</label>
<div class="space-y-3">
<label class="flex items-center">
<input type="checkbox" class="rounded text-primary focus:ring-primary" checked>
<span class="ml-2 text-gray-700">Include FAQ sections</span>
</label>
<label class="flex items-center">
<input type="checkbox" class="rounded text-primary focus:ring-primary" checked>
<span class="ml-2 text-gray-700">Use headers (H2, H3) strategically</span>
</label>
<label class="flex items-center">
<input type="checkbox" class="rounded text-primary focus:ring-primary">
<span class="ml-2 text-gray-700">Include tables/charts when relevant</span>
</label>
<label class="flex items-center">
<input type="checkbox" class="rounded text-primary focus:ring-primary" checked>
<span class="ml-2 text-gray-700">Optimize for featured snippets</span>
</label>
</div>
</div>
<div class="mb-8">
<label class="block text-gray-700 font-medium mb-2">SEO Tools Integration</label>
<div class="space-y-3">
<label class="flex items-center">
<input type="checkbox" class="rounded text-primary focus:ring-primary" checked>
<span class="ml-2 text-gray-700">Use Google Keyword Planner</span>
</label>
<label class="flex items-center">
<input type="checkbox" class="rounded text-primary focus:ring-primary" checked>
<span class="ml-2 text-gray-700">Analyze Google Trends</span>
</label>
<label class="flex items-center">
<input type="checkbox" class="rounded text-primary focus:ring-primary" checked>
<span class="ml-2 text-gray-700">Check SERP features</span>
</label>
</div>
</div>
<div class="flex flex-col sm:flex-row gap-4">
<button class="bg-primary hover:bg-primary-600 text-white font-medium py-3 px-6 rounded-lg shadow-md transition-all flex-1">
<i data-feather="save" class="mr-2"></i> Save Configuration
</button>
<button class="bg-secondary hover:bg-secondary-600 text-white font-medium py-3 px-6 rounded-lg shadow-md transition-all flex-1">
<i data-feather="download" class="mr-2"></i> Download Config File
</button>
</div>
</div>
</div>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>feather.replace();</script>
</body>
</html>