Seed: portfolio template (18 files)
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
import { Github, Linkedin, Twitter, Mail } from "lucide-react";
|
||||
|
||||
export default function Footer() {
|
||||
return (
|
||||
<footer className="border-t py-10 bg-background">
|
||||
<div className="mx-auto max-w-6xl px-6 flex flex-col md:flex-row items-center justify-between gap-4">
|
||||
<div className="text-sm text-muted-foreground">© 2026 Alex Rivera. Crafted with care.</div>
|
||||
<div className="flex items-center gap-4">
|
||||
{[Github, Linkedin, Twitter, Mail].map((Icon, i) => (
|
||||
<a key={i} href="#" className="text-muted-foreground hover:text-foreground transition-colors"><Icon className="h-5 w-5" /></a>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user