// ForOwners.jsx — services page for property owners const Reveal_O = window.Reveal; const PageHero_O = window.SantirmaPageHero; function ForOwnersPage({ navigate }) { const services = [ { title: 'Marketing & Photography', body: 'Editorial photography, listing copy, and placement on the channels that actually rent your home — not bulk-syndicated to every site that will take it.' }, { title: 'Resident Screening', body: 'Three-bureau credit, income verification, employer confirmation, and prior-landlord conversations. We pick people, not paperwork.' }, { title: 'Leasing & Renewals', body: 'Showings, applications, and lease documents managed end-to-end. We earn renewal at month nine, not at month thirteen.' }, { title: 'Rent Collection', body: 'On-time deposits to your account by the 5th. Clear accounting, monthly statements, and a year-end package your CPA will thank you for.' }, { title: 'Maintenance & Repairs', body: 'A 24/7 dispatch line and a vetted vendor network. Photos and invoices with every ticket. Capped scopes you approve in advance.' }, { title: 'Compliance & Reporting', body: 'Fair-housing-compliant marketing, lead-paint disclosures, RRIO inspections, and city registration — all handled.' }, ]; const tiers = [ { name: 'Leasing-Only', fee: "75% of first month’s rent", best: 'Single home, you manage day-to-day.', features: ['Photography & listing', 'Showings & applications', 'Three-bureau screening', 'Lease prep & signing', 'Move-in inspection'], }, { name: 'Full Management', fee: '8% of monthly rent', best: 'Most owners. Most peace of mind.', featured: true, features: ['Everything in Leasing-Only', 'Rent collection & disbursements', '24/7 maintenance dispatch', 'Renewal & rent reviews', 'Monthly owner statements', 'Vendor coordination'], }, { name: 'Portfolio', fee: 'Custom', best: '5+ doors. Talk to us.', features: ['Everything in Full Management', 'Dedicated portfolio manager', 'Quarterly market review', 'Capital projects oversight', 'Year-end performance report', 'Owner reporting dashboard'], }, ]; return (
Your portfolio,
in steady hands.} subtitle="Full-service property management for owners who measure success in renewal rates and resident reviews — not just rent rolls." /> {/* Pull-quote stat strip */}
{[ ['12 days', 'Average days to lease'], ['98%', 'Renewal rate'], ['4.9 / 5', 'Resident rating'], ['$0', 'Surprise fees, ever'], ].map(([k, l]) => (
{k}
{l}
))}
{/* Services grid */}
№ 01 — What we handle

Six disciplines.
One operating standard.

{services.map((s, i) => (
0{i + 1}

{s.title}

{s.body}

))}
{/* Pricing tiers */}
№ 02 — Engagement

Three ways to work together.

Honest pricing. No setup fees, no renewal fees, no markups on maintenance. The number you see is what you pay.

{tiers.map((t, i) => (
{t.featured && (
Most chosen
)}
{t.name}
{t.fee}
{t.best}
    {t.features.map(f => (
  • {f}
  • ))}
))}
{/* CTA */}
For owners and investors

Have a property in mind? We’ll walk it with you.

No-obligation walkthrough, candid rent estimate, and a written management proposal within forty-eight hours.

); } window.SantirmaForOwnersPage = ForOwnersPage;