Ajout d'instructions sur le scroll par flèches directionnelles

This commit is contained in:
Feror 2025-03-18 10:20:19 +01:00
parent 278f01dc0d
commit e13f931985

View file

@ -56,7 +56,9 @@ const Projects = ({ width, height, scrollPosition }: ProjectsProps) => {
width, width,
height, height,
scrollPosition, scrollPosition,
text: projects.map((project) => Project(project)).join(newLine), text: ` Use the arrows keys to navigate up and down.${newLine}${newLine}${projects
.map((project) => Project(project))
.join(newLine)}`,
}); });
}; };
export default Projects; export default Projects;