callfi/components/Footer.tsx
2024-07-13 12:51:57 +05:30

14 lines
282 B
TypeScript

// components/Footer.tsx
import React from "react";
const Footer: React.FC = () => {
return (
<footer className="w-full p-4 bg-gray-800 text-white text-center glassmorphism">
<p>&copy; 2024 CallFi. All rights reserved.</p>
</footer>
);
}
export default Footer;