summaryrefslogtreecommitdiff
path: root/frontend/components/Footer.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/components/Footer.tsx')
-rw-r--r--frontend/components/Footer.tsx14
1 files changed, 14 insertions, 0 deletions
diff --git a/frontend/components/Footer.tsx b/frontend/components/Footer.tsx
new file mode 100644
index 0000000..99ba69f
--- /dev/null
+++ b/frontend/components/Footer.tsx
@@ -0,0 +1,14 @@
1import { Mail } from "lucide-react"
2
3export function Footer() {
4 return (
5 <footer className="border-t bg-background py-6 mt-auto">
6 <div className="container mx-auto px-6">
7 <div className="flex items-center justify-center text-sm text-muted-foreground">
8 <Mail className="mr-2 h-4 w-4" />
9 Contact: [email protected]
10 </div>
11 </div>
12 </footer>
13 )
14} \ No newline at end of file