feat(web): add footer with business info

- Add 3-column footer layout (Company, Contact, Links)
- Add LIBEHAIM Inc. registrant info (matches namecheap-api .env)
- Add terms and privacy policy links

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
kappa
2026-01-18 16:10:31 +09:00
parent b361e52427
commit 4d22ea73f2

View File

@@ -507,15 +507,52 @@
</section>
<!-- Footer -->
<footer class="border-t border-gray-800 py-10">
<footer class="border-t border-gray-800 py-12">
<div class="max-w-6xl mx-auto px-6">
<div class="flex flex-col md:flex-row justify-between items-center gap-4">
<div class="text-gray-400 text-sm">
© 2026 Anvil Hosting. All rights reserved.
<div class="grid md:grid-cols-3 gap-8 mb-8">
<!-- Company Info -->
<div>
<div class="flex items-center gap-2 mb-4">
<span class="text-xl">🔨</span>
<span class="font-bold" style="background: linear-gradient(180deg, #e5e7eb 0%, #9ca3af 40%, #6b7280 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;">Anvil</span>
</div>
<p class="text-gray-400 text-sm">
안정적인 인프라, 합리적인 가격.<br>
당신의 서비스를 위한 완벽한 호스팅.
</p>
</div>
<div class="flex gap-6">
<a href="#" class="text-gray-400 hover:text-white text-sm transition">이용약관</a>
<a href="#" class="text-gray-400 hover:text-white text-sm transition">개인정보처리방침</a>
<!-- Contact -->
<div>
<h4 class="font-semibold mb-4">문의</h4>
<div class="text-gray-400 text-sm space-y-2">
<p>이메일: info@anvil.it.com</p>
<p>텔레그램: @AnvilForgeBot</p>
</div>
</div>
<!-- Links -->
<div>
<h4 class="font-semibold mb-4">바로가기</h4>
<div class="text-gray-400 text-sm space-y-2">
<a href="#services" class="block hover:text-white transition">서비스</a>
<a href="#domain" class="block hover:text-white transition">도메인</a>
<a href="#pricing" class="block hover:text-white transition">가격</a>
</div>
</div>
</div>
<!-- Business Info -->
<div class="border-t border-gray-800 pt-8">
<div class="text-gray-500 text-xs space-y-1 mb-4">
<p>LIBEHAIM Inc. | Taro Tanaka</p>
<p>#202 K-Flat, 3-1-13 Higashioi, Shinagawa-ku, Tokyo 140-0011, Japan</p>
</div>
<div class="flex flex-col md:flex-row justify-between items-center gap-4">
<div class="text-gray-500 text-xs">
© 2026 LIBEHAIM Inc. All rights reserved.
</div>
<div class="flex gap-6">
<a href="#" class="text-gray-500 hover:text-white text-xs transition">이용약관</a>
<a href="#" class="text-gray-500 hover:text-white text-xs transition">개인정보처리방침</a>
</div>
</div>
</div>
</div>