From 38218906ae76e4097449e8e2bf0329c230c187c9 Mon Sep 17 00:00:00 2001 From: Ivan Reshetnikov Date: Sun, 1 Oct 2023 11:04:31 +0500 Subject: [PATCH] Remove default Card component --- src/components/Card.astro | 61 --------------------------------------- 1 file changed, 61 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 bd6d597..0000000 --- a/src/components/Card.astro +++ /dev/null @@ -1,61 +0,0 @@ ---- -interface Props { - title: string; - body: string; - href: string; -} - -const { href, title, body } = Astro.props; ---- - - -