52 lines
2.3 KiB
TypeScript
52 lines
2.3 KiB
TypeScript
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>
|
||
)
|
||
}
|