diff --git a/src/data/portfolio.ts b/src/data/portfolio.ts index acb22fe..3877ac3 100644 --- a/src/data/portfolio.ts +++ b/src/data/portfolio.ts @@ -62,9 +62,12 @@ export const create = (): Array => [ }), Footer({ title: `Learn more`, - curriculaVitae: [{ name: `Curriculum vitae`, url: cvEnglish }], + curriculaVitae: [{ name: `Download my CV`, url: cvEnglish }], email: `andras@schmelczer.dev`, - linkedin: `https://www.linkedin.com/in/andras-schmelczer-35487017b`, + linkedInLink: `https://www.linkedin.com/in/andras-schmelczer`, + linkedInText: 'Find me on LinkedIn', + gitHubLink: `https://github.com/schmelczer`, + gitHubText: 'Find me on GitHub', lastEditText: `Last modified on `, }) ), diff --git a/src/page/footer/footer.html.ts b/src/page/footer/footer.html.ts index de78402..a54ee33 100644 --- a/src/page/footer/footer.html.ts +++ b/src/page/footer/footer.html.ts @@ -1,5 +1,6 @@ import cvIcon from '../../../static/icons/cv.svg'; import emailIcon from '../../../static/icons/email.svg'; +import githubIcon from '../../../static/icons/github.svg'; import linkedinIcon from '../../../static/icons/linkedin.svg'; import { html } from '../../types/html'; import { url } from '../../types/url'; @@ -12,16 +13,22 @@ export const Footer = ({ title, email, curriculaVitae, - linkedin, + linkedInLink, + linkedInText, + gitHubLink, + gitHubText, lastEditText, }: { title: string; - email: url; - linkedin: url; + email: string; curriculaVitae: Array<{ name: string; url: url; }>; + linkedInLink: url; + linkedInText: string; + gitHubLink: url; + gitHubText: string; lastEditText: string; }): html => `