Skip to content

Commit ae57dca

Browse files
committed
fix: contact in footer
1 parent 1b58e5c commit ae57dca

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

src/components/Footer.tsx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import { Github, Mail } from 'lucide-react';
1+
import { Github, Linkedin } from 'lucide-react';
22

33
export function Footer() {
44
return (
55
<footer className="mt-8 pb-6 text-center text-sm text-muted-foreground space-y-2">
66
<div className="flex items-center justify-center gap-4">
77
<a
8-
href="https://github.com/arungupta1526"
8+
href="https://github.com/arungupta1526/ocr-tool/"
99
target="_blank"
1010
rel="noopener noreferrer"
1111
className="flex items-center gap-1.5 hover:text-foreground transition-colors"
@@ -15,10 +15,12 @@ export function Footer() {
1515
</a>
1616
<span className="text-border">|</span>
1717
<a
18-
href="mailto:arungupta1526@gmail.com"
18+
href="https://www.linkedin.com/in/arungupta1526/"
19+
target="_blank"
20+
rel="noopener noreferrer"
1921
className="flex items-center gap-1.5 hover:text-foreground transition-colors"
2022
>
21-
<Mail className="h-4 w-4" />
23+
<Linkedin className="h-4 w-4" />
2224
<span>Contact</span>
2325
</a>
2426
</div>

0 commit comments

Comments
 (0)