From ad5865e999e7de6310b7c1877d551802eb57d88e Mon Sep 17 00:00:00 2001 From: Pavel Grinchenko Date: Thu, 3 Apr 2025 14:51:16 +0100 Subject: [PATCH 1/2] Fix props casing in the GraphQLLogo component --- src/components/react/GraphQLEditor/GraphQLLogo.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/react/GraphQLEditor/GraphQLLogo.tsx b/src/components/react/GraphQLEditor/GraphQLLogo.tsx index b38bb099..0188aab6 100644 --- a/src/components/react/GraphQLEditor/GraphQLLogo.tsx +++ b/src/components/react/GraphQLEditor/GraphQLLogo.tsx @@ -14,9 +14,9 @@ const GraphQLLogo = ({ > Date: Thu, 3 Apr 2025 15:57:40 +0100 Subject: [PATCH 2/2] Add MobileMenuFooter to the splash template --- src/starlight-overrides/PageFrame.astro | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/starlight-overrides/PageFrame.astro b/src/starlight-overrides/PageFrame.astro index d391a003..fc5d6e56 100644 --- a/src/starlight-overrides/PageFrame.astro +++ b/src/starlight-overrides/PageFrame.astro @@ -1,6 +1,9 @@ --- +import MobileMenuFooter from "@astrojs/starlight/components/MobileMenuFooter.astro"; import Default from "@astrojs/starlight/components/PageFrame.astro"; import Analytics from "@components/Analytics.astro"; + +const { template } = Astro.locals.starlightRoute.entry.data; --- @@ -9,6 +12,13 @@ import Analytics from "@components/Analytics.astro"; + { + template === "splash" && ( +
+ +
+ ) + }