fenghuo/apps/web/components/footer/footer.tsx

52 lines
1.8 KiB
TypeScript
Raw Normal View History

2025-06-05 22:51:44 +08:00
import React from 'react';
const Footer: React.FC = () => {
return (
<div
2025-06-11 09:55:47 +08:00
className=" flex flex-col items-center justify-center relative bottom-0 overflow-y-auto overflow-x-auto left-1/2 transform -translate-x-1/2 w-[1920px] h-[758px] bg-cover bg-center"
2025-06-05 22:51:44 +08:00
style={{ backgroundImage: `url('/footer.png')` }}
>
{/* 主标题 */}
<div className="mb-8 mt-15">
2025-06-08 22:50:52 +08:00
<p className=" tracking-widest" style={{ fontSize: '32px',color:'#ffffff' }} >
2025-06-05 22:51:44 +08:00
OO情愉悦
</p>
</div>
{/* 版权声明 */}
<div className="mb-8 text-center space-y-2 ">
<p className="text-sm opacity-80" style={{ color: '#818da3' }}>
</p>
<p className="text-sm opacity-80 mt-5" style={{ color: '#818da3' }}>
Copyright©2016-2019 ibaotu.com
</p>
</div>
{/* 导航链接 */}
<div className="flex space-x-12 mt-5">
<a href="#" className="hover:text-blue-300 transition-colors" style={{ color: '#818da3' }}>
</a>
<a href="#" className="hover:text-blue-300 transition-colors" style={{ color: '#818da3' }}>
</a>
<a href="#" className="hover:text-blue-300 transition-colors" style={{ color: '#818da3' }}>
</a>
<a href="#" className="hover:text-blue-300 transition-colors" style={{ color: '#818da3' }}>
</a>
<a href="#" className="hover:text-blue-300 transition-colors" style={{ color: '#818da3' }}>
</a>
<a href="#" className="hover:text-blue-300 transition-colors" style={{ color: '#818da3' }}>
便
</a>
</div>
</div>
);
};
export default Footer;