## What problem does it solve?
Clone any website as a pixel-perfect React + Vite clone, using the source HTML as truth to reproduce layout, typography, and assets precisely. It enables reverse-engineering a target site into a production-ready frontend without guessing.
## Core Features & Use Cases
- Raw HTML is the source of truth. Before building any section, read the corresponding portion of raw.html. Never build from memory, screenshots alone, or guessed structure.
- One component per visual pattern. Never reuse a component designed for one layout for a structurally different layout.
- All assets downloaded before building starts. Every image, font, SVG, and video must be local in public/ before any component code is written.
- Build all sections, then verify the full page. This is 3-5x faster than per-section verification loops.
- No fabricated content. Every heading, subtitle, button label, badge, price, and link must come from the source HTML.
- Replace the scaffolded CSS entirely. Remove Tailwind/shadcn boilerplate and use plain CSS.
### Quick Start
Save the target page's raw.html and execute the end-to-end workflow to produce a pixel-perfect React + Vite clone.