sameerbanchhor's picture
Upload folder using huggingface_hub
26f4db3 verified
import { aboutMe } from "@/lib/data";
export function Footer() {
const currentYear = new Date().getFullYear();
return (
<footer className="w-full bg-background border-t">
<div className="container flex items-center justify-center py-6">
<p className="text-sm text-muted-foreground">
&copy; {currentYear} {aboutMe.name}. All rights reserved.
</p>
</div>
</footer>
);
}