import { useState } from 'react' import { CardLayout, HeadingField, RichTextDisplayField, TextItem, ButtonArrayLayout, TextField, MilestoneField, Icon, } from '../components' /** * Auto Insurance Quote Wizard - Final Step * * A multi-step insurance quote wizard showing the final quote step with: * - Vertical progress stepper (left sidebar on desktop) * - Quote summary with price and CTAs * - Expandable coverage details sections * - "Save for Later" email capture functionality */ export default function InsuranceQuoteWizard() { const [showSaveForLater, setShowSaveForLater] = useState(false) return (
{/* Header with purple background */}
INSURECORP
{/* Main content area */}
{/* Progress stepper - left sidebar (desktop only) */}
{/* Main content - center column */}
{/* Quote card with price and CTAs */} {!showSaveForLater ? (
, , ]} marginBelow="NONE" />
]} marginBelow="NONE" /> setShowSaveForLater(true), }, ]} align="START" marginBelow="NONE" />
) : (
, , ]} />
)}
{/* Auto Insurance heading */}
]} />
{/* 3 discounts summary card */}
]} marginBelow='NONE' /> ]} marginBelow='NONE' />
]} marginBelow='NONE' /> ]} marginBelow='NONE' />
{/* 1 vehicle summary card */}
]} marginBelow='NONE' /> ]} marginBelow='NONE' />
]} marginBelow='NONE' />
{/* 1 driver summary card */}
]} marginBelow='NONE' /> ]} marginBelow='NONE' />
]} marginBelow='NONE' />
{/* Coverage expandable - collapsed by default */}
]} marginBelow='NONE' /> ]} marginBelow='NONE' />
]} marginBelow='NONE' />
{/* Coverage details - expanded state */} {/* Bodily Injury Liability */}
, ]} /> , ]} /> , ]} />
{/* Uninsured/Underinsured Motorist */}
, ]} /> , ]} /> , ]} />
{/* Property Damage Liability */}
, ]} /> , ]} />
{/* Medical Payments */}
, ]} /> , ]} /> , ]} />
{/* Footer */}
INSURECORP

We may use information from public sources or third parties, such as driving records, claim history, vehicle driving data, and credit reports to provide you with the best quote.

Some discounts, coverages, payment plans, and features are not available in all states.

This site exists for demonstration purposes only. We can't actually sell you auto insurance.

) }