From 22a9df07f6a81eb0092a7c28c6fb2e6b6677cbc9 Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Sun, 28 Jun 2026 21:16:54 -0700 Subject: add live demo and source code buttons to project cards --- src/components/Card.astro | 469 +++++++++++++++++++--------------------------- 1 file changed, 197 insertions(+), 272 deletions(-) (limited to 'src/components') diff --git a/src/components/Card.astro b/src/components/Card.astro index 6ffef91..326bd1d 100644 --- a/src/components/Card.astro +++ b/src/components/Card.astro @@ -3,6 +3,7 @@ interface Props { title: string; body: string; href: string; + project?: string; year?: string; language: string; languageColor: string; @@ -14,6 +15,7 @@ interface Props { const { href, + project, title, body, language, @@ -27,55 +29,90 @@ const { --- -- cgit v1.2.3