Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>CryptoShield AI - AI-Powered Crypto Insurance</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="components/navbar.js"></script> | |
| <script src="components/footer.js"></script> | |
| </head> | |
| <body class="bg-gray-50"> | |
| <custom-navbar></custom-navbar> | |
| <main class="container mx-auto px-4 py-12"> | |
| <!-- Hero Section --> | |
| <section class="text-center py-20"> | |
| <h1 class="text-5xl font-bold text-gray-900 mb-6">Protect Your Crypto Assets with AI</h1> | |
| <p class="text-xl text-gray-600 max-w-2xl mx-auto mb-10"> | |
| CryptoShield AI uses advanced machine learning to detect threats and insure your digital assets against hacks, scams, and volatility. | |
| </p> | |
| <div class="flex justify-center gap-4"> | |
| <a href="/dashboard.html" class="bg-indigo-600 hover:bg-indigo-700 text-white font-bold py-3 px-8 rounded-lg transition duration-200"> | |
| Get Protected | |
| </a> | |
| <a href="/how-it-works.html" class="bg-white hover:bg-gray-100 text-gray-800 font-bold py-3 px-8 rounded-lg border border-gray-300 transition duration-200"> | |
| Learn More | |
| </a> | |
| </div> | |
| </section> | |
| <!-- Features Grid --> | |
| <section class="py-16"> | |
| <h2 class="text-3xl font-bold text-center mb-16">Why Choose CryptoShield AI</h2> | |
| <div class="grid md:grid-cols-3 gap-8"> | |
| <!-- Feature 1 --> | |
| <div class="bg-white p-8 rounded-xl shadow-sm hover:shadow-md transition duration-200"> | |
| <div class="w-14 h-14 bg-indigo-100 rounded-lg flex items-center justify-center mb-6"> | |
| <i data-feather="shield" class="text-indigo-600 w-6 h-6"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">AI-Powered Protection</h3> | |
| <p class="text-gray-600">Our proprietary AI monitors your wallet 24/7 for suspicious activity and potential threats.</p> | |
| </div> | |
| <!-- Feature 2 --> | |
| <div class="bg-white p-8 rounded-xl shadow-sm hover:shadow-md transition duration-200"> | |
| <div class="w-14 h-14 bg-indigo-100 rounded-lg flex items-center justify-center mb-6"> | |
| <i data-feather="dollar-sign" class="text-indigo-600 w-6 h-6"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Instant Claims</h3> | |
| <p class="text-gray-600">Get compensated within hours if your assets are compromised, with no lengthy paperwork.</p> | |
| </div> | |
| <!-- Feature 3 --> | |
| <div class="bg-white p-8 rounded-xl shadow-sm hover:shadow-md transition duration-200"> | |
| <div class="w-14 h-14 bg-indigo-100 rounded-lg flex items-center justify-center mb-6"> | |
| <i data-feather="trending-up" class="text-indigo-600 w-6 h-6"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Volatility Coverage</h3> | |
| <p class="text-gray-600">Protect against sudden market crashes with our innovative price stabilization coverage.</p> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Testimonials --> | |
| <section class="py-16 bg-indigo-50 rounded-2xl px-8"> | |
| <h2 class="text-3xl font-bold text-center mb-16">Trusted by Crypto Investors</h2> | |
| <div class="grid md:grid-cols-2 gap-8 max-w-5xl mx-auto"> | |
| <div class="bg-white p-8 rounded-xl shadow-sm"> | |
| <div class="flex items-center mb-4"> | |
| <img src="http://static.photos/people/200x200/1" alt="User" class="w-12 h-12 rounded-full mr-4"> | |
| <div> | |
| <h4 class="font-bold">Alex M.</h4> | |
| <p class="text-gray-500 text-sm">ETH Investor</p> | |
| </div> | |
| </div> | |
| <p class="text-gray-600">"When my wallet was compromised, CryptoShield AI detected it immediately and processed my claim within 2 hours. Lifesaver!"</p> | |
| </div> | |
| <div class="bg-white p-8 rounded-xl shadow-sm"> | |
| <div class="flex items-center mb-4"> | |
| <img src="http://static.photos/people/200x200/2" alt="User" class="w-12 h-12 rounded-full mr-4"> | |
| <div> | |
| <h4 class="font-bold">Sarah K.</h4> | |
| <p class="text-gray-500 text-sm">DeFi User</p> | |
| </div> | |
| </div> | |
| <p class="text-gray-600">"The AI alerted me to a suspicious smart contract before I interacted with it. Saved me from what would have been a $50k mistake."</p> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- CTA --> | |
| <section class="py-20 text-center"> | |
| <h2 class="text-3xl font-bold mb-6">Ready to Secure Your Crypto?</h2> | |
| <p class="text-xl text-gray-600 max-w-2xl mx-auto mb-10"> | |
| Join thousands of investors who sleep better knowing their assets are protected. | |
| </p> | |
| <a href="/signup.html" class="bg-indigo-600 hover:bg-indigo-700 text-white font-bold py-3 px-8 rounded-lg transition duration-200 inline-block"> | |
| Get Started - It's Free | |
| </a> | |
| </section> | |
| </main> | |
| <custom-footer></custom-footer> | |
| <script> | |
| feather.replace(); | |
| </script> | |
| <script src="script.js"></script> | |
| <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script> | |
| </body> | |
| </html> |