{{-- resources/views/welcome.blade.php --}} @extends('layouts.base') @php $locale = app()->getLocale(); //$locale = 'fr'; // Forcer le français pour l'instant $iconBase = "assets/icons/{$locale}"; header("Location: " . URL::to($locale . '/login'), true, 302); // redirection exit(); @endphp {{-- Redirect::to('{$locale}/login') }} {{-- @include('partials.bottom_nav', [ 'bottomInfo' => [ 'label' => __('Plus d’information'), 'target' => '#waypoint-details', // un id dans la page ], 'bottomTabs' => [ [ 'icon' => "$iconBase/addV_picto.svg", 'label' => __('Join'), 'drawer' => 'maps', // ouvre le tiroir "maps" ], [ 'icon' => "$iconBase/share_picto.svg", 'label' => __('Create a waypoint'), 'drawer' => 'share', // ouvre le tiroir "share" ], [ 'icon' => "$iconBase/myV_picto.svg", 'label' => __('My Vereego'), 'href' => lr('search'), 'primary' => false, ], ], ]) --}} @section('title', 'VereeGo') @push('nav.left') {{ __('Qui sommes-nous') }} {{ __('Concept') }} {{ __('Contact') }} @endpush @section('content') @php $img = [ 'logo' => '/assets/images/Logo_Vereego_500.png', 'hero_phone' => '/assets/wp/flying-iphone-12-vereego-3.png', 'how_map' => '/assets/images/Simulator-3.png', 'round_bg' => '/assets/images/round_bg.png', 'easy' => '/assets/images/easy-to-manage-icon.png', 'top' => '/assets/images/top_rose.svg', 'form_mock' => '/assets/images/screencap-1.png', 'card_mock' => '/assets/images/screencap--3.png', 'appstore' => '/assets/wp/app-store-img-footer-1.png', 'playstore' => '/assets/wp/google-play-img-footer-1.png', 'icon_protect' => '/assets/wp/features-icon-1-1.png', 'icon_innov' => '/assets/wp/features-icon-2-1.png', 'icon_vision' => '/assets/wp/features-icon-3-1.png', 'icon_dl' => '/assets/wp/features-icon-4-1.png', 'icon_qr' => '/assets/wp/features-icon-5-1.png', 'icon_share' => '/assets/wp/features-icon-6-1.png', ]; @endphp Top {{-- HERO --}}

{{ __('hero_title') }}

{{ __('hero_subtitle') }}

{{ __('download_app') }}
{{ __('app_image_alt') }}
{{-- QUI SOMMES-NOUS --}}

{{ __('about_title') }}

{!! nl2br(e(__('about_text'))) !!}

{{ __('about_precision_title') }}

{{ __('about_precision_text') }}

{{ __('about_innovation_title') }}

{{ __('about_innovation_text') }}

{{ __('about_vision_title') }}

{{ __('about_vision_text') }}

{{-- COMMENT ÇA MARCHE --}}

{{ __('how_title') }}

{{ __('how_step1_title') }}

{{ __('how_step1_text') }}

{{ __('how_step2_title') }}

{{ __('how_step2_text') }}

{{ __('how_step3_title') }}

{{ __('how_step3_text') }}

{{ __('map_capture_alt') }}
{{-- SIMPLICITÉ & PRÉCISION --}}
{{ __('form_alt') }}

{{ __('simple_precise_title') }}

{{ __('simple_precise_text') }}

{{-- FLEXIBILITÉ --}}

{{ __('flex_title') }}

{{ __('flex_text') }}

{{ __('card_share_alt') }}
{{-- CONTACT --}}

{{ __('Nous contacter') }}

@if(session('ok'))
{{ session('ok') }}
@endif @if(session('err'))
{{ session('err') }}
@endif
@csrf {{-- Honeypot & time-trap --}}
@error('name')
{{ $message }}
@enderror @error('email')
{{ $message }}
@enderror @error('message')
{{ $message }}
@enderror
{{-- CTA FINAL --}}

{{ __('cta_title') }}

@endsection