new updates

This commit is contained in:
2026-05-25 17:41:07 +02:00
parent ea63897455
commit 025f097b68
713 changed files with 71578 additions and 1958 deletions

View File

@@ -1,15 +1,41 @@
@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')
<x-block keycode="ABOUT-PAGE-MAIN"></x-block>
<x-block keycode="ABOUT-PAGE-ABOUT-AREA"></x-block>
<x-block keycode="ABOUT-PAGE-WORKING-TOGETHER"></x-block>
<x-block keycode="ABOUT-PAGE-CREATIVE"></x-block>
<x-block keycode="ABOUT-PAGE-SLIDER"></x-block>
<x-block keycode="ABOUT-PAGE-INSPIRATION"></x-block>
@php
/*<x-block keycode="ABOUT-PAGE-ABOUT-AREA"></x-block>*/
@endphp
<x-block keycode="HOME-PAGE-BRANDING-AREA"></x-block>
<x-block keycode="ABOUT-PAGE-ABOUT2-AREA"></x-block>
<x-block keycode="ABOUT-PAGE-BRANDING"></x-block>
<x-block keycode="ABOUT-PAGE-WORKING-TOGETHER-BOTTOM"></x-block>
@endsection

View File

@@ -1,12 +1,93 @@
@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($formErrors = $errors ?? new \Illuminate\Support\ViewErrorBag())
<div class="contact-area">
<div class="container">
<div class="row"><div class="col-lg-12"><div class="contact-wrapper"><div class="contact-title"><h2>{{ trans('fp.LETS_MAKE_MAGIC') }}</h2><p>{{ trans('fp.CONTACT_DESCRIPTION') }}</p></div><div class="contact-form"><form action="{{ route('contact.submit') }}" method="POST">@csrf<div class="single-item"><input type="text" name="name" value="{{ old('name') }}" placeholder="{{ trans('fp.NAME') }}">@if ($formErrors->has('name'))<p class="text-danger mt-2">{{ $formErrors->first('name') }}</p>@endif</div><div class="single-item"><input type="email" name="email" value="{{ old('email') }}" placeholder="{{ trans('fp.EMAIL') }}">@if ($formErrors->has('email'))<p class="text-danger mt-2">{{ $formErrors->first('email') }}</p>@endif</div><div class="single-item"><textarea name="message" placeholder="{{ trans('fp.MESSAGE') }}">{{ old('message') }}</textarea>@if ($formErrors->has('message'))<p class="text-danger mt-2">{{ $formErrors->first('message') }}</p>@endif</div><div class="single-item submit-btn"><button type="submit" class="btn__primary">{{ trans('fp.SEND_IT') }} <span><img src="{{ $assetBase }}/img/send.svg" alt="{{ trans('fp.SEND') }}"></span></button></div></form></div></div></div></div>
<div class="row">
<div class="col-lg-12">
<div class="contact-wrapper">
<div class="contact-title">
<h2>{{ trans('fp.LETS_MAKE_MAGIC') }}</h2>
<p>{{ trans('fp.CONTACT_DESCRIPTION') }}</p>
</div>
<div class="contact-form">
<form action="{{ route('contact.submit') }}" method="POST">
@csrf
@error('form')
<p class="text-danger mb-3">{{ $message }}</p>
@enderror
<div aria-hidden="true" style="position:absolute;left:-9999px;opacity:0;pointer-events:none;">
<label for="website">Website</label>
<input id="website" type="text" name="website" value="{{ old('website') }}" tabindex="-1" autocomplete="off">
</div>
<div class="single-item">
<input type="text" name="name" value="{{ old('name') }}" placeholder="{{ trans('fp.NAME') }}">
@error('name')
<p class="text-danger mt-2">{{ $message }}</p>
@enderror
</div>
<div class="single-item">
<input type="email" name="email" value="{{ old('email') }}" placeholder="{{ trans('fp.EMAIL') }}">
@error('email')
<p class="text-danger mt-2">{{ $message }}</p>
@enderror
</div>
<div class="single-item">
<textarea name="message" placeholder="{{ trans('fp.MESSAGE') }}">{{ old('message') }}</textarea>
@error('message')
<p class="text-danger mt-2">{{ $message }}</p>
@enderror
</div>
<div class="single-item submit-btn">
<button type="submit" class="btn__primary">
{{ trans('fp.SEND_IT') }}
<span><img src="{{ $assetBase }}/img/send.svg" alt="{{ trans('fp.SEND') }}"></span>
</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<section class="contact-note-area"><div class="container"><div class="row"><div class="col-lg-12"><div class="note-text"><h2>Follow us on Instagram, LinkedIn or Behance for the latest news &amp; updates.</h2></div></div></div></div></section>
<x-block keycode="CONTACT-NOTE"></x-block>
@endsection

View File

@@ -167,6 +167,9 @@
</div>
@endif
<br>
<x-block keycode="HOME-PAGE-CTA-AREA"></x-block>
</section>
@endsection

View File

@@ -1,34 +1,5 @@
@extends('layouts.site')
@section('content')
<div class="contact-area">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="contact-wrapper">
<div class="contact-title">
<h2>Thank you!</h2>
<p>Your question has been sent, we will <br>
get back to you shortly.</p>
</div>
<div class="back-home">
<a href="{{ route('home') }}" class="btn__primary">Back to homepage <span><img src="{{ $assetBase }}/img/send.svg" alt=""></span></a>
</div>
</div>
</div>
</div>
</div>
</div>
<section class="contact-note-area">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="note-text">
<h2>Follow us on Instagram, LinkedIn or Behance for the latest news &amp; updates.</h2>
</div>
</div>
</div>
</div>
</section>
<x-block keycode="CONTACT-THANK-YOU"></x-block>
@endsection

View File

@@ -1,5 +1,35 @@
@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')
<section class="portfolio-area">
<div class="container">
@@ -55,6 +85,9 @@
</div> <!-- end .row -->
</div> <!-- end .container -->
</section> <!-- end .portfolio-area -->
<x-block keycode="HOME-PAGE-CTA-AREA"></x-block>
@endsection
@push('scripts')