12-05-2026 Frontend dev
Some checks are pending
linter / quality (push) Waiting to run
tests / ci (push) Waiting to run

This commit is contained in:
Kevin Adametz 2026-05-12 18:32:33 +02:00
parent 405df0a122
commit 5b8bdf4182
779 changed files with 480564 additions and 6241 deletions

View file

@ -13,26 +13,23 @@ return [
*/
'protocol' => env('APP_PROTOCOL', 'https://'),
'domain_portal' => env('APP_PORTAL_NAME', 'pr-copilot.test'),
'domain_portal' => env('APP_PORTAL_NAME', 'presseportale.test'),
'domain_presseecho' => env('APP_PRESSEECHO_NAME', 'presseecho.test'),
'domain_businessportal' => env('APP_BUSINESSPORTAL_NAME', 'businessportal24.test'),
'domain_portal_url' => env('APP_PORTAL_URL', 'https://pr-copilot.test'),
'domain_portal_url' => env('APP_PORTAL_URL', 'https://presseportale.test'),
'domain_presseecho_url' => env('APP_PRESSEECHO_URL', 'https://presseecho.test'),
'domain_businessportal_url' => env('APP_BUSINESSPORTAL_URL', 'https://businessportal24.test'),
'domains' => [
'portal' => [
'domain_name' => env('APP_PORTAL_NAME', 'pr-copilot.test'),
'url' => env('APP_PORTAL_URL', 'https://pr-copilot.test'),
'asset_url' => 'https://assets.pr-copilot.test',
'domain_name' => env('APP_PORTAL_NAME', 'presseportale.test'),
'url' => env('APP_PORTAL_URL', 'https://presseportale.test'),
'asset_url' => env('APP_PORTAL_ASSET_URL', 'https://assets.presseportale.test'),
'theme' => 'main',
'view_prefix' => 'portal',
'assets_dir' => 'build/portal',
'description' => 'Backend Page PR-Copilot',
'description' => 'Backend Presseportale',
'color_scheme' => [
'primary' => env('APP_PORTAL_PRIMARY', '#526266'), //
'secondary' => env('APP_PORTAL_SECONDARY', '#82a0a7'), //
@ -49,10 +46,26 @@ return [
'assets_dir' => 'build/web',
'description' => 'Frontend Page Presseecho',
'color_scheme' => [
'primary' => env('APP_PRESSEECHO_PRIMARY', '#345636'), //
'secondary' => env('APP_PRESSEECHO_SECONDARY', '#6b8f71'), //
'primary' => env('APP_PRESSEECHO_PRIMARY', '#345636'),
'secondary' => env('APP_PRESSEECHO_SECONDARY', '#6b8f71'),
],
'font' => 'Montserrat',
'brand' => [
'name' => 'presseecho',
'accent' => null,
'tagline_short' => 'Pressemitteilungen · DACH',
'tagline_long' => 'Fachmeldungen aus Wirtschaft und Industrie. Redaktionell geprüft. Strukturiert distribuiert.',
'footer_legal' => '© :year presseecho.com · Alle Rechte vorbehalten',
'about_label' => 'Über presseecho',
'meta_title' => 'Aktuelle Pressemitteilungen aus Wirtschaft & Industrie presseecho',
'meta_description' => 'Redaktionell kuratierte Pressemitteilungen aus Wirtschaft und Industrie im DACH-Raum.',
'newsletter_topics' => [
['name' => 'Tageszusammenfassung', 'meta' => 'MoFr · 07:00 Uhr', 'active' => true],
['name' => 'Wochenrückblick', 'meta' => 'Sonntags · 18:00 Uhr', 'active' => false],
['name' => 'Energie & Klima', 'meta' => 'ab Content-Score 80 · max. 2× pro Woche', 'active' => true],
['name' => 'Industrie & Forschung', 'meta' => 'ausgewählt von der Redaktion · ca. 35 Mails/Monat', 'active' => false],
],
],
],
'businessportal24' => [
@ -64,10 +77,26 @@ return [
'assets_dir' => 'build/web',
'description' => 'Frontend Page Businessportal24',
'color_scheme' => [
'primary' => env('APP_BUSINESSPORTAL_PRIMARY', '#cf3628'), //
'secondary' => env('APP_BUSINESSPORTAL_SECONDARY', '#f0834a'), //
'primary' => env('APP_BUSINESSPORTAL_PRIMARY', '#cf3628'),
'secondary' => env('APP_BUSINESSPORTAL_SECONDARY', '#f0834a'),
],
'font' => 'Montserrat',
'brand' => [
'name' => 'businessportal',
'accent' => '24',
'tagline_short' => 'Pressemitteilungen · DACH',
'tagline_long' => 'Veröffentlichungs-Portal für redaktionell geprüfte Pressemitteilungen aus Deutschland, Österreich und der Schweiz.',
'footer_legal' => '© :year businessportal24.com · Alle Rechte vorbehalten',
'about_label' => 'Über businessportal24',
'meta_title' => 'Aktuelle Pressemitteilungen aus der deutschen Wirtschaft businessportal24',
'meta_description' => 'Pressemitteilungen aus Deutschland, Österreich und der Schweiz. Redaktionell geprüft. Strukturiert distribuiert.',
'newsletter_topics' => [
['name' => 'Tageszusammenfassung', 'meta' => 'MoFr · 07:00 Uhr', 'active' => true],
['name' => 'Wochenrückblick', 'meta' => 'Sonntags · 18:00 Uhr', 'active' => false],
['name' => 'Energie & Klima', 'meta' => 'ab Content-Score 80 · max. 2× pro Woche', 'active' => true],
['name' => 'IPO & M&A', 'meta' => 'ausgewählt von der Redaktion · ca. 35 Mails/Monat', 'active' => false],
],
],
],
],
];