agard's picture
you are best web develover an i want that you change the next footer to be best elegant professionnels convertibles for my web site newwrit.com
a5e596f verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ContentCashflow Automaton</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
<style>
#vanta-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
}
.gradient-text {
background: linear-gradient(90deg, #3b82f6, #8b5cf6);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
</style>
</head>
<body class="min-h-screen bg-gray-900 text-white">
<div id="vanta-bg"></div>
<div class="container mx-auto px-4 py-16 relative z-10">
<header class="flex justify-between items-center mb-20">
<div class="flex items-center">
<i data-feather="zap" class="text-blue-400 mr-2"></i>
<span class="text-xl font-bold gradient-text">ContentCashflow</span>
</div>
<nav class="hidden md:block">
<ul class="flex space-x-8">
<li><a href="#" class="hover:text-blue-400 transition">Workflow</a></li>
<li><a href="#" class="hover:text-blue-400 transition">Monetization</a></li>
<li><a href="#" class="hover:text-blue-400 transition">Compliance</a></li>
<li><a href="#" class="hover:text-blue-400 transition">Dashboard</a></li>
</ul>
</nav>
<button class="md:hidden">
<i data-feather="menu"></i>
</button>
</header>
<main class="max-w-4xl mx-auto text-center">
<h1 class="text-5xl md:text-7xl font-bold mb-6 leading-tight">
Automate Your Content <span class="gradient-text">Revenue</span>
</h1>
<p class="text-xl md:text-2xl text-gray-300 mb-12 max-w-3xl mx-auto">
Turn AI content into $5 in week 1 with our battle-tested automation framework. Zero infrastructure costs, maximum compliance.
</p>
<div class="flex flex-col sm:flex-row justify-center gap-4 mb-20">
<button class="bg-blue-600 hover:bg-blue-700 text-white px-8 py-4 rounded-lg font-medium transition transform hover:scale-105">
Get the Blueprint
</button>
<button class="bg-transparent border-2 border-blue-400 text-blue-400 hover:bg-blue-900/30 px-8 py-4 rounded-lg font-medium transition transform hover:scale-105">
See Case Study
</button>
</div>
<div class="grid md:grid-cols-3 gap-8 mb-20">
<div class="bg-gray-800/50 backdrop-blur-sm p-6 rounded-xl border border-gray-700 hover:border-blue-400 transition">
<div class="w-12 h-12 bg-blue-900/30 rounded-lg flex items-center justify-center mb-4">
<i data-feather="cpu" class="text-blue-400"></i>
</div>
<h3 class="text-xl font-bold mb-2">AI-Powered Content</h3>
<p class="text-gray-400">Mistral-generated drafts with human quality gates</p>
</div>
<div class="bg-gray-800/50 backdrop-blur-sm p-6 rounded-xl border border-gray-700 hover:border-purple-400 transition">
<div class="w-12 h-12 bg-purple-900/30 rounded-lg flex items-center justify-center mb-4">
<i data-feather="dollar-sign" class="text-purple-400"></i>
</div>
<h3 class="text-xl font-bold mb-2">Week-1 Revenue</h3>
<p class="text-gray-400">Proven path to $5 through micro-niche targeting</p>
</div>
<div class="bg-gray-800/50 backdrop-blur-sm p-6 rounded-xl border border-gray-700 hover:border-green-400 transition">
<div class="w-12 h-12 bg-green-900/30 rounded-lg flex items-center justify-center mb-4">
<i data-feather="shield" class="text-green-400"></i>
</div>
<h3 class="text-xl font-bold mb-2">Full Compliance</h3>
<p class="text-gray-400">Pre-configured for Google, Meta & Amazon policies</p>
</div>
</div>
</main>
</div>
<script>
VANTA.GLOBE({
el: "#vanta-bg",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
color: 0x3b82f6,
backgroundColor: 0x111827,
size: 0.8
});
feather.replace();
// Replace footer variables
document.addEventListener('DOMContentLoaded', function() {
const currentYear = new Date().getFullYear();
document.body.innerHTML = document.body.innerHTML
.replace(/%year%/g, currentYear)
.replace(/%site%/g, 'NewWrit')
.replace(/%url%/g, window.location.hostname);
});
</script>
</body>
</html>