...

You’re one step away from seeing how we help security and service companies plug their lead leaks, boost booked appointments by 30–50%, and add new clients in 30 days without hiring more staff or learning any tech.

import { useState } from 'react'; import { Calculator } from '@/components/Calculator'; import { Results } from '@/components/Results'; import { StepIndicator } from '@/components/StepIndicator'; import logo from '@/assets/logo.png'; type Step = 'calculator' | 'results'; interface CalculatorData { leadsPerMonth: number; avgDealValue: number; avgResponseTime: number; leadsLostPercentage: number; } const Index = () => { const [step, setStep] = useState('calculator'); const [calculatorData, setCalculatorData] = useState(null); const handleCalculate = (data: CalculatorData) => { setCalculatorData(data); setStep('results'); }; const handleCTA = () => { window.location.href = 'https://demo.coachdeployed.com/book-a-call'; }; const getStepNumber = () => { switch (step) { case 'calculator': return 1; case 'results': return 2; default: return 1; } }; return (
{/* Header */}
Coach Deployed
{/* Main Content */}
{step === 'calculator' && ( )} {step === 'results' && calculatorData && ( )}
{/* Trust Indicators */}

Trusted by 500+ sales teams to optimize their follow-up process

); }; export default Index;