Spaces:
Sleeping
Sleeping
layout app
Browse files- patches/src/App.tsx +1 -5
patches/src/App.tsx
CHANGED
|
@@ -22,7 +22,6 @@ export default function Home() {
|
|
| 22 |
const [helpModalOpen, setHelpModalOpen] = useState(false);
|
| 23 |
return (
|
| 24 |
<main className="relative flex min-h-screen flex-col items-center justify-between font-body game-background">
|
| 25 |
-
<PoweredByConvex />
|
| 26 |
|
| 27 |
<ReactModal
|
| 28 |
isOpen={helpModalOpen}
|
|
@@ -78,11 +77,8 @@ export default function Home() {
|
|
| 78 |
|
| 79 |
<footer className="justify-end bottom-0 left-0 w-full flex items-center mt-4 gap-3 p-6 flex-wrap pointer-events-none">
|
| 80 |
<div className="flex gap-4 flex-grow pointer-events-none">
|
| 81 |
-
|
| 82 |
<MusicButton />
|
| 83 |
-
<Button href="https://github.com/a16z-infra/ai-town" imgUrl={starImg}>
|
| 84 |
-
Star
|
| 85 |
-
</Button>
|
| 86 |
<InteractButton />
|
| 87 |
<OAuthLogin />
|
| 88 |
<Button imgUrl={helpImg} onClick={() => setHelpModalOpen(true)}>
|
|
|
|
| 22 |
const [helpModalOpen, setHelpModalOpen] = useState(false);
|
| 23 |
return (
|
| 24 |
<main className="relative flex min-h-screen flex-col items-center justify-between font-body game-background">
|
|
|
|
| 25 |
|
| 26 |
<ReactModal
|
| 27 |
isOpen={helpModalOpen}
|
|
|
|
| 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 |
<Button imgUrl={helpImg} onClick={() => setHelpModalOpen(true)}>
|