Skip to content

Commit 6314e2b

Browse files
luisxcamCopilot
andcommitted
Update contact page links: set LinkedIn, GitHub, Email; remove Twitter/X
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent a3d7953 commit 6314e2b

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

src/components/sections/ContactSection.tsx

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,13 @@ const ContactSection = () => {
2222

2323
<div className="space-y-3">
2424
{[
25-
{ label: "GitHub", value: "github.com/yourusername", prefix: "git" },
26-
{ label: "Email", value: "dev@yourdomain.com", prefix: "mail" },
27-
{ label: "LinkedIn", value: "linkedin.com/in/yourusername", prefix: "link" },
28-
{ label: "Twitter/X", value: "@yourhandle", prefix: "x" },
25+
{ label: "GitHub", value: "github.com/luisxcam", prefix: "git", href: "https://github.com/luisxcam" },
26+
{ label: "Email", value: "dev.lacevedo@gmail.com", prefix: "mail", href: "mailto:dev.lacevedo@gmail.com" },
27+
{ label: "LinkedIn", value: "ca.linkedin.com/in/devlacevedo", prefix: "link", href: "https://ca.linkedin.com/in/devlacevedo" },
2928
].map((item) => (
3029
<a
3130
key={item.label}
32-
href="#"
31+
href={item.href}
3332
rel="noopener noreferrer"
3433
className="flex items-center gap-3 min-w-0 border border-border p-3 text-xs hover:border-terminal hover:bg-muted/30 transition-colors duration-75 group"
3534
>

0 commit comments

Comments
 (0)