Spaces:
Sleeping
Sleeping
layout
Browse files- patches/src/App.tsx +4 -13
patches/src/App.tsx
CHANGED
@@ -62,28 +62,19 @@ export default function Home() {
|
|
62 |
</p>
|
63 |
</div>
|
64 |
</ReactModal>
|
65 |
-
{/*<div className="p-3 absolute top-0 right-0 z-10 text-2xl">
|
66 |
-
<Authenticated>
|
67 |
-
<UserButton afterSignOutUrl="/ai-town" />
|
68 |
-
</Authenticated>
|
69 |
-
|
70 |
-
<Unauthenticated>
|
71 |
-
<LoginButton />
|
72 |
-
</Unauthenticated>
|
73 |
-
</div> */}
|
74 |
|
75 |
<div className="w-full lg:h-screen min-h-screen relative isolate overflow-hidden shadow-2xl flex flex-col justify-start">
|
76 |
<Game />
|
77 |
|
78 |
<footer className="justify-end bottom-0 left-0 w-full flex items-center mt-4 gap-3 p-6 flex-wrap pointer-events-none">
|
79 |
<div className="flex gap-4 flex-grow pointer-events-none">
|
80 |
-
|
|
|
|
|
81 |
<MusicButton />
|
82 |
<InteractButton />
|
83 |
<OAuthLogin />
|
84 |
-
|
85 |
-
Help
|
86 |
-
</Button>
|
87 |
</div>
|
88 |
|
89 |
</footer>
|
|
|
62 |
</p>
|
63 |
</div>
|
64 |
</ReactModal>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
|
66 |
<div className="w-full lg:h-screen min-h-screen relative isolate overflow-hidden shadow-2xl flex flex-col justify-start">
|
67 |
<Game />
|
68 |
|
69 |
<footer className="justify-end bottom-0 left-0 w-full flex items-center mt-4 gap-3 p-6 flex-wrap pointer-events-none">
|
70 |
<div className="flex gap-4 flex-grow pointer-events-none">
|
71 |
+
<Button imgUrl={helpImg} onClick={() => setHelpModalOpen(true)}>
|
72 |
+
Help
|
73 |
+
</Button>
|
74 |
<MusicButton />
|
75 |
<InteractButton />
|
76 |
<OAuthLogin />
|
77 |
+
|
|
|
|
|
78 |
</div>
|
79 |
|
80 |
</footer>
|