Ajout d'instructions sur comment ouvrir les liens

This commit is contained in:
Feror 2025-03-18 10:47:08 +01:00
parent b88d4000ae
commit 292302d4ba
2 changed files with 7 additions and 1 deletions

View file

@ -8,6 +8,8 @@ interface ContactProps {
const Contact = ({ width, height }: ContactProps) => { const Contact = ({ width, height }: ContactProps) => {
return ( return (
`${newLine}` +
` Use ⌘/ctrl+click to open the links below!${newLine}` +
`${newLine}` + `${newLine}` +
` Email: ${link("contact@jokinsuares.fr", "mailto:contact@jokinsuares.fr")}${newLine}` + ` Email: ${link("contact@jokinsuares.fr", "mailto:contact@jokinsuares.fr")}${newLine}` +
` Phone: ${link("+33 6 02 26 22 00", "tel:+33602262200")}${newLine}` + ` Phone: ${link("+33 6 02 26 22 00", "tel:+33602262200")}${newLine}` +

View file

@ -59,7 +59,11 @@ const Projects = async ({ width, height, scrollPosition }: ProjectsProps) => {
width, width,
height, height,
scrollPosition, 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; export default Projects;