From 8c52ef733afce9d5055302af2b8ee7bd7248216e Mon Sep 17 00:00:00 2001 From: Hri7566 Date: Thu, 31 Aug 2023 19:54:02 -0400 Subject: [PATCH] nicer --- src/components/Card.astro | 66 --------------------------------- src/components/Footer.astro | 2 +- src/components/LinkBox.astro | 2 +- src/components/MainHeader.astro | 2 +- src/pages/index.astro | 21 ++++++----- 5 files changed, 14 insertions(+), 79 deletions(-) delete mode 100644 src/components/Card.astro diff --git a/src/components/Card.astro b/src/components/Card.astro deleted file mode 100644 index 36a6429..0000000 --- a/src/components/Card.astro +++ /dev/null @@ -1,66 +0,0 @@ ---- -interface Props { - title: string; - body: string; - href: string; -} - -const { href, title, body } = Astro.props; ---- - - - diff --git a/src/components/Footer.astro b/src/components/Footer.astro index f9be4a0..a35123f 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -2,7 +2,7 @@ const currentYear = new Date().getUTCFullYear(); --- -