2025-01-30 00:53:30 +05:30

10 lines
242 B
TypeScript

const Footer = () => {
return (
<div className="flex justify-center items-center p-6 bg-zinc-900">
<h1 className="font-bold text-md text-white">© Bhav Kushwaha 2025</h1>
</div>
);
};
export default Footer;