Ajout d'un lien vers le portfolio dans la page about

This commit is contained in:
Feror 2025-03-12 09:16:31 +01:00
parent 70854a6809
commit f35bdbbd6d

View file

@ -1,3 +1,4 @@
import { link } from "ansi-escapes";
import { newLine } from "..";
import ScrollComponent from "../ScrollComponent";
@ -45,7 +46,11 @@ const About = ({ width, height, scrollPosition }: AboutProps) => {
` - ...${newLine}` +
` ${newLine}` +
` I am also very passionate about open-source and self-hosting.${newLine}` +
` This portfolio is hosted on my own hardware, and I'm very proud of that.${newLine}`;
` This portfolio is hosted on my own hardware, and I'm very proud of that.${newLine}` +
` If you want to see how it works, you can check out the source code on my ${link(
"Forgejo",
"https://forge.feror.fr/feror/Portfolio"
)}.${newLine}`;
return ScrollComponent({
width,