2025-06-27 08:28:30 +08:00

52 lines
2.3 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

export default function Footer() {
return (
<footer className="bg-white/60 border-t border-gray-200/50 py-12 px-4 backdrop-blur-xl">
<div className="container mx-auto max-w-7xl">
<div className="grid md:grid-cols-2 gap-8 mb-8">
{/* Company Info */}
<div>
<div className="flex items-center space-x-3 mb-4">
<div className="w-8 h-8 bg-gradient-to-br from-blue-500 via-purple-500 to-pink-500 rounded-lg flex items-center justify-center shadow-lg">
<span className="text-white font-bold text-sm font-mono">XZ</span>
</div>
<span className="text-lg font-bold bg-gradient-to-r from-blue-600 to-purple-600 bg-clip-text text-transparent font-mono">
</span>
</div>
<p className="text-gray-600 text-sm leading-relaxed font-mono">
沿
</p>
</div>
{/* Contact */}
<div>
<h3 className="text-lg font-bold bg-gradient-to-r from-blue-600 to-purple-600 bg-clip-text text-transparent mb-4 font-mono">
</h3>
<div className="space-y-2 text-gray-600 text-sm font-mono">
<p>
: <span className="text-blue-600">zichen.hao@entalnet.com</span>
</p>
<p>地址: 中国大陆</p>
<p>服务时间: 7x24小时</p>
</div>
</div>
</div>
{/* Bottom Bar */}
<div className="border-t border-gray-200/50 pt-8 flex flex-col md:flex-row justify-between items-center space-y-4 md:space-y-0">
<div className="text-gray-600 text-sm font-mono">© 2025 </div>
<div className="text-gray-600 text-sm font-mono" href="http://beian.miit.gov.cn/publish/query/indexFirst.action">ICP备2025062137号</div>
</div>
{/* Legal Notice */}
<div className="mt-4 text-center">
<p className="text-gray-500 text-xs font-mono">
使
</p>
</div>
</div>
</footer>
)
}