| <!DOCTYPE html> |
| <html lang="en" class="dark"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>AstralAGI Clone - AI-Powered Cosmic Exploration</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/hero.js"></script> |
| <script src="components/features.js"></script> |
| <script src="components/demo.js"></script> |
| <script src="components/pricing.js"></script> |
| <script src="components/footer.js"></script> |
| </head> |
| <body class="bg-gray-900 text-gray-100 min-h-screen"> |
| <custom-navbar></custom-navbar> |
| <custom-hero></custom-hero> |
| <custom-features></custom-features> |
| <custom-demo></custom-demo> |
| <custom-pricing></custom-pricing> |
| <custom-footer></custom-footer> |
| <script src="script.js"></script> |
| <script> |
| feather.replace(); |
| tailwind.config = { |
| darkMode: 'class', |
| theme: { |
| extend: { |
| colors: { |
| primary: { |
| 500: '#6366f1', |
| }, |
| secondary: { |
| 500: '#8b5cf6', |
| } |
| } |
| } |
| } |
| } |
| </script> |
| <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script> |
| </body> |
| </html> |