aboutsummaryrefslogtreecommitdiff
path: root/src/pages/projects.astro
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2024-01-22 23:08:05 -0500
committerAndrew Lee <alee14498@protonmail.com>2024-01-22 23:08:05 -0500
commit99141f7c547dbf3aa6af262bed169cd00cc4d19a (patch)
treed2414ed8602e5efd479e2b3484bc7f9d3bf21a8a /src/pages/projects.astro
parent8fd6f1a2739b686092bbb5806666e63f283d6510 (diff)
downloadpersonal-website-99141f7c547dbf3aa6af262bed169cd00cc4d19a.tar.gz
personal-website-99141f7c547dbf3aa6af262bed169cd00cc4d19a.tar.bz2
personal-website-99141f7c547dbf3aa6af262bed169cd00cc4d19a.zip
Projects page almost completed; Added archive site
Diffstat (limited to 'src/pages/projects.astro')
-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>