diff --git a/web/src/components/Projects.astro b/web/src/components/Projects.astro index 4881bfc..d1192e0 100644 --- a/web/src/components/Projects.astro +++ b/web/src/components/Projects.astro @@ -1,5 +1,5 @@ --- -import { PROJECTS } from "../consts" +import { PROJECTS } from "../consts"; ---
{ PROJECTS.map((project, index) => { - const num = `${index + 1}`.padStart(2, "0") + const num = `${index + 1}`.padStart(2, "0"); return (
@@ -119,10 +119,40 @@ import { PROJECTS } from "../consts" )} + {project.twitch != null && ( +
  • + + + + + + + + Twitch + +
  • + )}
    - ) + ); }) }