From 5c72a21ecbcae463b95be166adfa5496828a5ab7 Mon Sep 17 00:00:00 2001 From: Feror Date: Wed, 12 Mar 2025 11:59:55 +0100 Subject: [PATCH] Ajout de sh-chat dans les projets --- front/Tabs/Projects.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/front/Tabs/Projects.ts b/front/Tabs/Projects.ts index 2b56e5a..41d0500 100644 --- a/front/Tabs/Projects.ts +++ b/front/Tabs/Projects.ts @@ -37,6 +37,20 @@ const Projects = ({ width, height, scrollPosition }: ProjectsProps) => { technologies: ["ts", "Bun", "ssh2"], learnMoreLink: "https://forge.feror.fr/feror/Portfolio", }, + { + title: "sh-chat", + description: + `A Discord-like chat app, but in the terminal.${newLine}` + + `This app was made during a c course at IUT de Bayonne et du Pays Basque.${newLine}` + + `It is made entirely in C, using sockets for communication.${newLine}` + + `This app is a simple chat app, with a server and multiple clients.${newLine}` + + `It offers basic functionalities, such as sending messages, chat history,${newLine}` + + `changing nickname, uploading files, and more.${newLine}` + + `Although it really shouldn't be used (at least I wouldn't),${newLine}` + + `it was a fun project to work on.${newLine}`, + technologies: ["c"], + learnMoreLink: "https://github.com/Feror-BotMaker/sh-chat", + }, ]; return ScrollComponent({ width,