first commit

This commit is contained in:
Patricklmbn
2026-04-01 22:42:33 +08:00
parent 8ff2284e7a
commit 01ef961665

View File

@@ -1,42 +1,9 @@
import { Code, Briefcase, MessageCircle } from 'lucide-react';
import { Button } from '@/components/ui/button';
import { Separator } from '@/components/ui/separator';
export function Footer() {
const currentYear = new Date().getFullYear();
return (
<footer className="bg-muted/80 py-12">
<div className="container mx-auto px-4 max-w-screen-lg">
<div className="flex flex-col md:flex-row justify-between items-center gap-6">
<div className="text-center md:text-left">
<h3 className="text-lg font-bold tracking-tight">Portfolio</h3>
<p className="text-sm text-muted-foreground mt-2 max-w-xs">
Building digital experiences that matter, one line of code at a time.
</p>
</div>
<div className="flex gap-4">
<Button variant="ghost" size="icon" asChild>
<a href="https://github.com/PatrickLmbn" target="_blank" rel="noreferrer" aria-label="GitHub">
<Code className="w-5 h-5" />
</a>
</Button>
<Button variant="ghost" size="icon" asChild>
<a href="#" target="_blank" rel="noreferrer" aria-label="LinkedIn">
<Briefcase className="w-5 h-5" />
</a>
</Button>
<Button variant="ghost" size="icon" asChild>
<a href="#" target="_blank" rel="noreferrer" aria-label="Twitter">
<MessageCircle className="w-5 h-5" />
</a>
</Button>
</div>
</div>
<Separator className="my-8" />
<div className="text-center text-sm text-muted-foreground">
<p>© {currentYear} Patrick Lambino. All rights reserved.</p>
</div>