Files
Minecraft-Hosting/frontend/src/app/components/footer/footer.html

17 lines
939 B
HTML

<footer class="bg-slate-900 py-12 px-4">
<div class="max-w-7xl mx-auto text-center text-gray-400">
<div class="flex items-center justify-center space-x-2 mb-4">
<svg class="w-6 h-6 text-green-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M5 12h14M5 12a2 2 0 01-2-2V6a2 2 0 012-2h14a2 2 0 012 2v4a2 2 0 01-2 2M5 12a2 2 0 00-2 2v4a2 2 0 002 2h14a2 2 0 002-2v-4a2 2 0 00-2-2m-2-4h.01M17 16h.01" />
</svg>
<span class="text-xl font-bold text-white">BlockHost</span>
</div>
<p class="mb-4">Professional Minecraft Server Hosting Since 2020</p>
<div class="flex justify-center space-x-6 text-sm">
<a href="#" class="hover:text-white transition">Terms</a>
<a href="#" class="hover:text-white transition">Privacy</a>
<a (click)="toggleContactModal()" class="hover:text-white transition">Contact</a>
</div>
</div>
</footer>