From 989c8d6e947c56f0241a169da02ba2558653a4b0 Mon Sep 17 00:00:00 2001 From: Alam Guardin Date: Mon, 5 Aug 2024 21:11:05 -0500 Subject: init commit --- src/components/Card.astro | 61 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 src/components/Card.astro (limited to 'src/components') diff --git a/src/components/Card.astro b/src/components/Card.astro new file mode 100644 index 0000000..bd6d597 --- /dev/null +++ b/src/components/Card.astro @@ -0,0 +1,61 @@ +--- +interface Props { + title: string; + body: string; + href: string; +} + +const { href, title, body } = Astro.props; +--- + + + -- cgit v1.2.3