23 lines
862 B
TypeScript
23 lines
862 B
TypeScript
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>
|
|
);
|
|
}
|
|
|