Files
aritmija/resources/views/pages/home.blade.php
2026-05-13 17:11:09 +02:00

65 lines
2.1 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
@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