@extends('marketing._layout') @section('title', __(':title — Pitchbar', ['title' => $content['title'] ?? __('Privacy policy')])) @section('content') @php $contact = data_get($content, 'contact', []); $collection = data_get($content, 'collection', []); $usage = data_get($content, 'usage', []); $retention = data_get($content, 'retention', []); $rights = data_get($content, 'rights', []); $gdpr = data_get($content, 'gdpr', []); @endphp

{{ data_get($content, 'eyebrow') }}

{{ data_get($content, 'title') }}

{{ data_get($content, 'summary') }}

{{ __('Effective date:') }} {{ data_get($content, 'effective_date') }}

{{ __('Contact') }}

{{ data_get($contact, 'team_name') }}
{{ data_get($contact, 'email') }}
{{ data_get($contact, 'response_sla') }}

{{ __('What we collect') }}

{{ data_get($collection, 'summary') }}

{{ __('How we use data') }}

{{ data_get($usage, 'summary') }}

{{ __('Retention') }}

{{ data_get($retention, 'summary') }}

{{ __('Your rights') }}

{{ data_get($rights, 'summary') }}

{{ __('Data export & deletion (GDPR)') }}

{{ data_get($gdpr, 'summary') }}

{{ __('Request contact:') }} {{ data_get($gdpr, 'request_email') }}

{{ data_get($gdpr, 'request_instructions') }}

@endsection