From 6bd4846b71944add485433703d85982b2396d9ad Mon Sep 17 00:00:00 2001 From: "houston[bot]" Date: Tue, 1 Aug 2023 18:48:26 +0100 Subject: Initial commit from Astro --- 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