@if(Route::has('blog.post')) {{ $post->title }} @else {{ $post->title }} @endif
{{ Str::limit($post->description ?? $post->excerpt ?? '', 120) }}
@if(Route::has('blog.post')) {{ __('Read More') }} @endif@extends('layout.front.master')
@php
$radocModels = \App\Modules\Products\Models\Product::whereNotNull('landing_slug')
->get()->keyBy('landing_slug');
$mImg = fn($slug, $field, $fallback) => ($radocModels[$slug] ?? null)?->$field
? (filter_var(($radocModels[$slug])->$field, FILTER_VALIDATE_URL)
? ($radocModels[$slug])->$field
: asset(($radocModels[$slug])->$field))
: asset($fallback);
$mStr = fn($slug, $field, $fallback) => (($radocModels[$slug] ?? null)?->$field) ?: $fallback;
@endphp
@section('title', __('Inicio'))
@section('description', config('site.seo.description'))
@section('keywords', config('site.seo.keywords'))
{{-- Open Graph Meta Tags --}}
@section('og_title', config('site.og.title'))
@section('og_description', config('site.og.description'))
@section('og_image', brand_og_image())
@section('og_type', 'website')
@section('og_url', url()->current())
{{-- Twitter Card Meta Tags --}}
@section('twitter_title', config('site.name'))
@section('twitter_description', config('site.twitter.description'))
@section('twitter_image', brand_twitter_image())
@section('header_classes', 'header-transparent')
@push('styles')
@endpush
@section('content')
{{-- Hero Section - Video background (poster mientras carga, luego video en play) estilo Amflow --}}
@php
$heroPosterUrl = isset($carouselImages) && $carouselImages->count() > 0
? (filter_var($carouselImages->first()->image_path, FILTER_VALIDATE_URL) ? $carouselImages->first()->image_path : asset($carouselImages->first()->image_path))
: site_asset_url('hero_background', 'cd-project/img/demos/product-landing/backgrounds/background-1.jpg');
$heroVideoPath = $heroVideoPath ?? '';
$heroVideoEnabled = ($heroVideoEnabled ?? false) && $heroVideoPath !== '';
$heroVideoUrl = $heroVideoPath;
@endphp
{{ config('site.welcome.features', __('Tecnología avanzada | Calidad superior | Diseño innovador')) }}
* {{ config('site.welcome.disclaimer') }}
{{ config('site.welcome.subtitle', __('Descubre nuestros productos de alta calidad')) }}
{{ config('site.name') }} {{ config('site.welcome.highlight', 'ONE') }}
{{ config('site.welcome.products_description', __('Nuestros productos ofrecen diferentes modelos diseñados para diferentes necesidades. Cada modelo combina tecnología avanzada con componentes de alta calidad.')) }}
{{ $mStr('select', 'card_specs', 'Rock Shox Domain 180mm | SRAM NX 12v | MAGURA MT5 | Batería LG 48V/15Ah') }}
{{ $mStr('ultra', 'card_specs', 'Rock Shox ZEB 180mm | SRAM UDH66 12v | MAGURA MT7 | Batería LG 48V/15Ah') }}
{{ $mStr('factory', 'card_specs', 'FOX 38 170mm | SRAM GX EAGLE Electrónica | MAGURA MT7 | Batería LG 48V/15Ah') }}
{{ $reference->position ?? $reference->company ?? '' }}
"{{ $reference->testimonial }}"
{{ __('La revista líder mundial en eMTB') }}
{{-- --}}"{{ __('Radoc Bikes representa la evolución perfecta entre tecnología avanzada y diseño innovador. Una marca que está redefiniendo el futuro del mountain biking en Sudamérica.') }}"
{{ __('Rider de eBike. YouTuber') }}
{{-- --}}"{{ __('Radoc Bikes está revolucionando el mercado con su enfoque en calidad premium y tecnología de punta. Una marca que definitivamente está marcando la diferencia en el sector.') }}"
{{ __('Medios de mountain bike') }}
{{-- --}}"{{ __('Radoc Bikes demuestra que la innovación no conoce fronteras. Con su enfoque en la excelencia técnica y el diseño, están estableciendo nuevos estándares en la industria del mountain biking.') }}"
{{ Str::limit($post->description ?? $post->excerpt ?? '', 120) }}
@if(Route::has('blog.post')) {{ __('Read More') }} @endif
{{ __('Activa el módulo blog y marca posts como destacados, o publica entradas.') }}