From 27153476429c4a85630dedcf940a50089ea02151 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Sun, 4 Feb 2024 00:09:03 -0500 Subject: Made card more consistent; Guestbook submits; Web analytics --- src/pages/projects.astro | 42 ++++-------------------------------------- 1 file changed, 4 insertions(+), 38 deletions(-) (limited to 'src/pages/projects.astro') diff --git a/src/pages/projects.astro b/src/pages/projects.astro index d609211..37cec1a 100644 --- a/src/pages/projects.astro +++ b/src/pages/projects.astro @@ -1,13 +1,14 @@ --- import Page from "../layouts/Page.astro"; import projects from "../data/projects.json"; +import "../styles/cards.css"; --- -
+
{ projects.map((project) => { return ( -
+

{project.name}

{project.description}

@@ -17,51 +18,16 @@ import projects from "../data/projects.json"; ) })}
-
+ ) }) }
-- cgit v1.2.3