From bec9828f68dcb767a03e09373038551c121ed556 Mon Sep 17 00:00:00 2001 From: Jalil Arfaoui Date: Wed, 27 Sep 2023 16:56:51 +0200 Subject: [PATCH] =?UTF-8?q?feat:=20met=20une=20page=20contact=20=C3=A0=20p?= =?UTF-8?q?art?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Card.astro | 5 ++-- src/pages/contact.astro | 58 +++++++++++++++++++++++++++++++++++++++ src/pages/index.astro | 37 ++++++++----------------- 3 files changed, 73 insertions(+), 27 deletions(-) create mode 100644 src/pages/contact.astro diff --git a/src/components/Card.astro b/src/components/Card.astro index 2abd889..18ccba7 100644 --- a/src/components/Card.astro +++ b/src/components/Card.astro @@ -3,12 +3,13 @@ export interface Props { title: string; href: string; target: string; + span?: boolean } -const { href, target, title} = Astro.props; +const { href, target, title, span} = Astro.props; --- -