Build an AI tool that converts doctors’ diagnoses into CPT, HCPCS, and ICD-10 codes. Include useful features for physicians such as a section to input and manage patient information, a dashboard to track recent searches, and any additional tools that would streamline coding and documentation. Ensure every button is fully functional. Each button should link to its own page, and that page should display the content or features described by the button. - Initial Deployment
9c641f2 verified | <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Coding Resources | MedCode AI</title> | |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet"> | |
| <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| </head> | |
| <body class="bg-gray-50 font-sans"> | |
| <div class="flex h-screen overflow-hidden"> | |
| <!-- Sidebar (same as index.html) --> | |
| <div class="sidebar bg-white shadow-lg w-64 flex flex-col"> | |
| <div class="p-4 flex items-center space-x-3 border-b"> | |
| <div class="bg-blue-500 p-2 rounded-lg"> | |
| <i data-feather="activity" class="text-white"></i> | |
| </div> | |
| <h1 class="logo-text text-xl font-bold text-gray-800">MedCode AI</h1> | |
| </div> | |
| <div class="flex-1 overflow-y-auto p-4 space-y-2"> | |
| <a href="index.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg hover:bg-gray-100 text-gray-700"> | |
| <i data-feather="home" class="text-blue-600"></i> | |
| <span class="nav-text">Dashboard</span> | |
| </a> | |
| <a href="code-converter.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg hover:bg-gray-100 text-gray-700"> | |
| <i data-feather="code" class="text-purple-600"></i> | |
| <span class="nav-text">Code Converter</span> | |
| </a> | |
| <a href="patients.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg hover:bg-gray-100 text-gray-700"> | |
| <i data-feather="users" class="text-pink-600"></i> | |
| <span class="nav-text">Patient Records</span> | |
| </a> | |
| <a href="history.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg hover:bg-gray-100 text-gray-700"> | |
| <i data-feather="clock" class="text-yellow-600"></i> | |
| <span class="nav-text">Search History</span> | |
| </a> | |
| <a href="resources.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg bg-blue-50 text-blue-600"> | |
| <i data-feather="book" class="text-green-600"></i> | |
| <span class="nav-text font-medium">Coding Resources</span> | |
| </a> | |
| <a href="settings.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg hover:bg-gray-100 text-gray-700"> | |
| <i data-feather="settings" class="text-gray-600"></i> | |
| <span class="nav-text">Settings</span> | |
| </a> | |
| </div> | |
| <div class="p-4 border-t"> | |
| <div class="flex items-center space-x-3"> | |
| <img src="http://static.photos/people/200x200/1" class="w-10 h-10 rounded-full" alt="User"> | |
| <div> | |
| <p class="font-medium">Dr. Sarah Johnson</p> | |
| <p class="text-sm text-gray-500">Cardiologist</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Main Content --> | |
| <div class="flex-1 overflow-y-auto"> | |
| <!-- Header --> | |
| <header class="bg-white shadow-sm p-4 flex justify-between items-center"> | |
| <h2 class="text-xl font-semibold text-gray-800">Coding Resources</h2> | |
| <div class="flex items-center space-x-4"> | |
| <div class="relative"> | |
| <input type="text" placeholder="Search resources..." class="pl-10 pr-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500"> | |
| <i data-feather="search" class="absolute left-3 top-2.5 text-gray-400"></i> | |
| </div> | |
| <button class="p-2 rounded-full hover:bg-gray-100"> | |
| <i data-feather="filter" class="text-gray-600"></i> | |
| </button> | |
| </div> | |
| </header> | |
| <!-- Resources Content --> | |
| <main class="p-6"> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6"> | |
| <!-- Resource Card 1 --> | |
| <div class="bg-white rounded-xl shadow-sm border border-gray-100 overflow-hidden"> | |
| <div class="bg-blue-600 p-4 text-white"> | |
| <div class="flex items-center justify-between"> | |
| <h3 class="font-semibold">ICD-10 Code Lookup</h3> | |
| <i data-feather="search" class="w-6 h-6"></i> | |
| </div> | |
| </div> | |
| <div class="p-4"> | |
| <p class="text-gray-600 mb-4">Search the complete ICD-10-CM code set with our intuitive lookup tool.</p> | |
| <button class="w-full bg-blue-50 text-blue-600 py-2 rounded-lg hover:bg-blue-100"> | |
| Open Tool | |
| </button> | |
| </div> | |
| </div> | |
| <!-- Resource Card 2 --> | |
| <div class="bg-white rounded-xl shadow-sm border border-gray-100 overflow-hidden"> | |
| <div class="bg-purple-600 p-4 text-white"> | |
| <div class="flex items-center justify-between"> | |
| <h3 class="font-semibold">CPT Code Finder</h3> | |
| <i data-feather="file-text" class="w-6 h-6"></i> | |
| </div> | |
| </div> | |
| <div class="p-4"> | |
| <p class="text-gray-600 mb-4">Find the right CPT codes for procedures with detailed descriptions.</p> | |
| <button class="w-full bg-purple-50 text-purple-600 py-2 rounded-lg hover:bg-purple-100"> | |
| Open Tool | |
| </button> | |
| </div> | |
| </div> | |
| <!-- Resource Card 3 --> | |
| <div class="bg-white rounded-xl shadow-sm border border-gray-100 overflow-hidden"> | |
| <div class="bg-green-600 p-4 text-white"> | |
| <div class="flex items-center justify-between"> | |
| <h3 class="font-semibold">HCPCS Code Reference</h3> | |
| <i data-feather="layers" class="w-6 h-6"></i> | |
| </div> | |
| </div> | |
| <div class="p-4"> | |
| <p class="text-gray-600 mb-4">Access the complete HCPCS Level II code set for supplies and services.</p> | |
| <button class="w-full bg-green-50 text-green-600 py-2 rounded-lg hover:bg-green-100"> | |
| Open Tool | |
| </button> | |
| </div> | |
| </div> | |
| <!-- Resource Card 4 --> | |
| <div class="bg-white rounded-xl shadow-sm border border-gray-100 overflow-hidden"> | |
| <div class="bg-yellow-600 p-4 text-white"> | |
| <div class="flex items-center justify-between"> | |
| <h3 class="font-semibold">2023 Coding Updates</h3> | |
| <i data-feather="alert-circle" class="w-6 h-6"></i> | |
| </div> | |
| </div> | |
| <div class="p-4"> | |
| <p class="text-gray-600 mb-4">Review the latest changes to ICD-10, CPT, and HCPCS codes for 2023.</p> | |
| <button class="w-full bg-yellow-50 text-yellow-600 py-2 rounded-lg hover:bg-yellow-100"> | |
| View Guide | |
| </button> | |
| </div> | |
| </div> | |
| <!-- Resource Card 5 --> | |
| <div class="bg-white rounded-xl shadow-sm border border-gray-100 overflow-hidden"> | |
| <div class="bg-red-600 p-4 text-white"> | |
| <div class="flex items-center justify-between"> | |
| <h3 class="font-semibold">Documentation Guidelines</h3> | |
| <i data-feather="clipboard" class="w-6 h-6"></i> | |
| </div> | |
| </div> | |
| <div class="p-4"> | |
| <p class="text-gray-600 mb-4">Best practices for medical documentation to support your coding.</p> | |
| <button class="w-full bg-red-50 text-red-600 py-2 rounded-lg hover:bg-red-100"> | |
| Read More | |
| </button> | |
| </div> | |
| </div> | |
| <!-- Resource Card 6 --> | |
| <div class="bg-white rounded-xl shadow-sm border border-gray-100 overflow-hidden"> | |
| <div class="bg-indigo-600 p-4 text-white"> | |
| <div class="flex items-center justify-between"> | |
| <h3 class="font-semibold">Coding Webinars</h3> | |
| <i data-feather="video" class="w-6 h-6"></i> | |
| </div> | |
| </div> | |
| <div class="p-4"> | |
| <p class="text-gray-600 mb-4">Access our library of on-demand coding education webinars.</p> | |
| <button class="w-full bg-indigo-50 text-indigo-600 py-2 rounded-lg hover:bg-indigo-100"> | |
| Browse Videos | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Documentation Section --> | |
| <div class="mt-8 bg-white rounded-xl shadow-sm border border-gray-100 p-6"> | |
| <h3 class="text-lg font-semibold text-gray-800 mb-4">Official Documentation</h3> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-4"> | |
| <a href="#" class="p-4 border rounded-lg hover:bg-gray-50 flex items-center"> | |
| <div class="bg-blue-100 p-3 rounded-lg mr-4"> | |
| <i data-feather="book" class="text-blue-600"></i> | |
| </div> | |
| <div> | |
| <p class="font-medium">ICD-10-CM Official Guidelines</p> | |
| <p class="text-sm text-gray-500">2023 Edition</p> | |
| </div> | |
| </a> | |
| <a href="#" class="p-4 border rounded-lg hover:bg-gray-50 flex items-center"> | |
| <div class="bg-purple-100 p-3 rounded-lg mr-4"> | |
| <i data-feather="book" class="text-purple-600"></i> | |
| </div> | |
| <div> | |
| <p class="font-medium">CPT® Professional Edition</p> | |
| <p class="text-sm text-gray-500">2023 AMA</p> | |
| </div> | |
| </a> | |
| <a href="#" class="p-4 border rounded-lg hover:bg-gray-50 flex items-center"> | |
| <div class="bg-green-100 p-3 rounded-lg mr-4"> | |
| <i data-feather="book" class="text-green-600"></i> | |
| </div> | |
| <div> | |
| <p class="font-medium">HCPCS Level II Reference</p> | |
| <p class="text-sm text-gray-500">2023 CMS</p> | |
| </div> | |
| </a> | |
| <a href="#" class="p-4 border rounded-lg hover:bg-gray-50 flex items-center"> | |
| <div class="bg-yellow-100 p-3 rounded-lg mr-4"> | |
| <i data-feather="book" class="text-yellow-600"></i> | |
| </div> | |
| <div> | |
| <p class="font-medium">Medicare Billing Guidelines</p> | |
| <p class="text-sm text-gray-500">2023 CMS</p> | |
| </div> | |
| </a> | |
| </div> | |
| </div> | |
| </main> | |
| </div> | |
| </div> | |
| <script> | |
| AOS.init(); | |
| feather.replace(); | |
| </script> | |
| </body> | |
| </html> | |