File: D:/HostingSpaces/SBogers10/stafa.komma.pro/resources/views/site/templates/webshop.blade.php
@extends('site.master')
@section('title', $page->translation->meta_title)
@section('meta_description', $page->translation->meta_description)
@section('content')
<div class="o-body">
@include('site.organisms.hero', [
'heroImages' => $page->documents->toArray(),
'heroHeader' => $page->translation->hero_title,
'heroText' => $page->translation->hero_description,
'heroActionButtonLabel' => !empty($heroButton) ? $heroButton->translation->label : null,
'heroActionButtonLink' => !empty($heroButton) ? $heroButton->translation->url : null,
])
<div class="u-bg-wrapper">
<div class="u-ornament-triangle"></div>
@include('site.organisms.components')
</div>
@include('site.organisms.cardGrid', [
'headerTitle' => __('site/projects.featuredTitle'),
'headerLinkLabel' => __('site/projects.allProjectsLabel'),
'parentLink' => $links->projects->route,
'cards' => $featuredProjects,
])
<div class="o-block l-contain">
@include('site.components.servicepoint', [
'servicepoint' => $servicepoint,
'servicepointText' => __('site/webshop.servicepoint.text'),
'servicepointButtonText' => __('site/webshop.servicepoint.buttonText'),
'servicepointButtonLink' => $links->quotation->route,
'alternate' => false,
])
</div>
</div>
@endsection