From 418b5d5f886837cbde9a587a362d827195df6cf5 Mon Sep 17 00:00:00 2001 From: LimePotato Date: Fri, 18 Aug 2023 04:26:40 -0600 Subject: [PATCH] Revamp Projects Page --- src/components/Card.astro | 8 +- src/pages/projects.astro | 186 +++++++++++++++++++++++++++----------- 2 files changed, 139 insertions(+), 55 deletions(-) diff --git a/src/components/Card.astro b/src/components/Card.astro index bd6d597..fb5d4e3 100644 --- a/src/components/Card.astro +++ b/src/components/Card.astro @@ -3,14 +3,16 @@ interface Props { title: string; body: string; href: string; + source: string; } -const { href, title, body } = Astro.props; +const { href, title, body, source } = Astro.props; --- \ No newline at end of file