add footer

This commit is contained in:
Randa Firman Putra
2025-12-07 23:25:23 +07:00
parent e7154a893d
commit 29dd0ed4ab
2 changed files with 27 additions and 2 deletions

22
components/ui/footer.tsx Normal file
View File

@@ -0,0 +1,22 @@
import { Heart } from "lucide-react";
export default function Footer() {
return (
<footer className="border-t bg-background/95 backdrop-blur supports-[backdrop-filter]:bg-background/60">
<div className="container mx-auto px-4 py-6">
<div className="flex flex-col items-center justify-center gap-2 text-center">
<p className="text-sm text-muted-foreground flex items-center gap-2">
Crafted with
<Heart className="h-4 w-4 text-red-500 fill-red-500 animate-pulse" />
and passion by
<span className="font-semibold text-foreground">Randa Firman Putra</span>
</p>
<p className="text-xs text-muted-foreground">
© {new Date().getFullYear()} Portal Data Informatika UNTAN. All rights reserved.
</p>
</div>
</div>
</footer>
);
}