aboutsummaryrefslogtreecommitdiff
path: root/src/pages
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages')
-rw-r--r--src/pages/projects.astro16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/pages/projects.astro b/src/pages/projects.astro
index 0a12522..b381bf3 100644
--- a/src/pages/projects.astro
+++ b/src/pages/projects.astro
@@ -1,5 +1,21 @@
---
import Page from "../layouts/Page.astro";
+import projects from "../components/projects.json";
---
<Page title="Projects" description="Things that I have been working on in the past, and present">
+ {
+ projects.map((project) => {
+ return (
+ <div class="projects">
+ <h1>{project.name}</h1>
+ <p>{project.description}</p>
+ {project.links.map((link) => {
+ return (
+ <a href={link.url}>{link.name}</a>
+ )
+ })}
+ </div>
+ )
+ })
+ }
</Page>