2025-12-11 11:30:18 +08:00

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;