diff --git a/src/components/Card.astro b/src/components/Card.astro index 67ac2d5..c02a9a7 100644 --- a/src/components/Card.astro +++ b/src/components/Card.astro @@ -5,13 +5,12 @@ interface Props { className?: string; title: string; body: string; - href: string; tags: string[]; repoUrl: string; demoUrl: string; } -const { image, className, title, body, href, tags, repoUrl, demoUrl } = Astro.props; +const { image, className, title, body, tags, repoUrl, demoUrl } = Astro.props; ---
  • @@ -30,13 +29,13 @@ const { image, className, title, body, href, tags, repoUrl, demoUrl } = Astro.pr