From 9bcde3bf6d778cf083cb05a6a97ebaf736bdfdf8 Mon Sep 17 00:00:00 2001 From: Alisson Nunes Date: Fri, 20 Sep 2024 02:37:48 +0000 Subject: [PATCH] =?UTF-8?q?Pequenas=20corre=C3=A7=C3=B5es?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/layouts/Layout.astro | 5 +++-- .github/404.html => src/pages/404.astro | 2 ++ 2 files changed, 5 insertions(+), 2 deletions(-) rename .github/404.html => src/pages/404.astro (97%) diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index 42296a7..da32a9e 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -1,15 +1,16 @@ --- interface Props { title: string; + description?: string; } -const { title } = Astro.props; +const { title, description } = Astro.props; --- - + diff --git a/.github/404.html b/src/pages/404.astro similarity index 97% rename from .github/404.html rename to src/pages/404.astro index 6b995cb..70a6b31 100644 --- a/.github/404.html +++ b/src/pages/404.astro @@ -1,3 +1,5 @@ +--- +---