diff --git a/front/Tabs/Contact.ts b/front/Tabs/Contact.ts index a72475e..4dbfa4e 100644 --- a/front/Tabs/Contact.ts +++ b/front/Tabs/Contact.ts @@ -8,6 +8,8 @@ interface ContactProps { const Contact = ({ width, height }: ContactProps) => { return ( + `${newLine}` + + ` Use ⌘/ctrl+click to open the links below!${newLine}` + `${newLine}` + ` Email: ${link("contact@jokinsuares.fr", "mailto:contact@jokinsuares.fr")}${newLine}` + ` Phone: ${link("+33 6 02 26 22 00", "tel:+33602262200")}${newLine}` + diff --git a/front/Tabs/Projects.ts b/front/Tabs/Projects.ts index 9c029e9..766e891 100644 --- a/front/Tabs/Projects.ts +++ b/front/Tabs/Projects.ts @@ -59,7 +59,11 @@ const Projects = async ({ width, height, scrollPosition }: ProjectsProps) => { width, height, scrollPosition, - text: ` Use the arrows keys to navigate up and down.${newLine}${newLine}${projectsComponents.join(newLine)}`, + text: + ` Use the arrows keys to navigate up and down.${newLine}` + + ` You can either ⌘/ctrl click a link to open it, or scan the QR code below it.${newLine}` + + `${newLine}` + + `${projectsComponents.join(newLine)}`, }); }; export default Projects;