/* global React */ const marketingStepsSite = window.RentLensSite; function HowItWorks() { const { isMobile, isTablet } = marketingStepsSite.useViewport(); const steps = [ { n: '01', icon: 'home', title: 'Enter property details', body: 'Address, asking price, expected rent, financing. Two minutes.' }, { n: '02', icon: 'calculator', title: 'See real returns and risks', body: 'Cashflow, ROI, a five-year projection, and a clear risk score.' }, { n: '03', icon: 'sparkles', title: 'Improve performance instantly', body: 'Each result comes with a specific next move, like refinance, inspection, or management, wired to vetted partners.' }, ]; return (
How it works

From address to action in three steps.

{!isTablet && (
)} {steps.map((step) => (
STEP {step.n}

{step.title}

{step.body}

))}
); } window.HowItWorks = HowItWorks;