| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>PitchCraft Pro | AI-Powered Pitch Generator</title> |
| <link rel="icon" href="https://static.photos/technology/32x32/42"> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <script> |
| tailwind.config = { |
| theme: { |
| extend: { |
| colors: { |
| primary: '#6366f1', |
| secondary: '#10b981', |
| } |
| } |
| } |
| } |
| </script> |
| <script src="https://unpkg.com/feather-icons"></script> |
| <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.net.min.js"></script> |
| <style> |
| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap'); |
| body { |
| font-family: 'Inter', sans-serif; |
| } |
| #vanta-bg { |
| position: fixed; |
| top: 0; |
| left: 0; |
| width: 100%; |
| height: 100%; |
| z-index: -1; |
| opacity: 0.7; |
| } |
| .glass-card { |
| backdrop-filter: blur(16px) saturate(180%); |
| -webkit-backdrop-filter: blur(16px) saturate(180%); |
| background-color: rgba(255, 255, 255, 0.85); |
| border-radius: 12px; |
| border: 1px solid rgba(209, 213, 219, 0.3); |
| } |
| .input-highlight { |
| transition: all 0.3s ease; |
| } |
| .input-highlight:focus { |
| box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.3); |
| border-color: #6366f1; |
| } |
| .btn-glow:hover { |
| box-shadow: 0 0 15px rgba(99, 102, 241, 0.5); |
| } |
| </style> |
| </head> |
| <body class="min-h-screen bg-gray-50"> |
| <div id="vanta-bg"></div> |
| |
| |
| <nav class="bg-white shadow-sm"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="flex justify-between h-16"> |
| <div class="flex items-center"> |
| <div class="flex-shrink-0 flex items-center"> |
| <i data-feather="zap" class="text-primary h-6 w-6"></i> |
| <span class="ml-2 text-xl font-bold text-gray-900">PitchCraft Pro</span> |
| </div> |
| </div> |
| <div class="hidden sm:ml-6 sm:flex sm:items-center space-x-8"> |
| <a href="#" class="text-gray-900 inline-flex items-center px-1 pt-1 border-b-2 border-primary text-sm font-medium"> |
| Generator |
| </a> |
| <a href="#" class="text-gray-500 hover:text-gray-900 inline-flex items-center px-1 pt-1 text-sm font-medium"> |
| Dashboard |
| </a> |
| <a href="#" class="text-gray-500 hover:text-gray-900 inline-flex items-center px-1 pt-1 text-sm font-medium"> |
| Pricing |
| </a> |
| <button class="bg-primary hover:bg-indigo-600 text-white px-4 py-2 rounded-md text-sm font-medium transition duration-150 ease-in-out btn-glow"> |
| Sign In |
| </button> |
| </div> |
| </div> |
| </div> |
| </nav> |
|
|
| |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12 md:py-24"> |
| <div class="text-center"> |
| <h1 class="text-4xl md:text-6xl font-bold text-gray-900 leading-tight"> |
| Craft Perfect Pitches <br> |
| <span class="text-primary">Powered by AI</span> |
| </h1> |
| <p class="mt-6 text-xl text-gray-600 max-w-3xl mx-auto"> |
| Transform your startup ideas into compelling investor pitches with our AI-powered platform. Get pitch-perfect results in seconds. |
| </p> |
| <div class="mt-8"> |
| <button class="bg-primary hover:bg-indigo-600 text-white px-8 py-4 rounded-lg text-lg font-semibold transition duration-150 ease-in-out btn-glow"> |
| Generate Your Pitch Now |
| <i data-feather="arrow-right" class="ml-2 w-5 h-5 inline"></i> |
| </button> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12"> |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> |
| |
| <div class="glass-card p-6 rounded-xl shadow-sm"> |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-primary bg-opacity-10 text-primary"> |
| <i data-feather="edit-3"></i> |
| </div> |
| <h3 class="mt-4 text-lg font-medium text-gray-900">Smart Generation</h3> |
| <p class="mt-2 text-gray-600"> |
| Our AI analyzes your inputs to create structured, persuasive pitches tailored to your audience. |
| </p> |
| </div> |
| |
| |
| <div class="glass-card p-6 rounded-xl shadow-sm"> |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-secondary bg-opacity-10 text-secondary"> |
| <i data-feather="database"></i> |
| </div> |
| <h3 class="mt-4 text-lg font-medium text-gray-900">Pitch Library</h3> |
| <p class="mt-2 text-gray-600"> |
| Save, organize, and revisit all your generated pitches in one convenient dashboard. |
| </p> |
| </div> |
| |
| |
| <div class="glass-card p-6 rounded-xl shadow-sm"> |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-yellow-500 bg-opacity-10 text-yellow-500"> |
| <i data-feather="download"></i> |
| </div> |
| <h3 class="mt-4 text-lg font-medium text-gray-900">Export Options</h3> |
| <p class="mt-2 text-gray-600"> |
| Download your pitches as PDFs or text files to share with your team or investors. |
| </p> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="bg-primary bg-opacity-5 py-16"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center"> |
| <h2 class="text-3xl font-bold text-gray-900">Ready to transform your ideas?</h2> |
| <p class="mt-4 text-xl text-gray-600 max-w-3xl mx-auto"> |
| Join thousands of entrepreneurs who've crafted winning pitches with PitchCraft Pro. |
| </p> |
| <div class="mt-8"> |
| <button class="bg-primary hover:bg-indigo-600 text-white px-8 py-3 rounded-lg text-lg font-semibold transition duration-150 ease-in-out btn-glow"> |
| Get Started - It's Free |
| </button> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <footer class="bg-white mt-12"> |
| <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8"> |
| <div class="grid grid-cols-2 md:grid-cols-4 gap-8"> |
| <div> |
| <h3 class="text-sm font-semibold text-gray-500 tracking-wider uppercase">Product</h3> |
| <div class="mt-4 space-y-4"> |
| <a href="#" class="text-base text-gray-600 hover:text-primary">Features</a><br> |
| <a href="#" class="text-base text-gray-600 hover:text-primary">Pricing</a><br> |
| <a href="#" class="text-base text-gray-600 hover:text-primary">API</a> |
| </div> |
| </div> |
| <div> |
| <h3 class="text-sm font-semibold text-gray-500 tracking-wider uppercase">Company</h3> |
| <div class="mt-4 space-y-4"> |
| <a href="#" class="text-base text-gray-600 hover:text-primary">About</a><br> |
| <a href="#" class="text-base text-gray-600 hover:text-primary">Blog</a><br> |
| <a href="#" class="text-base text-gray-600 hover:text-primary">Careers</a> |
| </div> |
| </div> |
| <div> |
| <h3 class="text-sm font-semibold text-gray-500 tracking-wider uppercase">Legal</h3> |
| <div class="mt-4 space-y-4"> |
| <a href="#" class="text-base text-gray-600 hover:text-primary">Privacy</a><br> |
| <a href="#" class="text-base text-gray-600 hover:text-primary">Terms</a><br> |
| <a href="#" class="text-base text-gray-600 hover:text-primary">Security</a> |
| </div> |
| </div> |
| <div> |
| <h3 class="text-sm font-semibold text-gray-500 tracking-wider uppercase">Connect</h3> |
| <div class="mt-4 flex space-x-6"> |
| <a href="#" class="text-gray-600 hover:text-primary"> |
| <i data-feather="twitter"></i> |
| </a> |
| <a href="#" class="text-gray-600 hover:text-primary"> |
| <i data-feather="linkedin"></i> |
| </a> |
| <a href="#" class="text-gray-600 hover:text-primary"> |
| <i data-feather="github"></i> |
| </a> |
| </div> |
| </div> |
| </div> |
| <div class="mt-12 border-t border-gray-200 pt-8 flex justify-between"> |
| <p class="text-base text-gray-500">© 2023 PitchCraft Pro. All rights reserved.</p> |
| <div class="flex space-x-6"> |
| <a href="#" class="text-gray-500 hover:text-primary"> |
| <i data-feather="globe" class="h-5 w-5"></i> |
| </a> |
| <a href="#" class="text-gray-500 hover:text-primary"> |
| <i data-feather="mail" class="h-5 w-5"></i> |
| </a> |
| </div> |
| </div> |
| </div> |
| </footer> |
|
|
| <script> |
| |
| VANTA.NET({ |
| el: "#vanta-bg", |
| color: 0x6366f1, |
| backgroundColor: 0xf8fafc, |
| points: 12, |
| maxDistance: 22, |
| spacing: 18 |
| }); |
| |
| |
| feather.replace(); |
| |
| |
| document.querySelector('.btn-glow').addEventListener('mouseover', function() { |
| anime({ |
| targets: this, |
| scale: 1.05, |
| duration: 300, |
| easing: 'easeInOutQuad' |
| }); |
| }); |
| |
| document.querySelector('.btn-glow').addEventListener('mouseout', function() { |
| anime({ |
| targets: this, |
| scale: 1, |
| duration: 300, |
| easing: 'easeInOutQuad' |
| }); |
| }); |
| </script> |
| </body> |
| </html> |
|
|