130 lines
6.4 KiB
PHP
130 lines
6.4 KiB
PHP
<?php
|
|
|
|
use Livewire\Volt\Component;
|
|
|
|
new class extends Component {
|
|
public function with(): array
|
|
{
|
|
// Mock-Daten für Press Releases Grid
|
|
return [
|
|
'releases' => [
|
|
[
|
|
'slug' => 'ki-revolution-deutsche-unternehmen',
|
|
'title' => 'KI-Revolution: Deutsche Unternehmen investieren Milliarden in Automatisierung',
|
|
'teaser' => 'Eine neue Studie zeigt: Unternehmen im DACH-Raum planen für 2025 Investitionen in Höhe von über 15 Milliarden Euro in KI-gestützte Automatisierungslösungen.',
|
|
'company' => 'TechVision Analytics',
|
|
'industry' => 'IT & Software',
|
|
'region' => 'Deutschland',
|
|
'date' => '17. Okt 2024',
|
|
'contentType' => 'ANALYSE',
|
|
'hasImage' => true,
|
|
'hasPdf' => true,
|
|
'imageUrl' => 'https://images.unsplash.com/photo-1677442136019-21780ecad995?w=800&h=600&fit=crop',
|
|
'companyLogo' => 'logo',
|
|
],
|
|
[
|
|
'slug' => 'energiewende-beschleunigt',
|
|
'title' => 'Energiewende beschleunigt sich: Neue Rekorde bei erneuerbaren Energien',
|
|
'teaser' => 'Im ersten Quartal 2025 erreicht der Anteil erneuerbarer Energien am Strommix einen historischen Höchststand von 58%.',
|
|
'company' => 'GreenPower Deutschland',
|
|
'industry' => 'Energie',
|
|
'region' => 'Deutschland',
|
|
'date' => '16. Okt 2024',
|
|
'contentType' => 'FACHMELDUNG',
|
|
'hasImage' => true,
|
|
'imageUrl' => 'https://images.unsplash.com/photo-1466611653911-95081537e5b7?w=800&h=600&fit=crop',
|
|
],
|
|
[
|
|
'slug' => 'fintech-startup-series-b',
|
|
'title' => 'FinTech-Startup sichert sich 45 Millionen Euro in Series-B-Runde',
|
|
'teaser' => 'Das Berliner FinTech-Startup PaymentFlow konnte in einer Series-B-Finanzierungsrunde 45 Millionen Euro einsammeln.',
|
|
'company' => 'PaymentFlow GmbH',
|
|
'industry' => 'Finanzen',
|
|
'region' => 'Berlin',
|
|
'date' => '15. Okt 2024',
|
|
'contentType' => 'FACHMELDUNG',
|
|
'hasPdf' => true,
|
|
'imageUrl' => null,
|
|
],
|
|
[
|
|
'slug' => 'gesundheitsbranche-digital',
|
|
'title' => 'Gesundheitsbranche setzt verstärkt auf digitale Lösungen',
|
|
'teaser' => 'Telemedizin und KI-gestützte Diagnostik werden zum Standard: 78% der Krankenhäuser in Deutschland planen Investitionen.',
|
|
'company' => 'MediTech Solutions',
|
|
'industry' => 'Gesundheit',
|
|
'region' => 'München',
|
|
'date' => '14. Okt 2024',
|
|
'contentType' => 'INTERVIEW',
|
|
'hasImage' => true,
|
|
'imageUrl' => 'https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=800&h=600&fit=crop',
|
|
],
|
|
[
|
|
'slug' => 'automobilindustrie-transformation',
|
|
'title' => 'Automobilindustrie: Transformation zur E-Mobilität nimmt Fahrt auf',
|
|
'teaser' => 'Führende Automobilhersteller kündigen massive Investitionen in E-Mobilität an. Bis 2030 sollen 80% der Neufahrzeuge elektrisch sein.',
|
|
'company' => 'Auto Industry Report',
|
|
'industry' => 'Automobil',
|
|
'region' => 'Stuttgart',
|
|
'date' => '13. Okt 2024',
|
|
'contentType' => 'ANALYSE',
|
|
'hasImage' => true,
|
|
'hasPdf' => true,
|
|
'imageUrl' => 'https://images.unsplash.com/photo-1593941707882-a5bba14938c7?w=800&h=600&fit=crop',
|
|
],
|
|
[
|
|
'slug' => 'cybersecurity-massnahmen',
|
|
'title' => 'Cybersecurity: Unternehmen verstärken Schutzmaßnahmen gegen Hackerangriffe',
|
|
'teaser' => 'Nach einer Serie von Cyberattacken erhöhen deutsche Unternehmen ihre Investitionen in IT-Sicherheit um durchschnittlich 35%.',
|
|
'company' => 'CyberSafe Europe',
|
|
'industry' => 'IT & Software',
|
|
'region' => 'Frankfurt',
|
|
'date' => '12. Okt 2024',
|
|
'contentType' => 'FACHMELDUNG',
|
|
'hasImage' => true,
|
|
'imageUrl' => 'https://images.unsplash.com/photo-1550751827-4bd374c3f58b?w=800&h=600&fit=crop',
|
|
],
|
|
]
|
|
];
|
|
}
|
|
}; ?>
|
|
|
|
<div>
|
|
@php
|
|
$theme = config('app.theme', 'businessportal24');
|
|
$isPresseecho = $theme === 'presseecho';
|
|
@endphp
|
|
|
|
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
|
|
@foreach($releases as $release)
|
|
@if($isPresseecho)
|
|
{{-- Presseecho: Hochwertige Magazine-Card --}}
|
|
<x-web.presseecho-release-card
|
|
:title="$release['title']"
|
|
:teaser="$release['teaser']"
|
|
:company="$release['company']"
|
|
:industry="$release['industry']"
|
|
:region="$release['region']"
|
|
:date="$release['date']"
|
|
:contentType="$release['contentType'] ?? 'FACHMELDUNG'"
|
|
:slug="$release['slug']"
|
|
:imageUrl="$release['imageUrl'] ?? null"
|
|
/>
|
|
@else
|
|
{{-- Businessportal24: Standard-Card --}}
|
|
<x-web.press-release-card
|
|
:title="$release['title']"
|
|
:teaser="$release['teaser']"
|
|
:company="$release['company']"
|
|
:industry="$release['industry']"
|
|
:region="$release['region']"
|
|
:date="$release['date']"
|
|
:hasImage="$release['hasImage'] ?? false"
|
|
:hasPdf="$release['hasPdf'] ?? false"
|
|
:slug="$release['slug']"
|
|
:imageUrl="$release['imageUrl'] ?? null"
|
|
:companyLogo="$release['companyLogo'] ?? null"
|
|
/>
|
|
@endif
|
|
@endforeach
|
|
</div>
|
|
</div>
|