/* global React */ const marketingProblemsSite = window.RentLensSite; function Problems() { const { isMobile, isTablet } = marketingProblemsSite.useViewport(); const items = [ { title: 'Most investors rely on guesswork', body: 'A spreadsheet you built once and stopped trusting, plus vibes from a friend who flipped one house in 2017.' }, { title: 'Hidden costs destroy returns', body: 'Vacancy, CapEx, management, insurance hikes - the line items spreadsheets forget are the ones that eat your margin.' }, { title: 'No clear next step after analysis', body: 'You ran the numbers. Now what? Most tools leave you at a verdict with nowhere to act.' }, ]; return (
The problem

Three reasons people overpay for the wrong properties.

{items.map((item, index) => (
{`0${index + 1}`}

{item.title}

{item.body}

))}
); } window.Problems = Problems;