| <!DOCTYPE html> |
| <html lang="en" class="dark"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>ProFusion - Custom Software for Professionals</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> |
| tailwind.config = { |
| darkMode: 'class', |
| theme: { |
| extend: { |
| colors: { |
| primary: { |
| 500: '#3B82F6', |
| } |
| } |
| } |
| } |
| } |
| </script> |
| </head> |
| <body class="bg-gray-900 text-gray-100 min-h-screen"> |
| <custom-navbar></custom-navbar> |
| |
| <main class="container mx-auto px-4 py-8"> |
| |
| <section class="flex flex-col md:flex-row items-center justify-between gap-12 py-20"> |
| <div class="md:w-1/2"> |
| <h1 class="text-4xl md:text-5xl font-bold mb-6">Tailored Digital Solutions <span class="text-primary-500">For Professionals</span></h1> |
| <p class="text-lg text-gray-400 mb-8">Custom apps and websites designed specifically for doctors, lawyers, accountants and more to streamline your practice and enhance client experience.</p> |
| <div class="flex gap-4"> |
| <a href="#contact" class="bg-primary-500 hover:bg-primary-600 text-white px-6 py-3 rounded-lg font-medium transition">Get Started</a> |
| <a href="#solutions" class="border border-gray-700 hover:bg-gray-800 px-6 py-3 rounded-lg font-medium transition">Our Solutions</a> |
| </div> |
| </div> |
| <div class="md:w-1/2"> |
| <img src="http://static.photos/technology/1024x576/1" alt="Professional software solutions" class="rounded-xl shadow-2xl"> |
| </div> |
| </section> |
|
|
| |
| <section id="solutions" class="py-20"> |
| <div class="text-center mb-16"> |
| <h2 class="text-3xl font-bold mb-4">Industry-Specific Solutions</h2> |
| <p class="text-gray-400 max-w-2xl mx-auto">We create specialized tools that address the unique challenges of your profession.</p> |
| </div> |
| |
| <div class="grid md:grid-cols-3 gap-8"> |
| <div class="bg-gray-800 p-8 rounded-xl hover:bg-gray-700 transition"> |
| <i data-feather="activity" class="w-12 h-12 text-primary-500 mb-6"></i> |
| <h3 class="text-xl font-bold mb-3">Medical Practice</h3> |
| <p class="text-gray-400">Patient management, appointment scheduling, telehealth solutions, and medical record systems.</p> |
| </div> |
| <div class="bg-gray-800 p-8 rounded-xl hover:bg-gray-700 transition"> |
| <i data-feather="briefcase" class="w-12 h-12 text-primary-500 mb-6"></i> |
| <h3 class="text-xl font-bold mb-3">Legal Professionals</h3> |
| <p class="text-gray-400">Case management, document automation, time tracking, and client portals.</p> |
| </div> |
| <div class="bg-gray-800 p-8 rounded-xl hover:bg-gray-700 transition"> |
| <i data-feather="dollar-sign" class="w-12 h-12 text-primary-500 mb-6"></i> |
| <h3 class="text-xl font-bold mb-3">Accounting Firms</h3> |
| <p class="text-gray-400">Financial dashboards, tax preparation tools, client reporting, and secure document sharing.</p> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="py-20 bg-gray-800 rounded-xl px-8"> |
| <div class="text-center mb-12"> |
| <h2 class="text-3xl font-bold mb-4">Trusted by Professionals</h2> |
| <p class="text-gray-400 max-w-2xl mx-auto">What our clients say about our solutions</p> |
| </div> |
| |
| <div class="grid md:grid-cols-2 gap-8"> |
| <div class="bg-gray-700 p-8 rounded-lg"> |
| <div class="flex items-center gap-4 mb-4"> |
| <img src="http://static.photos/people/200x200/1" alt="Dr. Sarah Johnson" class="w-12 h-12 rounded-full"> |
| <div> |
| <h4 class="font-bold">Dr. Sarah Johnson</h4> |
| <p class="text-gray-400 text-sm">Cardiologist, Boston</p> |
| </div> |
| </div> |
| <p class="text-gray-300">"Our patient management system has reduced administrative work by 40% and improved patient satisfaction scores significantly."</p> |
| </div> |
| <div class="bg-gray-700 p-8 rounded-lg"> |
| <div class="flex items-center gap-4 mb-4"> |
| <img src="http://static.photos/people/200x200/2" alt="Michael Chen" class="w-12 h-12 rounded-full"> |
| <div> |
| <h4 class="font-bold">Michael Chen</h4> |
| <p class="text-gray-400 text-sm">Tax Attorney, Seattle</p> |
| </div> |
| </div> |
| <p class="text-gray-300">"The document automation tools have saved our firm hundreds of hours annually while reducing errors in our filings."</p> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="contact" class="py-20"> |
| <div class="max-w-2xl mx-auto bg-gray-800 rounded-xl p-8 md:p-12"> |
| <h2 class="text-3xl font-bold mb-6">Ready to Transform Your Practice?</h2> |
| <p class="text-gray-400 mb-8">Tell us about your needs and we'll design the perfect solution.</p> |
| |
| <form class="space-y-6"> |
| <div class="grid md:grid-cols-2 gap-6"> |
| <div> |
| <label for="name" class="block mb-2 text-sm font-medium">Name</label> |
| <input type="text" id="name" class="bg-gray-700 border border-gray-600 text-white text-sm rounded-lg focus:ring-primary-500 focus:border-primary-500 block w-full p-2.5" required> |
| </div> |
| <div> |
| <label for="profession" class="block mb-2 text-sm font-medium">Profession</label> |
| <select id="profession" class="bg-gray-700 border border-gray-600 text-white text-sm rounded-lg focus:ring-primary-500 focus:border-primary-500 block w-full p-2.5"> |
| <option value="">Select your profession</option> |
| <option value="doctor">Doctor/Physician</option> |
| <option value="lawyer">Lawyer/Attorney</option> |
| <option value="accountant">Accountant/CPA</option> |
| <option value="other">Other Professional</option> |
| </select> |
| </div> |
| </div> |
| <div> |
| <label for="email" class="block mb-2 text-sm font-medium">Email</label> |
| <input type="email" id="email" class="bg-gray-700 border border-gray-600 text-white text-sm rounded-lg focus:ring-primary-500 focus:border-primary-500 block w-full p-2.5" required> |
| </div> |
| <div> |
| <label for="message" class="block mb-2 text-sm font-medium">How can we help?</label> |
| <textarea id="message" rows="4" class="bg-gray-700 border border-gray-600 text-white text-sm rounded-lg focus:ring-primary-500 focus:border-primary-500 block w-full p-2.5" required></textarea> |
| </div> |
| <button type="submit" class="bg-primary-500 hover:bg-primary-600 text-white px-6 py-3 rounded-lg font-medium transition w-full">Request Consultation</button> |
| </form> |
| </div> |
| </section> |
| </main> |
|
|
| <custom-footer></custom-footer> |
|
|
| <script src="components/navbar.js"></script> |
| <script src="components/footer.js"></script> |
| <script src="script.js"></script> |
| <script>feather.replace();</script> |
| <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script> |
| </body> |
| </html> |