10-04-2026
This commit is contained in:
parent
4d6b4930b2
commit
4bb89aad8c
836 changed files with 52961 additions and 5950 deletions
50
resources/views/web/privacy.blade.php
Normal file
50
resources/views/web/privacy.blade.php
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
@extends('web.layouts.web-master')
|
||||
|
||||
@php
|
||||
$legal = legal_page('privacy');
|
||||
@endphp
|
||||
|
||||
@section('title', $legal['meta_title'] . ' - ' . ($domainName ?? config('app.name')))
|
||||
|
||||
@section('content')
|
||||
<div class="bg-background">
|
||||
<livewire:web.components.ui.header />
|
||||
|
||||
<main class="variante-glass-flow">
|
||||
<section class="section-padding">
|
||||
<div class="container-padding">
|
||||
<div class="max-w-3xl mx-auto">
|
||||
<h1 class="text-hero mb-8">{{ $legal['title'] }}</h1>
|
||||
<p class="text-muted-foreground text-sm mb-12">
|
||||
{{ $legal['subtitle'] }}
|
||||
</p>
|
||||
|
||||
<div class="prose-legal space-y-8 text-foreground">
|
||||
{!! $legal['content'] !!}
|
||||
</div>
|
||||
|
||||
{{-- Cookie-Einstellungen & Google-Analytics-Infos (CookieConsent-Paket) --}}
|
||||
<div class="prose-legal space-y-8 text-foreground">
|
||||
<x-cookie-consent::privacy-info />
|
||||
</div>
|
||||
|
||||
<div class="mt-12 pt-8 border-t border-border/30">
|
||||
<a href="{{ url()->previous() }}" class="text-secondary hover:underline text-sm">
|
||||
{{ $legal['back_link'] }}
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<livewire:web.components.ui.footer />
|
||||
</div>
|
||||
@endsection
|
||||
|
||||
@push('styles')
|
||||
<style>
|
||||
[x-cloak] { display: none !important; }
|
||||
.prose-legal a { transition: color 0.2s; }
|
||||
</style>
|
||||
@endpush
|
||||
Loading…
Add table
Add a link
Reference in a new issue