From 60b5ab2cfd6619c501c59fd5ee123ee511f1d46e Mon Sep 17 00:00:00 2001 From: aleidk Date: Sun, 25 Jun 2023 15:36:25 -0400 Subject: [PATCH] re-add component --- src/components/Card.astro | 63 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 src/components/Card.astro diff --git a/src/components/Card.astro b/src/components/Card.astro new file mode 100644 index 0000000..c68fa2a --- /dev/null +++ b/src/components/Card.astro @@ -0,0 +1,63 @@ +--- +export interface Props { + title: string; + body: string; + href: string; +} + +const { href, title, body } = Astro.props; +--- + + +