67 lines
3.8 KiB
PHP
67 lines
3.8 KiB
PHP
<footer class="section-dark section-padding">
|
||
<div class="container-padding">
|
||
{{-- Main Content --}}
|
||
<div class="text-center spacing-section">
|
||
<div class="spacing-section">
|
||
<div class="flex items-center justify-center">
|
||
<img src="{{ asset(\App\Helpers\ThemeHelper::getLogoPath('negative')) }}"
|
||
alt="{{ $domainName ?? 'B2in' }} Logo" class="h-14 w-auto"
|
||
width="120" height="56"
|
||
loading="lazy" />
|
||
</div>
|
||
|
||
<div class="container-narrow spacing-content">
|
||
<h2 class="text-section-title text-dark-text leading-tight">
|
||
Connecting Design and <span class="text-secondary">Property</span>
|
||
</h2>
|
||
<p class="text-dark-muted text-sm mt-4">Marcel Scheibe – {{ __('ui.founder_ceo') }}</p>
|
||
</div>
|
||
|
||
<hr class="border-t border-dark-muted/30 mt-12 pt-4">
|
||
</div>
|
||
|
||
{{-- Links --}}
|
||
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 text-left max-w-4xl mx-auto">
|
||
<div class="spacing-small text-center">
|
||
<a href="{{ route('privacy') }}" class="block hover-text-secondary transition-colors">Privacy Policy</a>
|
||
</div>
|
||
|
||
<div class="spacing-small text-center">
|
||
<a href="{{ route('terms') }}" class="block hover-text-secondary transition-colors">Terms of Service</a>
|
||
</div>
|
||
|
||
<div class="spacing-small text-center">
|
||
<a href="{{ route('cookie-policy') }}" class="block hover-text-secondary transition-colors">Cookie Policy</a>
|
||
</div>
|
||
|
||
<div class="spacing-small text-center">
|
||
<a href="{{ route('impressum') }}" class="block hover-text-secondary transition-colors">{{ __('ui.legal_notice') }}</a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
{{-- Bottom Bar --}}
|
||
<div class="border-t border-dark-muted/30 mt-12 pt-8">
|
||
<div class="flex flex-col md:flex-row justify-between items-center spacing-small md:space-y-0">
|
||
<div class="text-dark-muted text-sm flex flex-col sm:flex-row items-center gap-2 sm:gap-4">
|
||
<span>© {{ date('Y') }} B2in. All rights reserved.</span>
|
||
<a href="#" onclick="window.dispatchEvent(new CustomEvent('open-cookie-settings')); return false;"
|
||
class="hover-text-secondary transition-colors">
|
||
{{ __('ui.cookie_settings') }}
|
||
</a>
|
||
</div>
|
||
<div class="flex items-center space-x-6 text-dark-muted text-sm">
|
||
<div class="flex space-x-4">
|
||
|
||
<a href="https://www.linkedin.com/in/marcel-scheibe/" target="_blank" class="hover-text-secondary transition-colors" aria-label="LinkedIn">
|
||
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24">
|
||
<path
|
||
d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z" />
|
||
</svg>
|
||
</a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</footer>
|