From 1c1c5db4caf55e3204b82bfa4b39a50ff1283b06 Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Wed, 20 Sep 2023 00:24:08 -0700 Subject: implemented project page with cards --- src/components/Card.astro | 73 +++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 64 insertions(+), 9 deletions(-) (limited to 'src/components/Card.astro') diff --git a/src/components/Card.astro b/src/components/Card.astro index bd6d597..bf0ecf5 100644 --- a/src/components/Card.astro +++ b/src/components/Card.astro @@ -1,24 +1,30 @@ +User --- interface Props { title: string; body: string; href: string; + language: string; + languageColor: string; } -const { href, title, body } = Astro.props; +const { href, title, body, language, languageColor } = Astro.props; --- + + \ No newline at end of file -- cgit v1.2.3