diff --git a/front/Tabs/About.ts b/front/Tabs/About.ts index bd0f430..dfd89b7 100644 --- a/front/Tabs/About.ts +++ b/front/Tabs/About.ts @@ -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,