{{-- Página About (referencia estructural: about.blade.php de Apex — banner + intro con showcase de 3 fotos + timeline vertical de valores; su sección de community/Apex Cares se OMITE: no hay programa equivalente que anunciar). Hero: heroes/service (pedido del dev). El copy es BORRADOR redactado desde datos que el sitio ya publica (15+ años, licencia FL, condados) — editable. Las fotos reusan assets IA ya validados de services/ (cero generaciones extra salvo el hero, resources/images/about/about-hero.jpg). El SEO lo resuelve PageSeoService por nombre de vista (about). --}} @extends('layouts.landing') @php // Valores del timeline (port del "Apex Standard"): título + copy + foto + link. // Una simple variable — mismo criterio que $serviceData en las páginas de servicio. $standards = [ [ 'title' => 'Integrity', 'body' => 'We treat every property like it belongs to a neighbor — because it usually does. Clear scopes, honest recommendations, and no surprises between the estimate and the final walkthrough. If a repair is the right call instead of a replacement, that is what we will tell you.', 'image' => 'resources/images/services/paver-driveways/driveway-main.jpg', 'alt' => 'Finished paver driveway at a South Florida home', 'linkText' => 'Get in touch with us', 'linkUrl' => 'contact', ], [ 'title' => 'Service', 'body' => 'From the first visit to the final walkthrough, you work with people who answer the phone and follow through. We walk you through material options, keep you posted while the work happens, and review every detail with you before we call a project done.', 'image' => 'resources/images/services/paver-patios-walkways/main.jpg', 'alt' => 'Paver patio with outdoor furniture in a landscaped backyard', 'linkText' => 'Request a free estimate', 'linkUrl' => 'estimate', ], [ 'title' => 'Quality', 'body' => 'The difference between an outdoor project that lasts decades and one that fails in a few seasons is in the fundamentals: base preparation, drainage, material selection suited for Florida\'s heat and rain, and finish work that holds up to daily use. That is where we put the hours.', 'image' => 'resources/images/services/pool-tile-coping/detail-1.jpg', 'alt' => 'Waterline tile detail at the edge of a pool', 'linkText' => 'See our work in the gallery', 'linkUrl' => 'gallery.index', ], [ 'title' => 'Efficiency', 'body' => 'Outdoor construction disrupts your home life — so we plan it to be as short and predictable as possible. Defined scopes, realistic timelines, and crews that show up when we say they will. The goal is a finished project, not an open-ended job site in your backyard.', 'image' => 'resources/images/services/concrete-overlay-pool-decks/renovation-wide.jpg', 'alt' => 'Renovated pool deck at a South Florida home', 'linkText' => 'Start your project', 'linkUrl' => 'estimate', ], ]; @endphp @section('hero')
About {{ config('company.legal_name') }}
@endsection @section('content') {{-- Intro + showcase de 3 fotos (sección "Crafting Outdoor Excellence" de Apex). --}}
Who We Are

Crafting South Florida Outdoor Living for Over 15 Years

{{ config('company.legal_name') }} is a licensed and insured outdoor contractor serving Palm Beach County and Broward County. Pools, paver driveways, patios, pool decks, concrete overlays and artificial turf — we design and build the surfaces homeowners live on, with the preparation and materials Florida's climate demands. One team, one standard, from the first estimate to the final walkthrough.

@php // Fuente única de las 3 fotos: alimenta la grilla (tablet+) y el swiper (móvil). $aboutGallery = [ ['image' => 'resources/images/services/pool-renovation/hero-wide.jpg', 'alt' => 'Renovated pool at a South Florida home'], ['image' => 'resources/images/services/paver-driveways/driveway-finished-wide.jpg', 'alt' => 'Elegant paver driveway'], ['image' => 'resources/images/services/paver-patios-walkways/hero-wide.jpg', 'alt' => 'Travertine paver patio and walkway'], ]; @endphp {{-- Tablet / desktop (≥768px): grilla estática. Mismo patrón que social-proof: el swiper de abajo cubre solo el móvil. --}} {{-- Móvil (<768px): swiper (port de stats-carousel.js → about-gallery-carousel.js). --}}
@php // Swiper desactiva el loop con < 6 slides: duplicamos el set para que // el período sea suficiente y no se vea una foto repetida a la vez. $slides = count($aboutGallery) >= 6 ? $aboutGallery : array_merge($aboutGallery, $aboutGallery); @endphp @foreach ($slides as $photo)
{{ $photo['alt'] }}
@endforeach
{{-- Timeline de valores (port de "The Apex Standard": línea vertical central, punto por hito, texto/imagen alternando lado por índice). --}}
Our Standard

How We Work

We aim to deliver the highest quality in every part of our business — these are the standards every project is held to, no matter its size.

{{-- Línea vertical del timeline (solo desktop; en mobile los bloques apilan). --}} @foreach ($standards as $index => $standard)
{{-- Punto del hito sobre la línea. --}}

{{ $standard['title'] }}

{{ $standard['body'] }}

{{ $standard['linkText'] }}
{{ $standard['alt'] }}
@endforeach
@endsection