/* ============================================================ Agency BRN — Services, Why, Local SEO, Industries ============================================================ */ /* ---------- Services ---------- */ function Services() { const { t, basePath = "" } = React.useContext(window.LanguageContext); const icons = [ , , , , , , , ]; const slugs = window.SERVICE_SLUGS || [ "website-design-landing-pages", "google-business-profile-optimization", "crm-setup", "marketing-automation", "ai-powered-business-systems", "paid-traffic-strategy", "real-estate-rental-lead-systems", ]; return (
{t.services.eyebrow}

{t.services.h2A} {t.services.h2Grad} {t.services.h2B}

{t.services.lede}

); } /* ---------- Why ---------- */ function Why() { const { t } = React.useContext(window.LanguageContext); return (
{t.why.eyebrow}

{t.why.h2A} {t.why.h2Grad} {t.why.h2B}

{t.why.body}

{t.why.bullets.map((b, i) => (
{b}
))}
); } /* ---------- Local SEO ---------- */ function LocalSEO() { const { t } = React.useContext(window.LanguageContext); // Approximate pin positions (% of container) const pins = [ { x: 50, y: 50, name: "Orlando", large: true }, { x: 32, y: 74, name: "Kissimmee" }, { x: 56, y: 32, name: "Winter Park" }, { x: 38, y: 26, name: "Apopka" }, { x: 28, y: 50, name: "Winter Garden" }, { x: 36, y: 58, name: "Windermere" }, { x: 64, y: 62, name: "Lake Nona" }, { x: 78, y: 38, name: "Altamonte" }, ]; return (
{t.local.eyebrow}

{t.local.h2A} {t.local.h2Grad} {t.local.h2B}

{t.local.body}

{t.local.body2}

{t.local.cities.map((c) => ( {c} ))}
{/* Routes between pins */} {pins.slice(1).map((p, i) => ( ))} {pins.map((p, i) => (
{p.large && (
{p.name}, FL
)} ))}
{t.local.visualCaption}: Central Florida
); } /* ---------- Industries ---------- */ function Industries() { const { t } = React.useContext(window.LanguageContext); const industryIcons = [ , , , , , , , , , , , , ]; const rental = t.industries.rental; return (
{t.industries.eyebrow}

{t.industries.h2A} {t.industries.h2Grad} {t.industries.h2B}

{t.industries.lede}

{t.industries.items.map((it, i) => (
{industryIcons[i]}
{it.name}
{it.desc}
))}
{/* Featured Rental Property Agents card */}
{rental.eyebrow}

{rental.title}

{rental.subtitle}

{rental.body}

{rental.cta}
Included in the system
    {rental.features.map((f, i) => (
  • {f}
  • ))}
); } window.Services = Services; window.Why = Why; window.LocalSEO = LocalSEO; window.Industries = Industries;