|
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>AI Army - Complete Website Automation</title> |
|
<script src="https://cdn.tailwindcss.com"></script> |
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> |
|
<style> |
|
@keyframes pulse { |
|
0%, 100% { opacity: 0.6; } |
|
50% { opacity: 1; } |
|
} |
|
.soldier-active { |
|
animation: pulse 2s infinite; |
|
} |
|
.code-container { |
|
font-family: 'Courier New', monospace; |
|
background-color: #1e293b; |
|
border-radius: 0.5rem; |
|
max-height: 400px; |
|
overflow-y: auto; |
|
} |
|
.glow { |
|
box-shadow: 0 0 15px rgba(59, 130, 246, 0.5); |
|
} |
|
.progress-bar { |
|
transition: width 0.5s ease-in-out; |
|
} |
|
.upload-area { |
|
border: 2px dashed #64748b; |
|
transition: all 0.3s; |
|
} |
|
.upload-area:hover { |
|
border-color: #3b82f6; |
|
background-color: rgba(59, 130, 246, 0.05); |
|
} |
|
.soldier-card:hover { |
|
transform: translateY(-5px); |
|
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); |
|
} |
|
.domain-check { |
|
transition: all 0.3s; |
|
} |
|
.domain-check:hover { |
|
transform: scale(1.02); |
|
} |
|
.seo-score { |
|
transition: all 0.3s; |
|
} |
|
.seo-score:hover { |
|
transform: scale(1.05); |
|
} |
|
</style> |
|
</head> |
|
<body class="bg-gray-900 text-gray-100 min-h-screen"> |
|
|
|
<header class="bg-gray-800 py-6 px-4 shadow-lg"> |
|
<div class="container mx-auto flex justify-between items-center"> |
|
<div class="flex items-center space-x-4"> |
|
<div class="bg-blue-500 p-2 rounded-lg"> |
|
<i class="fas fa-robot text-2xl"></i> |
|
</div> |
|
<h1 class="text-2xl font-bold">AI <span class="text-blue-400">Army</span></h1> |
|
</div> |
|
<nav> |
|
<ul class="flex space-x-6"> |
|
<li><a href="#" class="hover:text-blue-400 transition">Dashboard</a></li> |
|
<li><a href="#" class="hover:text-blue-400 transition">Domain Manager</a></li> |
|
<li><a href="#" class="hover:text-blue-400 transition">SEO Center</a></li> |
|
<li><a href="#" class="hover:text-blue-400 transition">Settings</a></li> |
|
</ul> |
|
</nav> |
|
</div> |
|
</header> |
|
|
|
|
|
<main class="container mx-auto py-8 px-4"> |
|
|
|
<section class="mb-12"> |
|
<div class="bg-gray-800 rounded-xl shadow-lg overflow-hidden"> |
|
<div class="p-6 border-b border-gray-700"> |
|
<h2 class="text-xl font-bold flex items-center"> |
|
<i class="fas fa-globe mr-3 text-blue-400"></i> |
|
Domain Registration & SSL Automation |
|
</h2> |
|
</div> |
|
<div class="p-6"> |
|
<div class="grid grid-cols-1 lg:grid-cols-2 gap-8"> |
|
|
|
<div> |
|
<h3 class="text-lg font-semibold mb-4">Register New Domain</h3> |
|
<div class="mb-6"> |
|
<label class="block text-gray-400 mb-2">Choose Your Domain</label> |
|
<div class="flex"> |
|
<input type="text" id="domainInput" placeholder="yourdomain" class="bg-gray-700 text-white p-3 rounded-l-lg flex-grow focus:outline-none focus:ring-2 focus:ring-blue-500"> |
|
<select id="domainExtension" class="bg-gray-700 text-white p-3 border-l border-gray-600 focus:outline-none"> |
|
<option>.com</option> |
|
<option>.net</option> |
|
<option>.org</option> |
|
<option>.io</option> |
|
<option>.ai</option> |
|
<option>.dev</option> |
|
</select> |
|
<button id="checkDomain" class="bg-blue-600 hover:bg-blue-700 text-white py-3 px-6 rounded-r-lg transition"> |
|
Check |
|
</button> |
|
</div> |
|
</div> |
|
|
|
|
|
<div id="domainResults" class="hidden"> |
|
<h4 class="text-gray-400 mb-3">Available Domains</h4> |
|
<div class="space-y-3"> |
|
<div class="domain-check bg-gray-700 p-4 rounded-lg flex justify-between items-center"> |
|
<div> |
|
<span class="font-bold" id="selectedDomain">example.com</span> |
|
<span class="text-green-400 text-sm ml-2">Available</span> |
|
</div> |
|
<div class="text-right"> |
|
<span class="text-gray-400 text-sm line-through mr-2">$12.99</span> |
|
<span class="font-bold">$9.99/yr</span> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="mt-6"> |
|
<h4 class="text-gray-400 mb-3">Registration Details</h4> |
|
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 mb-4"> |
|
<div> |
|
<label class="block text-gray-400 text-sm mb-1">First Name</label> |
|
<input type="text" class="w-full bg-gray-700 text-white p-2 rounded focus:outline-none focus:ring-2 focus:ring-blue-500"> |
|
</div> |
|
<div> |
|
<label class="block text-gray-400 text-sm mb-1">Last Name</label> |
|
<input type="text" class="w-full bg-gray-700 text-white p-2 rounded focus:outline-none focus:ring-2 focus:ring-blue-500"> |
|
</div> |
|
</div> |
|
<div class="mb-4"> |
|
<label class="block text-gray-400 text-sm mb-1">Email</label> |
|
<input type="email" class="w-full bg-gray-700 text-white p-2 rounded focus:outline-none focus:ring-2 focus:ring-blue-500"> |
|
</div> |
|
<div class="flex items-center mb-6"> |
|
<input type="checkbox" id="autoSSL" class="mr-2" checked> |
|
<label for="autoSSL" class="text-gray-400 text-sm">Automatically configure SSL certificate</label> |
|
</div> |
|
<div class="flex items-center mb-6"> |
|
<input type="checkbox" id="autoDNS" class="mr-2" checked> |
|
<label for="autoDNS" class="text-gray-400 text-sm">Automatically configure DNS records</label> |
|
</div> |
|
<button id="registerDomain" class="w-full bg-green-600 hover:bg-green-700 text-white py-3 px-6 rounded-lg transition"> |
|
Register Domain & Deploy AI Army |
|
</button> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div> |
|
<h3 class="text-lg font-semibold mb-4">Automated Domain Features</h3> |
|
<div class="bg-gray-700 rounded-lg p-6 h-full"> |
|
<div class="space-y-4"> |
|
<div class="flex items-start"> |
|
<div class="bg-blue-500 p-2 rounded-full mr-3 mt-1"> |
|
<i class="fas fa-lock"></i> |
|
</div> |
|
<div> |
|
<h4 class="font-semibold">Instant SSL Certificate</h4> |
|
<p class="text-gray-400 text-sm">Free Let's Encrypt SSL automatically configured for your domain with auto-renewal.</p> |
|
</div> |
|
</div> |
|
<div class="flex items-start"> |
|
<div class="bg-purple-500 p-2 rounded-full mr-3 mt-1"> |
|
<i class="fas fa-server"></i> |
|
</div> |
|
<div> |
|
<h4 class="font-semibold">Smart DNS Configuration</h4> |
|
<p class="text-gray-400 text-sm">Automatic DNS setup with optimized records for performance and security.</p> |
|
</div> |
|
</div> |
|
<div class="flex items-start"> |
|
<div class="bg-green-500 p-2 rounded-full mr-3 mt-1"> |
|
<i class="fas fa-shield-alt"></i> |
|
</div> |
|
<div> |
|
<h4 class="font-semibold">Security Hardening</h4> |
|
<p class="text-gray-400 text-sm">Automatic security headers, DDoS protection, and firewall rules applied.</p> |
|
</div> |
|
</div> |
|
<div class="flex items-start"> |
|
<div class="bg-yellow-500 p-2 rounded-full mr-3 mt-1"> |
|
<i class="fas fa-tachometer-alt"></i> |
|
</div> |
|
<div> |
|
<h4 class="font-semibold">Global CDN</h4> |
|
<p class="text-gray-400 text-sm">Content Delivery Network automatically configured for fast global loading.</p> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section class="mb-12"> |
|
<div class="bg-gray-800 rounded-xl shadow-lg overflow-hidden"> |
|
<div class="p-6 border-b border-gray-700"> |
|
<h2 class="text-xl font-bold flex items-center"> |
|
<i class="fas fa-chart-line mr-3 text-blue-400"></i> |
|
Automated SEO Optimization |
|
</h2> |
|
</div> |
|
<div class="p-6"> |
|
<div class="grid grid-cols-1 lg:grid-cols-3 gap-8"> |
|
|
|
<div class="lg:col-span-2"> |
|
<h3 class="text-lg font-semibold mb-4">SEO Configuration</h3> |
|
<div class="bg-gray-700 rounded-lg p-6 mb-6"> |
|
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-6"> |
|
<div> |
|
<label class="block text-gray-400 mb-2">Target Keywords</label> |
|
<textarea class="w-full bg-gray-600 text-white p-3 rounded focus:outline-none focus:ring-2 focus:ring-blue-500 h-24" placeholder="Enter primary keywords (comma separated)"></textarea> |
|
</div> |
|
<div> |
|
<label class="block text-gray-400 mb-2">Business Description</label> |
|
<textarea class="w-full bg-gray-600 text-white p-3 rounded focus:outline-none focus:ring-2 focus:ring-blue-500 h-24" placeholder="Brief description of your business"></textarea> |
|
</div> |
|
</div> |
|
<div class="flex flex-wrap gap-4 mb-6"> |
|
<div class="flex items-center"> |
|
<input type="checkbox" id="autoSitemap" class="mr-2" checked> |
|
<label for="autoSitemap" class="text-gray-400 text-sm">Generate XML Sitemap</label> |
|
</div> |
|
<div class="flex items-center"> |
|
<input type="checkbox" id="autoRobots" class="mr-2" checked> |
|
<label for="autoRobots" class="text-gray-400 text-sm">Optimize robots.txt</label> |
|
</div> |
|
<div class="flex items-center"> |
|
<input type="checkbox" id="autoSchema" class="mr-2" checked> |
|
<label for="autoSchema" class="text-gray-400 text-sm">Add Schema Markup</label> |
|
</div> |
|
<div class="flex items-center"> |
|
<input type="checkbox" id="autoAlt" class="mr-2" checked> |
|
<label for="autoAlt" class="text-gray-400 text-sm">Optimize Image Alt Text</label> |
|
</div> |
|
</div> |
|
<button class="w-full bg-blue-600 hover:bg-blue-700 text-white py-3 px-6 rounded-lg transition"> |
|
Apply SEO Optimization |
|
</button> |
|
</div> |
|
</div> |
|
|
|
|
|
<div> |
|
<h3 class="text-lg font-semibold mb-4">SEO Score</h3> |
|
<div class="bg-gray-700 rounded-lg p-6 h-full"> |
|
<div class="seo-score bg-gradient-to-br from-blue-600 to-purple-600 rounded-full w-32 h-32 mx-auto mb-6 flex items-center justify-center"> |
|
<span class="text-4xl font-bold">87</span> |
|
</div> |
|
<div class="space-y-3"> |
|
<div class="flex justify-between"> |
|
<span class="text-gray-400">Technical SEO</span> |
|
<span class="font-bold text-green-400">95%</span> |
|
</div> |
|
<div class="w-full bg-gray-600 rounded-full h-2"> |
|
<div class="bg-green-500 h-2 rounded-full" style="width: 95%"></div> |
|
</div> |
|
<div class="flex justify-between"> |
|
<span class="text-gray-400">Content Quality</span> |
|
<span class="font-bold text-blue-400">82%</span> |
|
</div> |
|
<div class="w-full bg-gray-600 rounded-full h-2"> |
|
<div class="bg-blue-500 h-2 rounded-full" style="width: 82%"></div> |
|
</div> |
|
<div class="flex justify-between"> |
|
<span class="text-gray-400">Mobile Friendly</span> |
|
<span class="font-bold text-purple-400">91%</span> |
|
</div> |
|
<div class="w-full bg-gray-600 rounded-full h-2"> |
|
<div class="bg-purple-500 h-2 rounded-full" style="width: 91%"></div> |
|
</div> |
|
<div class="flex justify-between"> |
|
<span class="text-gray-400">Page Speed</span> |
|
<span class="font-bold text-yellow-400">76%</span> |
|
</div> |
|
<div class="w-full bg-gray-600 rounded-full h-2"> |
|
<div class="bg-yellow-500 h-2 rounded-full" style="width: 76%"></div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section class="mb-12"> |
|
<div class="bg-gray-800 rounded-xl shadow-lg overflow-hidden"> |
|
<div class="p-6 border-b border-gray-700"> |
|
<h2 class="text-xl font-bold flex items-center"> |
|
<i class="fas fa-robot mr-3 text-blue-400"></i> |
|
AI Army Deployment |
|
</h2> |
|
</div> |
|
<div class="p-6"> |
|
<div class="grid grid-cols-1 lg:grid-cols-3 gap-8"> |
|
|
|
<div class="lg:col-span-2"> |
|
<h3 class="text-lg font-semibold mb-4">Deployment Configuration</h3> |
|
<div class="bg-gray-700 rounded-lg p-6"> |
|
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-6"> |
|
<div> |
|
<label class="block text-gray-400 mb-2">Deployment Mode</label> |
|
<select class="w-full bg-gray-600 text-white p-3 rounded focus:outline-none focus:ring-2 focus:ring-blue-500"> |
|
<option>Full Deployment (10,000 AI Soldiers)</option> |
|
<option>Standard Deployment (5,000 AI Soldiers)</option> |
|
<option>Light Deployment (1,000 AI Soldiers)</option> |
|
<option>Custom Deployment</option> |
|
</select> |
|
</div> |
|
<div> |
|
<label class="block text-gray-400 mb-2">Target Environment</label> |
|
<select class="w-full bg-gray-600 text-white p-3 rounded focus:outline-none focus:ring-2 focus:ring-blue-500"> |
|
<option>Production (Live Website)</option> |
|
<option>Staging Environment</option> |
|
<option>Development Environment</option> |
|
</select> |
|
</div> |
|
</div> |
|
<div class="mb-6"> |
|
<label class="block text-gray-400 mb-2">Specialization Teams</label> |
|
<div class="grid grid-cols-2 md:grid-cols-4 gap-3"> |
|
<div class="flex items-center"> |
|
<input type="checkbox" id="htmlTeam" class="mr-2" checked> |
|
<label for="htmlTeam" class="text-gray-400 text-sm">HTML</label> |
|
</div> |
|
<div class="flex items-center"> |
|
<input type="checkbox" id="cssTeam" class="mr-2" checked> |
|
<label for="cssTeam" class="text-gray-400 text-sm">CSS</label> |
|
</div> |
|
<div class="flex items-center"> |
|
<input type="checkbox" id="jsTeam" class="mr-2" checked> |
|
<label for="jsTeam" class="text-gray-400 text-sm">JavaScript</label> |
|
</div> |
|
<div class="flex items-center"> |
|
<input type="checkbox" id="seoTeam" class="mr-2" checked> |
|
<label for="seoTeam" class="text-gray-400 text-sm">SEO</label> |
|
</div> |
|
<div class="flex items-center"> |
|
<input type="checkbox" id="securityTeam" class="mr-2" checked> |
|
<label for="securityTeam" class="text-gray-400 text-sm">Security</label> |
|
</div> |
|
<div class="flex items-center"> |
|
<input type="checkbox" id="perfTeam" class="mr-2" checked> |
|
<label for="perfTeam" class="text-gray-400 text-sm">Performance</label> |
|
</div> |
|
<div class="flex items-center"> |
|
<input type="checkbox" id="accessTeam" class="mr-2"> |
|
<label for="accessTeam" class="text-gray-400 text-sm">Accessibility</label> |
|
</div> |
|
<div class="flex items-center"> |
|
<input type="checkbox" id="mobileTeam" class="mr-2" checked> |
|
<label for="mobileTeam" class="text-gray-400 text-sm">Mobile</label> |
|
</div> |
|
</div> |
|
</div> |
|
<div class="flex items-center mb-6"> |
|
<input type="checkbox" id="autoDeploy" class="mr-2" checked> |
|
<label for="autoDeploy" class="text-gray-400">Automatically deploy fixes after analysis</label> |
|
</div> |
|
<button id="deployArmy" class="w-full bg-purple-600 hover:bg-purple-700 text-white py-3 px-6 rounded-lg transition"> |
|
Deploy AI Army |
|
</button> |
|
</div> |
|
</div> |
|
|
|
|
|
<div> |
|
<h3 class="text-lg font-semibold mb-4">Deployment Status</h3> |
|
<div class="bg-gray-700 rounded-lg p-6 h-full"> |
|
<div class="grid grid-cols-10 gap-1 mb-4" id="soldierGrid"> |
|
|
|
</div> |
|
<div class="mt-6"> |
|
<h4 class="text-gray-400 mb-2">Deployment Progress</h4> |
|
<div class="w-full bg-gray-600 rounded-full h-4"> |
|
<div id="deploymentProgress" class="progress-bar bg-blue-500 h-4 rounded-full" style="width: 0%"></div> |
|
</div> |
|
<div class="flex justify-between text-sm text-gray-400 mt-2"> |
|
<span>0%</span> |
|
<span>50%</span> |
|
<span>100%</span> |
|
</div> |
|
</div> |
|
<div class="mt-6"> |
|
<h4 class="text-gray-400 mb-2">Current Mission</h4> |
|
<div class="bg-gray-800 rounded-lg p-4"> |
|
<p class="text-sm text-gray-300" id="missionStatus">Awaiting deployment instructions...</p> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
</main> |
|
|
|
|
|
<footer class="bg-gray-800 py-6 px-4 mt-12"> |
|
<div class="container mx-auto"> |
|
<div class="flex flex-col md:flex-row justify-between items-center"> |
|
<div class="mb-4 md:mb-0"> |
|
<div class="flex items-center space-x-2"> |
|
<div class="bg-blue-500 p-1 rounded"> |
|
<i class="fas fa-robot"></i> |
|
</div> |
|
<span class="font-bold">AI Army</span> |
|
</div> |
|
<p class="text-sm text-gray-400 mt-2">Complete website automation with 10,000 AI soldiers</p> |
|
</div> |
|
<div class="flex space-x-6"> |
|
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-github"></i></a> |
|
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-twitter"></i></a> |
|
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-discord"></i></a> |
|
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-linkedin"></i></a> |
|
</div> |
|
</div> |
|
<div class="border-t border-gray-700 mt-6 pt-6 text-sm text-gray-500 text-center"> |
|
<p>© 2023 AI Army. All rights reserved. | <a href="#" class="hover:text-gray-300 transition">Privacy Policy</a> | <a href="#" class="hover:text-gray-300 transition">Terms of Service</a></p> |
|
</div> |
|
</div> |
|
</footer> |
|
|
|
<script> |
|
|
|
const soldierGrid = document.getElementById('soldierGrid'); |
|
const totalSoldiers = 100; |
|
|
|
for (let i = 0; i < totalSoldiers; i++) { |
|
const soldier = document.createElement('div'); |
|
soldier.className = 'w-2 h-2 rounded-full bg-gray-600'; |
|
soldier.title = `AI Soldier #${i+1} - Ready`; |
|
soldier.dataset.status = 'ready'; |
|
soldierGrid.appendChild(soldier); |
|
} |
|
|
|
|
|
document.getElementById('checkDomain').addEventListener('click', function() { |
|
const domainName = document.getElementById('domainInput').value.trim(); |
|
const extension = document.getElementById('domainExtension').value; |
|
|
|
if (domainName) { |
|
document.getElementById('selectedDomain').textContent = domainName + extension; |
|
document.getElementById('domainResults').classList.remove('hidden'); |
|
|
|
|
|
setTimeout(() => { |
|
this.textContent = "Available!"; |
|
this.classList.remove('bg-blue-600'); |
|
this.classList.add('bg-green-600'); |
|
|
|
setTimeout(() => { |
|
this.textContent = "Check"; |
|
this.classList.remove('bg-green-600'); |
|
this.classList.add('bg-blue-600'); |
|
}, 2000); |
|
}, 1000); |
|
} |
|
}); |
|
|
|
|
|
document.getElementById('registerDomain').addEventListener('click', function() { |
|
const domain = document.getElementById('selectedDomain').textContent; |
|
const missionStatus = document.getElementById('missionStatus'); |
|
|
|
missionStatus.textContent = `Registering ${domain} and configuring SSL...`; |
|
|
|
|
|
setTimeout(() => { |
|
missionStatus.textContent = "Domain registered successfully! Configuring DNS..."; |
|
|
|
setTimeout(() => { |
|
missionStatus.textContent = "DNS configured. Setting up SSL certificate..."; |
|
|
|
setTimeout(() => { |
|
missionStatus.textContent = "SSL certificate installed. Ready for deployment!"; |
|
this.textContent = "Deployment Complete!"; |
|
this.classList.remove('bg-green-600'); |
|
this.classList.add('bg-purple-600'); |
|
|
|
|
|
document.getElementById('deployArmy').disabled = false; |
|
}, 1500); |
|
}, 1500); |
|
}, 1500); |
|
}); |
|
|
|
|
|
document.getElementById('deployArmy').addEventListener('click', function() { |
|
let deployed = 0; |
|
const soldiers = document.querySelectorAll('#soldierGrid div'); |
|
const progressBar = document.getElementById('deploymentProgress'); |
|
const missionStatus = document.getElementById('missionStatus'); |
|
|
|
this.disabled = true; |
|
missionStatus.textContent = "Initializing deployment sequence..."; |
|
|
|
const deploymentInterval = setInterval(() => { |
|
if (deployed < soldiers.length) { |
|
|
|
const batchSize = Math.min(Math.floor(Math.random() * 5) + 1, soldiers.length - deployed); |
|
|
|
for (let i = 0; i < batchSize; i++) { |
|
if (deployed < soldiers.length) { |
|
soldiers[deployed].className = 'w-2 h-2 rounded-full bg-blue-500 soldier-active'; |
|
soldiers[deployed].title = `AI Soldier #${deployed+1} - Active`; |
|
soldiers[deployed].dataset.status = 'active'; |
|
deployed++; |
|
} |
|
} |
|
|
|
|
|
const progress = Math.floor((deployed / soldiers.length) * 100); |
|
progressBar.style.width = `${progress}%`; |
|
|
|
|
|
if (progress < 30) { |
|
missionStatus.textContent = `Deploying soldiers... ${progress}% complete`; |
|
} else if (progress < 70) { |
|
missionStatus.textContent = `Scanning website structure... ${progress}% complete`; |
|
} else if (progress < 100) { |
|
missionStatus.textContent = `Identifying issues... ${progress}% complete`; |
|
} |
|
} else { |
|
clearInterval(deploymentInterval); |
|
missionStatus.textContent = "Mission complete! 10,000 AI soldiers deployed and analysis finished."; |
|
this.textContent = "Deployment Complete"; |
|
|
|
|
|
setTimeout(() => { |
|
const notification = document.createElement('div'); |
|
notification.className = 'fixed bottom-4 right-4 bg-green-600 text-white px-6 py-3 rounded-lg shadow-lg flex items-center'; |
|
notification.innerHTML = ` |
|
<i class="fas fa-check-circle mr-2"></i> |
|
<span>AI Army successfully deployed and optimized your website!</span> |
|
`; |
|
document.body.appendChild(notification); |
|
|
|
setTimeout(() => { |
|
notification.remove(); |
|
}, 5000); |
|
}, 1000); |
|
} |
|
}, 100); |
|
}); |
|
|
|
|
|
const seoScoreElement = document.querySelector('.seo-score'); |
|
let score = 0; |
|
const targetScore = 87; |
|
const scoreInterval = setInterval(() => { |
|
if (score < targetScore) { |
|
score++; |
|
seoScoreElement.querySelector('span').textContent = score; |
|
|
|
|
|
if (score < 50) { |
|
seoScoreElement.classList.remove('from-blue-600', 'to-purple-600'); |
|
seoScoreElement.classList.add('from-red-600', 'to-yellow-600'); |
|
} else if (score < 80) { |
|
seoScoreElement.classList.remove('from-red-600', 'to-yellow-600'); |
|
seoScoreElement.classList.add('from-yellow-600', 'to-orange-600'); |
|
} else { |
|
seoScoreElement.classList.remove('from-yellow-600', 'to-orange-600'); |
|
seoScoreElement.classList.add('from-blue-600', 'to-purple-600'); |
|
} |
|
} else { |
|
clearInterval(scoreInterval); |
|
} |
|
}, 30); |
|
</script> |
|
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=docto41/corriger-et-modifier-code" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
|
</html> |