Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>LucidAI Clone</title> | |
| <link rel="stylesheet" href="style.css"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| <script src="components/navbar.js"></script> | |
| <script src="components/footer.js"></script> | |
| </head> | |
| <body class="bg-gray-50 text-gray-800"> | |
| <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 mb-6">AI-powered research assistant</h1> | |
| <p class="text-xl text-gray-600 max-w-2xl mx-auto mb-10"> | |
| Unlock insights from research papers instantly with our AI-powered assistant. | |
| </p> | |
| <div class="flex justify-center gap-4"> | |
| <a href="/signup" class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-lg font-medium transition-colors"> | |
| Get Started | |
| </a> | |
| <a href="/features" class="border border-gray-300 hover:bg-gray-100 px-6 py-3 rounded-lg font-medium transition-colors"> | |
| Learn More | |
| </a> | |
| </div> | |
| </section> | |
| <!-- Demo Section --> | |
| <section class="my-20"> | |
| <div class="bg-white rounded-xl shadow-lg overflow-hidden"> | |
| <div class="p-6 border-b border-gray-200"> | |
| <div class="flex space-x-2"> | |
| <div class="w-3 h-3 rounded-full bg-red-500"></div> | |
| <div class="w-3 h-3 rounded-full bg-yellow-500"></div> | |
| <div class="w-3 h-3 rounded-full bg-green-500"></div> | |
| </div> | |
| </div> | |
| <div class="p-6 bg-gray-900 text-white"> | |
| <div class="flex items-center mb-4"> | |
| <i data-feather="search" class="mr-2"></i> | |
| <span class="font-mono">Search research papers...</span> | |
| </div> | |
| <div class="bg-gray-800 rounded-lg p-6"> | |
| <div class="animate-pulse"> | |
| <div class="h-4 bg-gray-700 rounded mb-3 w-3/4"></div> | |
| <div class="h-4 bg-gray-700 rounded mb-3 w-1/2"></div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Features Section --> | |
| <section class="my-20"> | |
| <h2 class="text-3xl font-bold text-center mb-16">Key Features</h2> | |
| <div class="grid md:grid-cols-3 gap-8"> | |
| <div class="bg-white p-8 rounded-xl shadow-md"> | |
| <i data-feather="search" class="w-10 h-10 text-blue-600 mb-4"></i> | |
| <h3 class="text-xl font-bold mb-3">Smart Search</h3> | |
| <p class="text-gray-600">Find relevant papers instantly with AI-powered semantic search.</p> | |
| </div> | |
| <div class="bg-white p-8 rounded-xl shadow-md"> | |
| <i data-feather="book-open" class="w-10 h-10 text-blue-600 mb-4"></i> | |
| <h3 class="text-xl font-bold mb-3">Summarization</h3> | |
| <p class="text-gray-600">Get concise summaries of complex research papers in seconds.</p> | |
| </div> | |
| <div class="bg-white p-8 rounded-xl shadow-md"> | |
| <i data-feather="lightbulb" class="w-10 h-10 text-blue-600 mb-4"></i> | |
| <h3 class="text-xl font-bold mb-3">Insight Extraction</h3> | |
| <p class="text-gray-600">Extract key insights and findings without reading the full paper.</p> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Testimonials --> | |
| <section class="my-20"> | |
| <h2 class="text-3xl font-bold text-center mb-16">Trusted by Researchers</h2> | |
| <div class="grid md:grid-cols-2 gap-8"> | |
| <div class="bg-white p-8 rounded-xl shadow-md"> | |
| <div class="flex items-center mb-4"> | |
| <div class="w-12 h-12 rounded-full bg-gray-300 mr-4"></div> | |
| <div> | |
| <h4 class="font-bold">Dr. Sarah Johnson</h4> | |
| <p class="text-gray-600">Neuroscience Researcher</p> | |
| </div> | |
| </div> | |
| <p class="text-gray-700">"LucidAI has transformed how I conduct literature reviews, saving me hours of reading time."</p> | |
| </div> | |
| <div class="bg-white p-8 rounded-xl shadow-md"> | |
| <div class="flex items-center mb-4"> | |
| <div class="w-12 h-12 rounded-full bg-gray-300 mr-4"></div> | |
| <div> | |
| <h4 class="font-bold">Prof. Michael Chen</h4> | |
| <p class="text-gray-600">Computer Science</p> | |
| </div> | |
| </div> | |
| <p class="text-gray-700">"The AI insights help me stay on top of the latest developments in my field with minimal effort."</p> | |
| </div> | |
| </div> | |
| </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> |