Skip to content

Commit 2f97d80

Browse files
committed
fix: replace deprecated lucide-react brand icons to resolve build export errors
1 parent 4ba7373 commit 2f97d80

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

components/layout/Footer.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"use client";
22

33
import Link from "next/link";
4-
import { ShieldCheck, Twitter, Github, Linkedin, Mail } from "lucide-react";
4+
import { ShieldCheck, MessageCircle, Code2, Briefcase, Mail } from "lucide-react";
55

66
export default function Footer() {
77
const currentYear = new Date().getFullYear();
@@ -25,9 +25,9 @@ export default function Footer() {
2525
The next-generation non-custodial payment gateway for African merchants. Accept global stablecoin payments and settle directly to your local bank account in seconds. Built securely on the Stellar network.
2626
</p>
2727
<div className="flex items-center gap-4 text-muted-foreground">
28-
<Link href="#" className="hover:text-primary transition-colors"><Twitter className="w-5 h-5" /></Link>
29-
<Link href="#" className="hover:text-primary transition-colors"><Github className="w-5 h-5" /></Link>
30-
<Link href="#" className="hover:text-primary transition-colors"><Linkedin className="w-5 h-5" /></Link>
28+
<Link href="#" className="hover:text-primary transition-colors"><MessageCircle className="w-5 h-5" /></Link>
29+
<Link href="#" className="hover:text-primary transition-colors"><Code2 className="w-5 h-5" /></Link>
30+
<Link href="#" className="hover:text-primary transition-colors"><Briefcase className="w-5 h-5" /></Link>
3131
<Link href="#" className="hover:text-primary transition-colors"><Mail className="w-5 h-5" /></Link>
3232
</div>
3333
</div>

0 commit comments

Comments
 (0)