Spotless Exterior Care — Quote Request Portal

Demo UI (no backend submission yet)

/spotless/ demo

Request a quote

Select a service, choose a preferred date, enter your email, then request a quote. The estimate shown is a range based on the service type.

You can expand services later (add-ons, sqft, stories, etc.).
Demo uses a date picker. A real portal would enforce business hours and capacity.
Used for quote delivery + appointment confirmation.
Optional today; can be used for service-area validation later.
Estimated range
$250–$450
Response time
Same day / next day
Note: this demo does not send anything yet. In production we would POST the payload to an API endpoint (e.g., /api/quote-requests) and store it in a CRM or job system.

Backend payload preview

What would be sent to the server when the customer clicks Request a quote.

{
  "service": "house_wash",
  "preferred_date": null,
  "email": null,
  "zip": null,
  "estimate_range": {
    "low": 250,
    "high": 450
  },
  "source": "spotless-portal-demo"
}

Future: attach photos, address, notes, square footage, HOA constraints, and add a consent checkbox for SMS.