From 08468493a148542dc93044f56983dd01b5d946cc Mon Sep 17 00:00:00 2001 From: Liam Arbuckle Date: Tue, 20 Feb 2024 13:55:02 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=BB=F0=9F=8E=AA=20=E2=86=9D=20[=20SGV2?= =?UTF-8?q?-10=20SGV2-9=20SGV2-2=20FCDB-24=20]=20Some=20reorganisation=20&?= =?UTF-8?q?=20pitch=20work?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/index.tsx | 30 +++++++++++++++++++----------- 1 file changed, 19 insertions(+), 11 deletions(-) diff --git a/pages/index.tsx b/pages/index.tsx index 6f982ae4..9c97e198 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -24,6 +24,7 @@ import FeedOverlay from "../components/Overlays/1-Feed"; import UponSignupModal from "../components/Modals/UponSignup"; import { MinimalAccordion, OnboardingWindows } from "../components/Gameplay/onboarding"; import PlanetCharacter, { RoverCharacter } from "../components/Content/Assets/PlanetCharacter"; +import { Garden } from "../components/Content/Planets/GalleryList"; export const metadata: Metadata = { title: "Star Sailors", @@ -106,6 +107,8 @@ export function PublicLanding() { }; }, []); + const [showGalaxy, setShowGalaxy] = useState(true); + // if (session && !profile?.location) { // return ( @@ -204,17 +207,22 @@ export function PublicLanding() { - {/* Menu Button */} - {!showFeedOverlay && ( - - )} +{/* Menu Button */} +{!showFeedOverlay && ( + +)} + +
+ setShowGalaxy(false)} /> +
+ ); };