From 71093a4c88ed41bd51a3387f1e91c7ee05f2203c Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Sun, 4 Feb 2024 12:30:02 -0500 Subject: Almost finished implementing guestbook; More consistency in cards --- src/pages/projects.astro | 40 ++++++++++++++++++++++------------------ 1 file changed, 22 insertions(+), 18 deletions(-) (limited to 'src/pages/projects.astro') 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"; --- -
- { - projects.map((project) => { - return ( -
-

{project.name}

-

{project.description}

-
- {project.links.map((link) => { - return ( - {link.name} - ) - })} -
-
- ) - }) - } +
+
+ { + projects.map((project) => { + return ( +
+

{project.name}

+

{project.description}

+
+ {project.links.map((link) => { + return ( + {link.name} + ) + })} +
+
+ ) + }) + } +
+

Archived Repositories

+

Alee Productions/AleeCorp Software