22 lines
908 B
TypeScript
22 lines
908 B
TypeScript
import React from 'react';
|
|
|
|
const Footer: React.FC = () => {
|
|
return (
|
|
<footer className="bg-feie-dark text-feie-white border-t border-white/10 py-12">
|
|
<div className="container mx-auto px-6 flex flex-col md:flex-row justify-between items-center gap-6">
|
|
<div className="text-center md:text-left">
|
|
<h5 className="font-serif text-xl font-bold mb-2">南京市肥鹅信息技术有限公司</h5>
|
|
<p className="text-gray-500 text-sm">© {new Date().getFullYear()} Nanjing Feie Information Technology Co., Ltd. All rights reserved.</p>
|
|
</div>
|
|
|
|
<div className="flex gap-6 text-sm text-gray-400">
|
|
<a href="#" className="hover:text-feie-gold transition-colors">隐私政策</a>
|
|
<a href="#" className="hover:text-feie-gold transition-colors">服务条款</a>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
);
|
|
};
|
|
|
|
export default Footer;
|