Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>About Us - MediHelp</title> | |
| <link rel="stylesheet" href="style.css"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet"> | |
| </head> | |
| <body class="font-sans"> | |
| <!-- Sidebar Component --> | |
| <custom-sidebar></custom-sidebar> | |
| <!-- Header Component --> | |
| <custom-header></custom-header> | |
| <!-- About Section --> | |
| <section class="py-16 px-4"> | |
| <div class="max-w-4xl mx-auto"> | |
| <h1 class="text-3xl md:text-4xl font-bold text-center mb-8">About MediHelp</h1> | |
| <p class="text-gray-600 text-center mb-12 max-w-2xl mx-auto">We're on a mission to make healthcare more accessible and manageable for everyone</p> | |
| <div class="bg-white rounded-xl shadow-md p-6 mb-12"> | |
| <h2 class="text-2xl font-semibold mb-4">Our Story</h2> | |
| <p class="text-gray-700 mb-4">Founded in 2023, MediHelp was born out of a desire to bridge the gap between patients and healthcare providers. Our team of passionate developers, designers, and healthcare professionals came together to create a platform that empowers patients to take control of their health journey.</p> | |
| <p class="text-gray-700">We believe that everyone deserves access to quality healthcare tools and information, regardless of their location or circumstances. That's why we've built a comprehensive platform that brings essential healthcare services directly to your fingertips.</p> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-8 mb-12"> | |
| <div class="bg-blue-50 rounded-xl p-6"> | |
| <h3 class="text-xl font-semibold mb-3">Our Mission</h3> | |
| <p class="text-gray-700">To empower patients with the tools and information they need to manage their health effectively and connect with healthcare professionals seamlessly.</p> | |
| </div> | |
| <div class="bg-green-50 rounded-xl p-6"> | |
| <h3 class="text-xl font-semibold mb-3">Our Vision</h3> | |
| <p class="text-gray-700">A world where healthcare is accessible, personalized, and proactive for everyone, everywhere.</p> | |
| </div> | |
| </div> | |
| <div class="bg-white rounded-xl shadow-md p-6"> | |
| <h2 class="text-2xl font-semibold mb-6">Meet Our Team</h2> | |
| <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6"> | |
| <div class="text-center"> | |
| <div class="w-24 h-24 rounded-full bg-gray-300 mx-auto mb-4"></div> | |
| <h4 class="font-semibold">Dr. Sarah Johnson</h4> | |
| <p class="text-gray-600">Chief Medical Officer</p> | |
| </div> | |
| <div class="text-center"> | |
| <div class="w-24 h-24 rounded-full bg-gray-300 mx-auto mb-4"></div> | |
| <h4 class="font-semibold">Michael Chen</h4> | |
| <p class="text-gray-600">Lead Developer</p> | |
| </div> | |
| <div class="text-center"> | |
| <div class="w-24 h-24 rounded-full bg-gray-300 mx-auto mb-4"></div> | |
| <h4 class="font-semibold">Emma Rodriguez</h4> | |
| <p class="text-gray-600">UX Designer</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer Component --> | |
| <custom-footer></custom-footer> | |
| <!-- Web Components --> | |
| <script src="components/header.js"></script> | |
| <script src="components/footer.js"></script> | |
| <script src="components/sidebar.js"></script> | |
| <script src="components/mobile-menu.js"></script> | |
| <script src="components/user-menu.js"></script> | |
| <!-- Scripts --> | |
| <script src="script.js"></script> | |
| <script> | |
| feather.replace(); | |
| // Handle sidebar open event | |
| document.addEventListener('open-sidebar', () => { | |
| const sidebar = document.querySelector('custom-sidebar'); | |
| if (sidebar) { | |
| sidebar.openSidebar(); | |
| } | |
| }); | |
| </script> | |
| </body> | |
| </html> |