This commit is contained in:
Li1304553726 2025-04-16 08:59:06 +08:00
parent 05f17e5ffb
commit a5bcb50e1f
1 changed files with 67 additions and 67 deletions

View File

@ -11,7 +11,7 @@ import Logo from "../../common/element/Logo";
export function Footer() {
return (
<footer className="bg-gradient-to-b from-primary-500 to-primary-500 text-white ">
<footer className="bg-gradient-to-b from-slate-800 to-slate-900 relative z-10 text-secondary-200 mt-1">
<div className="container mx-auto px-4 py-6">
<div className="grid grid-cols-1 md:grid-cols-3 gap-4">
{/* 开发组织信息 */}
@ -19,21 +19,19 @@ export function Footer() {
<h3 className="text-white font-semibold text-sm flex items-center justify-center md:justify-start">
</h3>
<p className="text-white text-xs italic">
</p>
<p className="text-gray-400 text-xs italic"></p>
</div>
{/* 联系方式 */}
<div className="text-center space-y-2">
<div className="flex items-center justify-center space-x-2">
<PhoneOutlined className="text-gray-400" />
<span className="text-white text-xs">628038</span>
<span className="text-gray-300 text-xs">628532</span>
</div>
<div className="flex items-center justify-center space-x-2">
<MailOutlined className="text-gray-400" />
<span className="text-white text-xs">
wsd@tx3l.nb.kj
<span className="text-gray-300 text-xs">
ruanjian1@tx3l.nb.kj
</span>
</div>
</div>
@ -43,21 +41,24 @@ export function Footer() {
<div className="flex items-center justify-center md:justify-end space-x-4">
<a
href="https://27.57.72.21"
className="text-white hover:text-white transition-colors"
title="访问门户网站">
className="text-gray-400 hover:text-white transition-colors"
title="访问门户网站"
>
<HomeOutlined className="text-lg" />
</a>
<a
href="https://27.57.72.14"
className="text-white hover:text-white transition-colors"
title="访问烽火青云">
className="text-gray-400 hover:text-white transition-colors"
title="访问烽火青云"
>
<CloudOutlined className="text-lg" />
</a>
<a
href="http://27.57.72.38"
className="text-white hover:text-white transition-colors"
title="访问烽火律询">
className="text-gray-400 hover:text-white transition-colors"
title="访问烽火律询"
>
<FileSearchOutlined className="text-lg" />
</a>
</div>
@ -66,9 +67,8 @@ export function Footer() {
{/* 版权信息 */}
<div className="border-t border-gray-700/50 mt-4 pt-4 text-center">
<p className="text-white text-xs">
© {new Date().getFullYear()} . All rights
reserved.
<p className="text-gray-400 text-xs">
© {new Date().getFullYear()} . All rights reserved.
</p>
</div>
</div>