| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>CureLens AI - Clinical Decision Support</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 min-h-screen flex flex-col"> |
| <custom-navbar></custom-navbar> |
| |
| <main class="flex-grow container mx-auto px-4 py-8"> |
| <section class="hero bg-white rounded-xl shadow-md p-8 mb-8"> |
| <div class="flex flex-col md:flex-row items-center"> |
| <div class="md:w-1/2 mb-6 md:mb-0"> |
| <h1 class="text-4xl font-bold text-gray-800 mb-4">CureLens AI</h1> |
| <p class="text-xl text-gray-600 mb-6">Clinical decision support powered by AI to enhance patient safety</p> |
| <div class="flex space-x-4"> |
| <a href="login.html" class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-lg font-medium transition duration-300">Get Started</a> |
| <a href="about.html" class="border border-blue-600 text-blue-600 hover:bg-blue-50 px-6 py-3 rounded-lg font-medium transition duration-300">Learn More</a> |
| </div> |
| </div> |
| <div class="md:w-1/2"> |
| <div class="bg-blue-50 rounded-xl p-6"> |
| <img src="http://static.photos/medical/1024x576/42" alt="Medical AI" class="rounded-lg shadow-sm"> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| <section class="features mb-12"> |
| <h2 class="text-3xl font-bold text-center text-gray-800 mb-8">Key Features</h2> |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-6"> |
| <div class="feature-card bg-white p-6 rounded-xl shadow-sm hover:shadow-md transition duration-300"> |
| <div class="w-12 h-12 bg-blue-100 rounded-full flex items-center justify-center mb-4"> |
| <i data-feather="activity" class="text-blue-600"></i> |
| </div> |
| <h3 class="text-xl font-semibold mb-2">Drug Interaction Checker</h3> |
| <p class="text-gray-600">Identify potential harmful interactions between medications with AI-powered analysis.</p> |
| </div> |
| <div class="feature-card bg-white p-6 rounded-xl shadow-sm hover:shadow-md transition duration-300"> |
| <div class="w-12 h-12 bg-green-100 rounded-full flex items-center justify-center mb-4"> |
| <i data-feather="heart" class="text-green-600"></i> |
| </div> |
| <h3 class="text-xl font-semibold mb-2">Patient Risk Assessment</h3> |
| <p class="text-gray-600">Evaluate medication risks specific to individual patient profiles and conditions.</p> |
| </div> |
| <div class="feature-card bg-white p-6 rounded-xl shadow-sm hover:shadow-md transition duration-300"> |
| <div class="w-12 h-12 bg-purple-100 rounded-full flex items-center justify-center mb-4"> |
| <i data-feather="shield" class="text-purple-600"></i> |
| </div> |
| <h3 class="text-xl font-semibold mb-2">Safe Alternative Finder</h3> |
| <p class="text-gray-600">Get personalized recommendations for safer medication alternatives.</p> |
| </div> |
| </div> |
| </section> |
|
|
| <section class="cta bg-gradient-to-r from-blue-600 to-blue-800 rounded-xl text-white p-8 mb-12"> |
| <div class="flex flex-col md:flex-row items-center justify-between"> |
| <div class="md:w-2/3 mb-6 md:mb-0"> |
| <h2 class="text-2xl font-bold mb-2">Ready to enhance your clinical decisions?</h2> |
| <p class="opacity-90">Join hundreds of healthcare professionals using CureLens AI to improve patient outcomes.</p> |
| </div> |
| <a href="register.html" class="bg-white text-blue-600 hover:bg-gray-100 px-6 py-3 rounded-lg font-medium transition duration-300">Create Free Account</a> |
| </div> |
| </section> |
| </main> |
|
|
| <custom-footer></custom-footer> |
| <script> |
| feather.replace(); |
| </script> |
| <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script> |
| </body> |
| </html> |