|
|
<!DOCTYPE html> |
|
|
<html lang="en"> |
|
|
<head> |
|
|
<meta charset="UTF-8"> |
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
|
<title>ProposalCraft Pro Wizard</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> |
|
|
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.net.min.js"></script> |
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script> |
|
|
</head> |
|
|
<body class="min-h-screen bg-gray-50"> |
|
|
<custom-navbar></custom-navbar> |
|
|
|
|
|
<div id="hero" class="relative overflow-hidden h-screen flex items-center justify-center"> |
|
|
<div class="absolute inset-0 z-0" id="vanta-bg"></div> |
|
|
<div class="relative z-10 text-center px-4"> |
|
|
<h1 class="text-5xl md:text-7xl font-bold text-white mb-6">Craft Proposals <br>Like a Wizard</h1> |
|
|
<p class="text-xl text-white mb-8 max-w-2xl mx-auto">Magically transform your ideas into professional proposals with our AI-powered toolkit.</p> |
|
|
<div class="flex gap-4 justify-center"> |
|
|
<a href="/create.html" class="bg-purple-600 hover:bg-purple-700 text-white px-8 py-3 rounded-lg font-medium transition-all shadow-lg flex items-center gap-2"> |
|
|
<i data-feather="wand"></i> Start Crafting |
|
|
</a> |
|
|
<a href="#features" class="bg-white hover:bg-gray-100 text-purple-600 px-8 py-3 rounded-lg font-medium transition-all shadow-lg"> |
|
|
Learn More |
|
|
</a> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<section id="features" class="py-20 px-4"> |
|
|
<div class="max-w-6xl mx-auto"> |
|
|
<h2 class="text-3xl font-bold text-center mb-16">Your Proposal Toolkit</h2> |
|
|
<div class="grid md:grid-cols-3 gap-8"> |
|
|
<div class="bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition-shadow"> |
|
|
<div class="w-16 h-16 bg-purple-100 rounded-lg flex items-center justify-center mb-6"> |
|
|
<i data-feather="edit-3" class="text-purple-600 w-8 h-8"></i> |
|
|
</div> |
|
|
<h3 class="text-xl font-bold mb-3">AI-Powered Writing</h3> |
|
|
<p class="text-gray-600">Generate professional content with our smart writing assistant that learns your style.</p> |
|
|
</div> |
|
|
<div class="bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition-shadow"> |
|
|
<div class="w-16 h-16 bg-blue-100 rounded-lg flex items-center justify-center mb-6"> |
|
|
<i data-feather="pie-chart" class="text-blue-600 w-8 h-8"></i> |
|
|
</div> |
|
|
<h3 class="text-xl font-bold mb-3">Data Visualization</h3> |
|
|
<p class="text-gray-600">Transform numbers into compelling charts and graphs with one click.</p> |
|
|
</div> |
|
|
<div class="bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition-shadow"> |
|
|
<div class="w-16 h-16 bg-green-100 rounded-lg flex items-center justify-center mb-6"> |
|
|
<i data-feather="layers" class="text-green-600 w-8 h-8"></i> |
|
|
</div> |
|
|
<h3 class="text-xl font-bold mb-3">Templates Galore</h3> |
|
|
<p class="text-gray-600">Choose from 100+ professionally designed templates for any industry.</p> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</section> |
|
|
|
|
|
<custom-footer></custom-footer> |
|
|
|
|
|
<script src="components/navbar.js"></script> |
|
|
<script src="components/footer.js"></script> |
|
|
<script src="script.js"></script> |
|
|
<script> |
|
|
feather.replace(); |
|
|
VANTA.NET({ |
|
|
el: "#vanta-bg", |
|
|
color: 0x7c3aed, |
|
|
backgroundColor: 0xf9fafb, |
|
|
points: 12, |
|
|
maxDistance: 20, |
|
|
spacing: 15 |
|
|
}); |
|
|
</script> |
|
|
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script> |
|
|
</body> |
|
|
</html> |