Files
Pagerino_Portainer/WebApp/src/layouts/components/footer.tmpl

43 lines
1.8 KiB
Cheetah

<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>