diff --git a/web/src/components/InfoProject.astro b/web/src/components/InfoProject.astro
index f5fdf06..07fc43e 100644
--- a/web/src/components/InfoProject.astro
+++ b/web/src/components/InfoProject.astro
@@ -39,7 +39,114 @@ const { info } = Astro.props
>
#{info.number} - {info.title}
- ← Volver a los proyectos
+
+ ← Volver a los proyectos
+
+
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
+
+
+ )}
- )
+ );
})
}