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; +--- + +
+ {body} +
+ +