Skip to content

Commit

Permalink
πŸ’»πŸŽͺ ↝ [ SGV2-10 SGV2-9 SGV2-2 FCDB-24 ] Some reorganisation & pitch work
Browse files Browse the repository at this point in the history
  • Loading branch information
Gizmotronn committed Apr 9, 2024
1 parent f9708d8 commit 0846849
Showing 1 changed file with 19 additions and 11 deletions.
30 changes: 19 additions & 11 deletions pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -106,6 +107,8 @@ export function PublicLanding() {
};
}, []);

const [showGalaxy, setShowGalaxy] = useState(true);


// if (session && !profile?.location) {
// return (
Expand Down Expand Up @@ -204,17 +207,22 @@ export function PublicLanding() {
</div>
</div>

{/* Menu Button */}
{!showFeedOverlay && (
<button
onClick={handleOpenFeedOverlay}
className="fixed bottom-2 left-1/2 transform -translate-x-1/2 mt-4 px-4 py-2 text-white rounded"
>
<a href="#_" className="inline-flex overflow-hidden text-white rounded group">
<img src='/Galaxy/Kepler-22.png' height='100' width='100' />
</a>
</button>
)}
{/* Menu Button */}
{!showFeedOverlay && (
<button
onClick={handleOpenFeedOverlay}
className="fixed bottom-2 left-1/2 transform -translate-x-1/2 mt-4 px-4 py-2 text-white rounded"
>
<a href="#_" className="inline-flex overflow-hidden text-white rounded group">
<img src='/Galaxy/Kepler-22.png' height='100' width='100' />
</a>
</button>
)}

<div className="mt-10">
<Garden onClose={() => setShowGalaxy(false)} />
</div>

</LayoutNoNav>
);
};
Expand Down

0 comments on commit 0846849

Please sign in to comment.