Skip to content

Commit 4d3626e

Browse files
authored
Merge community design by Gus H (cursor/design/4da8778a-b2fe-4a75-804a-229ff673f99c)
2 parents 03a13cb + 290cb1b commit 4d3626e

3 files changed

Lines changed: 41 additions & 3 deletions

File tree

src/app/globals.css

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1009,6 +1009,28 @@
10091009
color: inherit;
10101010
}
10111011

1012+
.locked-resume-links {
1013+
color: var(--color-text-secondary);
1014+
font-size: 0.9375rem;
1015+
}
1016+
1017+
.locked-resume-links a {
1018+
color: var(--color-accent-blue-text);
1019+
text-decoration: underline;
1020+
text-decoration-color: rgba(49, 95, 220, 0.35);
1021+
text-underline-offset: 0.15em;
1022+
cursor: pointer;
1023+
transition:
1024+
color 120ms ease,
1025+
text-decoration-color 120ms ease;
1026+
}
1027+
1028+
.locked-resume-links a:hover,
1029+
.locked-resume-links a:focus-visible {
1030+
color: #2449b8;
1031+
text-decoration-color: currentColor;
1032+
}
1033+
10121034
.design-select-overlay {
10131035
pointer-events: none;
10141036
position: fixed;

src/components/locked/LockedResume.tsx

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,20 @@ export function LockedResume() {
1414
<header className="locked-resume-header">
1515
<h1 data-fact-id="profile-name">{data.profile.name}</h1>
1616
<p data-fact-id="profile-tagline">{data.profile.tagline}</p>
17-
<p className="locked-resume-links">
17+
<p
18+
className="locked-resume-links"
19+
data-contribution-id="profile-links"
20+
>
1821
{data.profile.links.map((link, i) => (
1922
<span key={link.href}>
2023
{i > 0 ? " · " : null}
21-
<a href={link.href} data-fact-id={`profile-link-${i}`}>
24+
<a
25+
href={link.href}
26+
data-fact-id={`profile-link-${i}`}
27+
data-contribution-id="profile-links"
28+
target="_blank"
29+
rel="noopener noreferrer"
30+
>
2231
{link.label}
2332
</a>
2433
</span>

src/data/contributions.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
11
{
2-
"contributions": []
2+
"contributions": [
3+
{
4+
"id": "gus-h-1781688328252",
5+
"name": "Gus H",
6+
"branch": "cursor/design/4da8778a-b2fe-4a75-804a-229ff673f99c",
7+
"submittedAt": "2026-06-17T09:25:28.252Z"
8+
}
9+
]
310
}

0 commit comments

Comments
 (0)