14 lines
282 B
TypeScript
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>© 2024 CallFi. All rights reserved.</p>
|
|
</footer>
|
|
);
|
|
}
|
|
|
|
export default Footer;
|