@extends('layouts.app') @php // Locale über die Registry (erkennt auch den EN-Host privacy.kotsch.tech) — siehe Layout. $routeLocale = (new \App\Support\SubdomainRegistry())->currentLocale(); $tr = fn ($de, $en) => $routeLocale === 'en' ? $en : $de; $c = $page['accent'] ?? '#0F766E'; @endphp @section('title', $page['title'] . ' — ' . $tr('Datenschutz', 'Privacy') . ' | KOTSCH.TECH') @section('meta_description', \Illuminate\Support\Str::limit(strip_tags($page['intro']), 155)) @section('content') @include('datenschutz.partials.styles')
{{ $tr('Zurück zur Datenschutz-Übersicht', 'Back to privacy overview') }} {{-- ── Hero mit Medaillon ─────────────────────────────────────── --}}
{{ $tr('Datenschutz', 'Privacy') }}

{{ $page['title'] }}

@if(!empty($page['platforms']))
@foreach($page['platforms'] as $p){{ $p }}@endforeach
@endif
@if(!empty($page['summary']))

{{ $page['summary'] }}

@endif

{{ $page['intro'] }}

{{-- ── Welche Daten (nummerierter Fluss) ──────────────────────── --}} @if(!empty($page['data']))

{{ $tr('Welche Daten verarbeitet werden', 'What data is processed') }}

@foreach($page['data'] as $i => $d)
{{ sprintf('%02d', $i + 1) }}
{{ $d['label'] }}

{{ $d['detail'] }}

@endforeach
@endif {{-- ── Gut zu wissen ──────────────────────────────────────────── --}} @if(!empty($page['extra']))

{{ $tr('Gut zu wissen', 'Good to know') }}

@foreach($page['extra'] as $i => $e)
{{ $e['h'] }}

{{ $e['p'] }}

@endforeach
@endif {{-- ── Spec-Panel: Zweck / Rechtsgrundlage / Speicherung / Dritte / Cookies ── --}}

{{ $tr('Zweck, Rechtsgrundlage & Speicherung', 'Purpose, legal basis & storage') }}

@if(!empty($page['purpose']))
{{ $tr('Zweck', 'Purpose') }}

{{ $page['purpose'] }}

@endif @if(!empty($page['legal_basis']))
{{ $tr('Rechtsgrundlage', 'Legal basis') }}

{{ $page['legal_basis'] }}

@endif @if(!empty($page['retention']))
{{ $tr('Speicherdauer', 'Retention') }}

{{ $page['retention'] }}

@endif
{{ $tr('Empfänger / Dritte', 'Recipients / third parties') }} @if(!empty($page['third_parties']))
    @foreach($page['third_parties'] as $tp)
  • {{ $tp }}
  • @endforeach
@else

{{ $tr('Keine Weitergabe an Dritte.', 'No sharing with third parties.') }}

@endif
{{ $tr('Cookies', 'Cookies') }}

{{ $page['cookies'] ? $tr('Es können (auch einwilligungspflichtige) Cookies zum Einsatz kommen — Details in der allgemeinen Erklärung.', 'Cookies (including consent-based ones) may be used — details in the general policy.') : $tr('Für diese Funktion sind keine zustimmungspflichtigen Cookies erforderlich.', 'No consent-based cookies are required for this function.') }}

{{-- ── Footer-CTA ─────────────────────────────────────────────── --}}

{{ $tr('Fragen zum Datenschutz in diesem Bereich?', 'Questions about privacy in this area?') }}

{{ $tr('Allgemeine Erklärung', 'General policy') }} {{ $tr('E-Mail schreiben', 'Send email') }}
@endsection