@extends('layout.front.master')
@section('title', __('About'))
@section('description', config('site.seo.description'))
@section('keywords', config('site.seo.keywords'))
@section('content')
{{-- Page Header with Parallax --}}
{{ config('site.about.main_title', 'The Evolution of Homemade.') }}
{{ config('site.about.page_tagline', 'Beyond the bite.') }}
{{-- About Us Section --}}
{{ config('site.about.badge', 'WHO WE ARE') }}
{{ config('site.about.section_heading', config('site.about.main_subtitle', 'From Tucumán to Miami.')) }}
{{ config('site.about.description_1', config('site.about.main_subtitle', '')) }}
@if(config('site.about.description_2'))
{{ config('site.about.description_2') }}
@endif
{{-- Gallery Carousel Section --}}
@if(isset($aboutGalleryImages) && $aboutGalleryImages->count() > 0)
@foreach($aboutGalleryImages as $galleryImage)
@php $imgSrc = filter_var($galleryImage->img, FILTER_VALIDATE_URL) ? $galleryImage->img : asset($galleryImage->img); @endphp
@endforeach
@else
@for($i = 1; $i <= 5; $i++)
@endfor
@endif
{{-- Additional Text Section --}}
{{ config('site.about.ingredients_heading', 'Real ingredients. No filters.') }}
{{ config('site.about.secondary_text', '') }}
{{-- Testimonials Section with Parallax --}}
{{-- TESTIMONIALS — from testimonials module --}}
@if(isset($testimonials) && $testimonials->count() > 0)
@foreach($testimonials as $t)
{{ $t->description }}
{{ strtoupper($t->position ?? '') }}
{{ $t->name }}
@endforeach
@endif
{{-- Final Text Section --}}
{{ config('site.about.final_text', '') }}
{{-- Final Section with Shape Divider --}}
@endsection