Spaces:
Running
Running
Commit
·
0c29d71
1
Parent(s):
9514b9f
Oh yeah
Browse files- src/app/interface/top-menu/index.tsx +1 -1
- src/app/main.tsx +2 -2
src/app/interface/top-menu/index.tsx
CHANGED
@@ -45,7 +45,7 @@ export function TopMenu() {
|
|
45 |
)}>
|
46 |
<div className="flex flex-row flex-grow w-full">
|
47 |
<Input
|
48 |
-
placeholder="
|
49 |
className="w-full bg-neutral-300 text-neutral-800 dark:bg-neutral-300 dark:text-neutral-800 rounded-r-none"
|
50 |
// disabled={atLeastOnePanelIsBusy}
|
51 |
onChange={(e) => {
|
|
|
45 |
)}>
|
46 |
<div className="flex flex-row flex-grow w-full">
|
47 |
<Input
|
48 |
+
placeholder={`Type a location name eg. "Spaceport in Mos Eisley", "Disneyland", "Downtown Los Angeles", "Simpsons Home"..`}
|
49 |
className="w-full bg-neutral-300 text-neutral-800 dark:bg-neutral-300 dark:text-neutral-800 rounded-r-none"
|
50 |
// disabled={atLeastOnePanelIsBusy}
|
51 |
onChange={(e) => {
|
src/app/main.tsx
CHANGED
@@ -125,11 +125,11 @@ export default function Main() {
|
|
125 |
fonts.actionman.className
|
126 |
)}>
|
127 |
<div className={cn(
|
128 |
-
`text-center text-
|
129 |
isLoading ? ``: `scale-0 opacity-0`,
|
130 |
`transition-all duration-300 ease-in-out`,
|
131 |
)}>
|
132 |
-
{isLoading ? '
|
133 |
</div>
|
134 |
</div>
|
135 |
</div>
|
|
|
125 |
fonts.actionman.className
|
126 |
)}>
|
127 |
<div className={cn(
|
128 |
+
`text-center text-2xl text-stone-200 w-[70%]`,
|
129 |
isLoading ? ``: `scale-0 opacity-0`,
|
130 |
`transition-all duration-300 ease-in-out`,
|
131 |
)}>
|
132 |
+
{isLoading ? 'Generating new metaverse location..' : ''}
|
133 |
</div>
|
134 |
</div>
|
135 |
</div>
|