10 lines
242 B
TypeScript
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; |