Veranstaltungen-APP/resources/views/partials/footer.blade.php

48 lines
2.4 KiB
PHP

<footer class="bg-gray-900 text-gray-300 mt-12">
<div class="max-w-7xl mx-auto px-4 py-12">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-8">
<div>
<h4 class="text-white font-bold mb-4">Veranstaltungs-App</h4>
<p class="text-sm">Die beste Plattform zur Entdeckung und Verwaltung von Veranstaltungen in Deiner Nähe.</p>
</div>
<div>
<h4 class="text-white font-bold mb-4">Navigation</h4>
<ul class="space-y-2 text-sm">
<li><a href="{{ url('/') }}" class="hover:text-white transition">Home</a></li>
<li><a href="{{ route('events') }}" class="hover:text-white transition">Events</a></li>
</ul>
</div>
<div>
<h4 class="text-white font-bold mb-4">Rechtliches</h4>
<ul class="space-y-2 text-sm">
<li><a href="#" class="hover:text-white transition">Datenschutzerklärung</a></li>
<li><a href="#" class="hover:text-white transition">Impressum</a></li>
<li><a href="#" class="hover:text-white transition">AGB</a></li>
</ul>
</div>
<div>
<h4 class="text-white font-bold mb-4">Kontakt</h4>
<ul class="space-y-2 text-sm">
<li>Email: <a href="mailto:support@veranstaltungen.app" class="text-blue-400 hover:text-blue-300">support@veranstaltungen.app</a></li>
<li>Telefon: +49 (0)123 456789</li>
<li>Adresse: Musterstraße 1, 12345 Musterstadt</li>
</ul>
</div>
</div>
<div class="border-t border-gray-700 my-8"></div>
<div class="flex flex-col md:flex-row items-center justify-between">
<div class="text-sm text-gray-400 mb-4 md:mb-0">&copy; {{ date('Y') }} Veranstaltungs-App. Alle Rechte vorbehalten.</div>
<div class="flex gap-6">
<a href="https://facebook.com" class="text-gray-400 hover:text-white transition" target="_blank">Facebook</a>
<a href="https://twitter.com" class="text-gray-400 hover:text-white transition" target="_blank">Twitter</a>
<a href="https://instagram.com" class="text-gray-400 hover:text-white transition" target="_blank">Instagram</a>
</div>
</div>
</div>
</footer>