Skip to content

Commit 07b4399

Browse files
committed
feat: modernize links in header. no one will print it anyway
1 parent 99b4fe2 commit 07b4399

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

src/components/cv/cvData.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ interface URL {
1717
interface Contact {
1818
phone: { raw: string; formatted: string };
1919
url: URL;
20-
email: string;
20+
email: URL;
2121
linkedin: URL;
2222
twitter?: URL;
2323
topmate: URL;
@@ -47,7 +47,7 @@ interface VolunteerXp {
4747
keywords: string[];
4848
}
4949

50-
interface Experience {}
50+
interface Experience { }
5151

5252
interface Degree extends Event {
5353
school: string;

src/components/cv/cvData.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -14,24 +14,24 @@ export const cvData: CVData = {
1414
contact: {
1515
phone: { raw: '', formatted: '' },
1616
url: { href: 'https://luiz.dev', display: 'www.luiz.dev' },
17-
17+
email: { href: '[email protected]', display: 'Email' },
1818
linkedin: {
1919
href: 'https://linkedin.com/in/luizgonzaga',
20-
display: 'linkedin.com/in/luizgonzaga',
20+
display: 'LinkedIn',
2121
},
2222
topmate: {
2323
href: 'https://topmate.io/luizgonzaga',
24-
display: 'topmate.io/luizgonzaga',
24+
display: 'Topmate',
2525
},
2626
// twitter: {
2727
// href: 'https://twitter.com/luizmarelo',
28-
// display: 'twitter.com/luizmarelo',
28+
// display: 'Twitter',
2929
// },
3030
speakerdeck: {
3131
href: 'https://speakerdeck.com/lfilho',
32-
display: 'speakerdeck.com/lfilho',
32+
display: 'SpeakerDeck',
3333
},
34-
github: { href: 'https://github.com/lfilho', display: 'github.com/lfilho' },
34+
github: { href: 'https://github.com/lfilho', display: 'GitHub' },
3535
},
3636
introduction: [
3737
`A brazillian-canadian people-first leader building impactful products and high-performing teams for ~{{CAREER_TENURE}} years.`,

src/components/cv/sections/header/index.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ export default class Header extends Component {
7171
<li className='contact mail'>
7272
<FontAwesomeIcon icon={faEnvelope} fixedWidth />
7373
<span>
74-
<a className='u-email' href={'mailto:' + contact.email}>
75-
{contact.email}
74+
<a className='u-email' href={'mailto:' + contact.email.href}>
75+
{contact.email.display}
7676
</a>
7777
</span>
7878
</li>

0 commit comments

Comments
 (0)