This commit is contained in:
2026-05-13 17:11:09 +02:00
commit ea63897455
2785 changed files with 359868 additions and 0 deletions

View File

@@ -0,0 +1,65 @@
@extends('layouts.site')
@push('head')
@if(!empty($seo['meta_description']))
<meta name="description" content="{{ $seo['meta_description'] }}">
@endif
@if(!empty($seo['meta_keywords']))
<meta name="keywords" content="{{ $seo['meta_keywords'] }}">
@endif
@if(!empty($seo['meta_author']))
<meta name="author" content="{{ $seo['meta_author'] }}">
@endif
@if(!empty($seo['meta_publisher']))
<meta name="publisher" content="{{ $seo['meta_publisher'] }}">
@endif
@if(!empty($seo['meta_copyright']))
<meta name="copyright" content="{{ $seo['meta_copyright'] }}">
@endif
@if(!empty($seo['meta_refresh']))
<meta http-equiv="refresh" content="{{ $seo['meta_refresh'] }}">
@endif
<meta property="og:type" content="{{ $seo['og_type'] }}">
<meta property="og:title" content="{{ $seo['og_title'] }}">
@if(!empty($seo['og_description']))
<meta property="og:description" content="{{ $seo['og_description'] }}">
@endif
@if(!empty($seo['og_image']))
<meta property="og:image" content="{{ $seo['og_image'] }}">
@endif
<meta property="og:url" content="{{ request()->url() }}">
@endpush
@section('content')
@php
/*
<section class="hero-area">
<div class="video-hero">
<x-block keycode="HOME-PAGE-VIDEO"></x-block>
</div>
<a href="{{ route('contact') }}" class="lets-talk-btn">Lets talk</a>
<div class="language-action">
<ul>
@foreach($activeLanguages as $language)
<li @class(['active' => app()->getLocale() === $language->iso])>
<button type="button" onclick="window.location.href='{{ route('home', ['locale' => $language->iso]) }}'">{{ strtoupper($language->iso) }}</button>
</li>
@endforeach
</ul>
</div>
</section>
*/
@endphp
<x-block keycode="HOME-PAGE-AREA-HOME"></x-block>
<x-block keycode="HOME-PAGE-SHOWCASE"></x-block>
<x-block keycode="HOME-PAGE-ABOUT-AREA"></x-block>
<x-block keycode="HOME-PAGE-VIDEO"></x-block>
<x-block keycode="HOME-PAGE-WORKING-TOGETHER"></x-block>
<x-block keycode="HOME-PAGE-BRANDING-AREA"></x-block>
<x-block keycode="HOME-PAGE-BRIEF-AREA"></x-block>
<x-block keycode="HOME-PAGE-CTA-AREA"></x-block>
@endsection