Attempt 1

This commit is contained in:
2025-09-11 22:26:30 +02:00
parent e100836ecb
commit 3ea7308af0
182 changed files with 25449 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
{{ define "footer" -}}
<footer class="bg-gray-900 text-gray-300 mt-12">
<div class="max-w-7xl mx-auto px-6 py-10">
<div class="flex flex-col md:flex-row md:justify-between gap-8">
<!-- Company links -->
<div class="flex-1">
<h3 class="text-lg font-semibold text-white mb-3">More</h3>
<ul class="space-y-2">
<li><a href="https://gorak.eu/" class="hover:underline">About Us</a></li>
<li><a href="https://gorak.eu/products/pagerino" class="hover:underline">Pagerino</a></li>
<li><a href="https://gorak.eu/contact" class="hover:underline">Contact</a></li>
</ul>
</div>
<!-- Help & Support -->
<div class="flex-1">
<h3 class="text-lg font-semibold text-white mb-3">Help & Support</h3>
<ul class="space-y-2">
<li><a href="https://gorak.eu/help" class="hover:underline">Help Center</a></li>
<li><a href="https://gorak.eu/support" class="hover:underline">Technical Support</a></li>
<li><a href="https://gorak.eu/faq#pagerino" class="hover:underline">FAQ</a></li>
<li><a href="https://gorak.eu/status" class="hover:underline">System Status</a></li>
</ul>
</div>
<!-- Legal -->
<div class="flex-1">
<h3 class="text-lg font-semibold text-white mb-3">Legal</h3>
<ul class="space-y-2">
<li><a href="/privacy" class="hover:underline">Privacy Policy</a></li>
<li><a href="/terms" class="hover:underline">Terms of Service</a></li>
<li><a href="/cookies" class="hover:underline">Cookie Policy</a></li>
<li><a href="/compliance" class="hover:underline">Compliance</a></li>
</ul>
</div>
</div>
<div class="border-t border-gray-700 mt-8 pt-6 text-center text-sm text-gray-500">
© 2025 GORAK Industries s.r.o. All rights reserved.
</div>
</div>
</footer>
{{- end }}