From 385baaa09fb7909751d70c571b50f81c64bc3062 Mon Sep 17 00:00:00 2001 From: limepotato Date: Tue, 11 Jun 2024 11:51:20 -0600 Subject: [PATCH] Accessibility --- src/components/Card.astro | 5 +++-- src/components/Footer.astro | 30 ++++++++++++++++-------------- src/pages/index.astro | 5 +++++ src/pages/projects.astro | 10 ++++++++++ 4 files changed, 34 insertions(+), 16 deletions(-) diff --git a/src/components/Card.astro b/src/components/Card.astro index 12a186c..3cb8f82 100755 --- a/src/components/Card.astro +++ b/src/components/Card.astro @@ -4,15 +4,16 @@ interface Props { body: string; href: string; source: string; + alt: string; } -const { href, title, body, source } = Astro.props; +const { href, title, body, source, alt } = Astro.props; ---