Ajout d'instructions sur comment ouvrir les liens
This commit is contained in:
parent
b88d4000ae
commit
292302d4ba
2 changed files with 7 additions and 1 deletions
|
|
@ -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}` +
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue