Spaces:
Running
Running
File size: 10,445 Bytes
2fb3f14 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 | ```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NDIS Paperwork Wizard - Interactive Workflow</title>
<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>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
}
.hero-gradient {
background: linear-gradient(135deg, #22d3ee 0%, #3b82f6 100%);
}
.workflow-step {
transition: all 0.3s ease;
}
.workflow-step:hover {
transform: translateY(-5px);
}
.compliance-dial {
background: conic-gradient(#ef4444 0% 30%, #f59e0b 30% 70%, #10b981 70% 100%);
}
</style>
</head>
<body class="bg-gray-50">
<!-- Navigation -->
<nav class="bg-white shadow-sm">
<div class="container mx-auto px-6 py-4">
<div class="flex justify-between items-center">
<a href="/index.html" class="text-xl font-bold text-blue-600">NDIS Paperwork Wizard</a>
<div class="flex gap-4">
<a href="/index.html" class="text-gray-600 hover:text-blue-600 transition duration-300">Home</a>
<a href="/how-it-works.html" class="text-gray-600 hover:text-blue-600 transition duration-300">How It Works</a>
<a href="/workflow.html" class="text-blue-600 font-semibold">Workflow</a>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<div class="hero-gradient text-white py-16">
<div class="container mx-auto px-6 text-center">
<h1 class="text-4xl md:text-5xl font-bold mb-6">Interactive Workflow Demo</h1>
<p class="text-xl md:text-2xl mb-8 opacity-90">See how our AI transforms your notes into NDIS-compliant documents</p>
</div>
</div>
<!-- Workflow Steps -->
<div class="py-20 bg-white">
<div class="container mx-auto px-6">
<!-- Step 1: Input -->
<div class="workflow-step bg-gray-50 rounded-2xl p-8 mb-12 shadow-md">
<div class="flex items-center mb-6">
<div class="w-12 h-12 bg-blue-600 text-white rounded-full flex items-center justify-center text-xl font-bold mr-4">1</div>
<h2 class="text-2xl font-bold text-gray-800">Step 1 β Paste Your Session Notes</h2>
</div>
<div class="bg-white rounded-lg p-6 border border-gray-200">
<p class="text-gray-600 mb-4">Paste your calendar entry or call notes:</p>
<div class="bg-gray-100 p-4 rounded border border-gray-300 font-mono text-sm">
10:00β10:30 with Jane Doe, reviewed mobility goals, provided support, booked next appointment Tue 10am
</div>
</div>
</div>
<!-- Step 2: AI Parsing -->
<div class="workflow-step bg-gray-50 rounded-2xl p-8 mb-12 shadow-md">
<div class="flex items-center mb-6">
<div class="w-12 h-12 bg-green-600 text-white rounded-full flex items-center justify-center text-xl font-bold mr-4">2</div>
<h2 class="text-2xl font-bold text-gray-800">Step 2 β AI Detects Required Fields</h2>
</div>
<div class="bg-white rounded-lg p-6 border border-gray-200">
<p class="text-gray-600 mb-4">Copilot instantly extracts all necessary information:</p>
<div class="grid grid-cols-2 md:grid-cols-4 gap-4">
<div class="flex items-center text-green-600">
<i data-feather="check-circle" class="w-5 h-5 mr-2"></i>
<span>Date</span>
</div>
<div class="flex items-center text-green-600">
<i data-feather="check-circle" class="w-5 h-5 mr-2"></i>
<span>Time</span>
</div>
<div class="flex items-center text-green-600">
<i data-feather="check-circle" class="w-5 h-5 mr-2"></i>
<span>Participant</span>
</div>
<div class="flex items-center text-yellow-600">
<i data-feather="alert-circle" class="w-5 h-5 mr-2"></i>
<span>NDIS Number</span>
</div>
<div class="flex items-center text-green-600">
<i data-feather="check-circle" class="w-5 h-5 mr-2"></i>
<span>Goals</span>
</div>
<div class="flex items-center text-green-600">
<i data-feather="check-circle" class="w-5 h-5 mr-2"></i>
<span>Outcomes</span>
</div>
<div class="flex items-center text-green-600">
<i data-feather="check-circle" class="w-5 h-5 mr-2"></i>
<span>Duration</span>
</div>
<div class="flex items-center text-green-600">
<i data-feather="check-circle" class="w-5 h-5 mr-2"></i>
<span>Follow-up</span>
</div>
</div>
</div>
</div>
<!-- Step 3: Compliance Checker -->
<div class="workflow-step bg-gray-50 rounded-2xl p-8 mb-12 shadow-md">
<div class="flex items-center mb-6">
<div class="w-12 h-12 bg-purple-600 text-white rounded-full flex items-center justify-center text-xl font-bold mr-4">3</div>
<h2 class="text-2xl font-bold text-gray-800">Step 3 β Compliance Validation</h2>
</div>
<div class="bg-white rounded-lg p-6 border border-gray-200">
<div class="flex flex-col md:flex-row items-center justify-between">
<div class="mb-6 md:mb-0 md:mr-8">
<p class="text-gray-600 mb-4">Compliance status:</p>
<div class="compliance-dial w-32 h-32 rounded-full flex items-center justify-center mx-auto">
<div class="bg-white w-24 h-24 rounded-full flex items-center justify-center">
<span class="text-lg font-bold text-gray-700">70%</span>
</div>
</div>
</div>
<div class="flex-1">
<p class="text-gray-600 mb-4">Missing fields flagged with explanations:</p>
<div class="bg-yellow-50 border border-yellow-200 rounded-lg p-4">
<div class="flex items-center text-yellow-800 mb-2">
<i data-feather="alert-triangle" class="w-4 h-4 mr-2"></i>
<span class="font-semibold">NDIS Number Missing</span>
</div>
<p class="text-sm text-yellow-700">Required for NDIS Practice Standard 2.3 - Participant identification and records</p>
</div>
</div>
</div>
</div>
</div>
<!-- Step 4: Template Application -->
<div class="workflow-step bg-gray-50 rounded-2xl p-8 mb-12 shadow-md">
<div class="flex items-center mb-6">
<div class="w-12 h-12 bg-indigo-600 text-white rounded-full flex items-center justify-center text-xl font-bold mr-4">4</div>
<h2 class="text-2xl font-bold text-gray-800">Step 4 β Document Transformation</h2>
</div>
<div class="bg-white rounded-lg p-6 border border-gray-200">
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div>
<h3 class="font-semibold text-gray-700 mb-3">Raw Notes</h3>
<div class="bg-gray-100 p-4 rounded border border-gray-300 font-mono text-sm">
10:00β10:30 with Jane Doe, reviewed mobility goals, provided support, booked next appointment Tue 10am
</div>
</div>
<div>
<h3 class="font-semibold text-gray-700 mb-3">Formatted Case Note</h3>
<div class="bg-blue-50 p-4 rounded border border-blue-200">
<div class="font-semibold text-blue-800 mb-2">Case Note</div>
<div class="text-sm space-y-1">
<p><strong>Provider:</strong> Demo Provider</p>
<p><strong>Participant:</strong> Jane Doe</p>
<p><strong>Date:</strong> 2025-09-25 10:00 (30m)</p>
<p><strong>Summary:</strong> Reviewed mobility goals and provided support.</p>
<p><strong>Outcomes:</strong> Follow-up booked.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Step 5: Export & Save -->
<div class="workflow-step bg-gray-50 rounded-2xl p-8 mb-12 shadow-md">
<div class="flex items-center mb-6">
<div class="w-12 h-12 bg-teal-600 text-white rounded-full flex items-center justify-center text-xl font-bold mr-4">5</div>
<h2 class="text-2xl font-bold text-gray-800">Step 5 β Export & Save</h2>
</div>
<div class="bg-white rounded-lg p-6 border border-gray-200"> |