From a726c2688a543697af00c55b3bbaff079ce7a8cf Mon Sep 17 00:00:00 2001 From: shenghuo2 <1308357113@qq.com> Date: Wed, 19 Mar 2025 22:28:01 +0800 Subject: [PATCH] fix: remove unused image prop and loading animation bug --- src/layouts/MainLayout.astro | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/layouts/MainLayout.astro b/src/layouts/MainLayout.astro index 05224cd..007f499 100644 --- a/src/layouts/MainLayout.astro +++ b/src/layouts/MainLayout.astro @@ -7,7 +7,6 @@ interface Props { title: string; description?: string; pageType?: 'index' | 'members' | 'honors'; - image?: string; keywords?: string; } @@ -15,7 +14,6 @@ const { title, description = "Official website of N0wayBack Team", pageType = 'index', - image = logo.src, keywords = "N0wayBack, CTF, Cybersecurity, Hacking, Security Research" } = Astro.props as Props; @@ -100,8 +98,8 @@ const siteUrl = "https://n0wayback.net"; - -