diff --git a/src/components/Card.astro b/src/components/Card.astro index 70b8f6a..9486c72 100644 --- a/src/components/Card.astro +++ b/src/components/Card.astro @@ -1,6 +1,4 @@ --- -import { string } from 'astro:schema'; - interface Props { title: string; body: string; @@ -10,9 +8,9 @@ interface Props { const { href, title, body } = Astro.props; --- -