small typo fixes

This commit is contained in:
smolgrrr 2023-03-29 22:08:06 +11:00
parent b9bd420ff9
commit 1e09731b18
4 changed files with 7 additions and 4 deletions

1
.gitignore vendored
View File

@ -14,6 +14,7 @@ out
*.local *.local
.next .next
.vscode .vscode
pnpm-lock.yaml
# Editor directories and files # Editor directories and files
.vscode/* .vscode/*

View File

@ -52,7 +52,7 @@ export default function FormBase() {
value={value} value={value}
onChange={(e) => setValue(e.target.value)} onChange={(e) => setValue(e.target.value)}
spellCheck={false} spellCheck={false}
placeholder="What's your thought?" placeholder="What's up?"
className="relative h-32 w-full resize-none rounded-lg border border-black/5 px-3.5 py-3 text-sm shadow-input shadow-black/5 !outline-none placeholder:text-zinc-400 dark:bg-zinc-800 dark:text-zinc-200 dark:shadow-black/10 dark:placeholder:text-zinc-500" className="relative h-32 w-full resize-none rounded-lg border border-black/5 px-3.5 py-3 text-sm shadow-input shadow-black/5 !outline-none placeholder:text-zinc-400 dark:bg-zinc-800 dark:text-zinc-200 dark:shadow-black/10 dark:placeholder:text-zinc-500"
/> />
</div> </div>

View File

@ -31,9 +31,11 @@ export default function Page() {
<div className="flex flex-col items-center gap-2"> <div className="flex flex-col items-center gap-2">
<LumeSymbol className="h-16 w-16 text-black dark:text-white" /> <LumeSymbol className="h-16 w-16 text-black dark:text-white" />
<div className="text-center"> <div className="text-center">
<h3 className="text-lg font-semibold leading-tight text-zinc-900 dark:text-zinc-100">Did you know?</h3> <h3 className="text-lg font-semibold leading-tight text-zinc-900 dark:text-zinc-100">
Here's an interesting fact:
</h3>
<p className="font-medium text-zinc-300 dark:text-zinc-600"> <p className="font-medium text-zinc-300 dark:text-zinc-600">
No one can&apos;t stop you use bitcoin and nostr Bitcoin and Nostr can be used by anyone, and no one can stop you!
</p> </p>
</div> </div>
</div> </div>

View File

@ -101,7 +101,7 @@ export default function Page() {
<div className="text-center"> <div className="text-center">
<h3 className="text-lg font-semibold leading-tight text-zinc-900 dark:text-zinc-100">Loading...</h3> <h3 className="text-lg font-semibold leading-tight text-zinc-900 dark:text-zinc-100">Loading...</h3>
<p className="font-medium text-zinc-300 dark:text-zinc-600"> <p className="font-medium text-zinc-300 dark:text-zinc-600">
Keep calm and waiting, Lume is fetching event... Keep calm as Lume fetches events... &#129305;
</p> </p>
</div> </div>
</div> </div>