blob: 99ba69f4b5301b9f33fea4d5d94c26f66dc786ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import { Mail } from "lucide-react"
export function Footer() {
return (
<footer className="border-t bg-background py-6 mt-auto">
<div className="container mx-auto px-6">
<div className="flex items-center justify-center text-sm text-muted-foreground">
<Mail className="mr-2 h-4 w-4" />
Contact: [email protected]
</div>
</div>
</footer>
)
}
|