@extends('layout.front.master') @section('title', 'Contacto | ' . config('site.name')) @section('description', 'Contacta a ' . config('site.name') . '. Respondemos en menos de 24 horas. Agenda una reunion o escribinos por WhatsApp.') @section('content') @include('layout.front.partials.page-header-accounting-1', [ 'pageTitle' => config('site.contact.page_heading', 'Hablemos de tu proyecto'), 'pageLabel' => config('site.modules.contact.page_header.title', 'CONTACTO'), 'pageSubtitle' => config('site.contact.page_subtitle', 'Respondemos en menos de 24 horas'), ])
@csrf
@if(config('site.booking_url'))
{{ config('site.contact.calendly_heading', __('Agendá una reunión')) }}

{{ config('site.contact.calendly_subtitle', __('30 minutos. Sin compromiso.')) }}

{{ config('site.contact.calendly_button', __('Elegir horario')) }}
@endif @if(config('site.social_media.whatsapp.active')) @endif

{{ config('site.contact.sidebar_heading', 'Escribinos') }}

{{ config('site.contact.sidebar_subtitle', 'Respondemos en menos de 24 horas. Si preferís, agendá directamente una reunión por Calendly.') }}

{{ config('site.contact.location_heading', 'Dónde estamos') }}

  • Ubicación: {{ config('site.contact.address', '') }}
  • @if(config('site.contact.phone'))
  • {{ config('site.contact.label_phone_sidebar', 'Teléfono:') }} {{ config('site.contact.phone') }}
  • @endif
  • Email: {{ config('site.contact.email', '') }}

{{ config('site.contact.hours_heading', 'Horarios') }}

@php $hoursDetail = config('site.contact.hours_detail', []); if (is_string($hoursDetail)) { $hoursDetail = json_decode($hoursDetail, true) ?? []; } if (empty($hoursDetail)) { $hoursDetail = [ ['day' => 'Lunes a Viernes', 'hours' => '9:00 a 16:00 hs'], ['day' => 'Sábados', 'hours' => 'Cerrado'], ['day' => 'Domingos', 'hours' => 'Cerrado'], ]; } @endphp
    @foreach($hoursDetail as $schedule)
  • {{ $schedule['day'] }} - {{ $schedule['hours'] }}
  • @endforeach
@endsection