aboutsummaryrefslogtreecommitdiff
path: root/src/pages/projects.astro
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/projects.astro')
-rw-r--r--src/pages/projects.astro40
1 files changed, 22 insertions, 18 deletions
diff --git a/src/pages/projects.astro b/src/pages/projects.astro
index 37cec1a..33452c8 100644
--- a/src/pages/projects.astro
+++ b/src/pages/projects.astro
@@ -4,24 +4,28 @@ import projects from "../data/projects.json";
import "../styles/cards.css";
---
<Page title="Projects" description="Things that I have been working on in the past, and present">
- <main class="grid">
- {
- projects.map((project) => {
- return (
- <article class="card">
- <h1>{project.name}</h1>
- <p>{project.description}</p>
- <div class="row">
- {project.links.map((link) => {
- return (
- <a href={link.url} target={link.external ? "_blank" : "_self"}>{link.name}</a>
- )
- })}
- </div>
- </article>
- )
- })
- }
+ <main>
+ <div class="grid">
+ {
+ projects.map((project) => {
+ return (
+ <article class="card">
+ <h1>{project.name}</h1>
+ <p>{project.description}</p>
+ <div class="row">
+ {project.links.map((link) => {
+ return (
+ <a href={link.url} target={link.external ? "_blank" : "_self"}>{link.name}</a>
+ )
+ })}
+ </div>
+ </article>
+ )
+ })
+ }
+ </div>
+ <h2>Archived Repositories</h2>
+ <p><a href="https://github.com/alee14-projects" target="_blank">Alee Productions/AleeCorp Software</a></p>
</main>
</Page>
<style>