diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2024-02-04 12:30:02 -0500 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2024-02-04 12:30:02 -0500 |
| commit | 71093a4c88ed41bd51a3387f1e91c7ee05f2203c (patch) | |
| tree | d45138d7e3a7afc52c11fff65f77f3d040f2ffe8 /src/pages/projects.astro | |
| parent | 27153476429c4a85630dedcf940a50089ea02151 (diff) | |
| download | personal-website-71093a4c88ed41bd51a3387f1e91c7ee05f2203c.tar.gz personal-website-71093a4c88ed41bd51a3387f1e91c7ee05f2203c.tar.bz2 personal-website-71093a4c88ed41bd51a3387f1e91c7ee05f2203c.zip | |
Almost finished implementing guestbook; More consistency in cards
Diffstat (limited to 'src/pages/projects.astro')
| -rw-r--r-- | src/pages/projects.astro | 40 |
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> |
