summaryrefslogtreecommitdiff
path: root/frontend/components
diff options
context:
space:
mode:
authordiogo464 <[email protected]>2025-08-24 22:17:26 +0100
committerdiogo464 <[email protected]>2025-08-24 22:17:26 +0100
commit1b6bb98af1014c500c75de376c87a9b6bfa7ffb9 (patch)
treeafc7435491ae8f2c3fa1f8018809a14026f07b81 /frontend/components
parentaaafa6638d2a42fae095f1fe250400108b4a6f60 (diff)
feat: add footer with contact informationHEADmain
- Add Footer component with [email protected] contact email - Update main layout to include footer at bottom of all pages - Use flexbox layout to ensure footer stays at bottom 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
Diffstat (limited to 'frontend/components')
-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