42 lines
1.4 KiB
PHP
42 lines
1.4 KiB
PHP
@extends('web.layouts.web-master')
|
||
|
||
@php
|
||
$brand = config('domains.domains.presseecho.brand', []);
|
||
@endphp
|
||
|
||
@section('title', $brand['meta_title'] ?? 'Aktuelle Pressemitteilungen aus Wirtschaft & Industrie – presseecho')
|
||
@section('meta_description', $brand['meta_description'] ?? 'Redaktionell kuratierte Pressemitteilungen aus Wirtschaft und Industrie im DACH-Raum.')
|
||
|
||
@section('content')
|
||
<x-web.site-header />
|
||
|
||
<main class="bg-bg text-ink">
|
||
<x-web.focus-hero
|
||
:lead-release="$leadRelease ?? null"
|
||
:side-releases="$sideReleases ?? []" />
|
||
|
||
<section class="max-w-layout mx-auto px-8 mt-16">
|
||
<div class="grid gap-9 grid-cols-1 lg:grid-cols-[1.7fr_1fr]">
|
||
<livewire:web.press-release-feed :portal="\App\Enums\Portal::Presseecho->value" />
|
||
|
||
<aside class="flex flex-col gap-9">
|
||
<x-web.most-read :releases="$mostReadReleases ?? []" />
|
||
<x-web.publisher-cta />
|
||
<x-web.active-newsrooms :companies="$activeNewsrooms ?? []" />
|
||
</aside>
|
||
</div>
|
||
</section>
|
||
|
||
<x-web.industry-spotlight />
|
||
|
||
<x-web.events-week />
|
||
|
||
<x-web.industry-index :industries="($industryIndex ?? collect())->isNotEmpty() ? $industryIndex->toArray() : null" />
|
||
|
||
<x-web.newsletter-strip />
|
||
|
||
<x-web.quality-summary :stats="$homeStats ?? []" />
|
||
</main>
|
||
|
||
<x-web.site-footer />
|
||
@endsection
|