Loose React component source for an AI-driven auto insurance dashboard prototype (mocked GEICO-style branding).
Same dashboard UI as the d repo, checked in without the Create React App scaffolding (no public/, index.js, or build config — just the component/style files):
- App: tab navigation between Home, Claims, and Profile
- Home (in App.js): dashboard stats (active policies, conversion rate, quote time), mock "AI revenue" figures, smart-tracking card, policy grid, and recent claims
- Claim: form to file a new claim (incident type, date, location, description, photo placeholder); submit just shows an alert
- InsuranceCard: renders a "GEICO AI" branded insurance ID card and exports it to PNG via
html2canvas
All data is hardcoded — no backend or API calls.
- React 19 (function components, hooks)
- html2canvas for image export
- Plain CSS per component
This repo is missing the CRA entry point (index.js, public/index.html) needed to actually run it standalone — drop these files into a CRA or Vite React app's src/ to use them, or see the companion d repo for the full runnable project.