// Quote panels — residential + commercial slide-ins
function PanelShell({ open, onClose, title, children }){
if (!open) return null;
return (
<>
>
);
}
function ResidentialQuote({ open, onClose, prefill }){
const [submitted,setSubmitted] = useState(false);
return (
{submitted ? (
✓
Quote in motion.
We'll render your actual house in 3D and get your quote back within 48 hours.
) : (
)}
);
}
function CommercialQuote({ open, onClose }){
const [submitted,setSubmitted] = useState(false);
return (
{submitted ? (
✓
Request received.
Our commercial team will reach out within 24 hours to schedule a property walkthrough and 3D rendering.
) : (
)}
);
}
Object.assign(window, { ResidentialQuote, CommercialQuote });