diff options
| author | CodeTorso <[email protected]> | 2024-07-13 03:03:10 +0530 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-07-13 03:03:10 +0530 |
| commit | 817bfa6cd962c201c80f4e8053093bdd738d1d22 (patch) | |
| tree | a7eece9a1353988b2d5fb63f7ec6b3f3dd7e9570 /apps | |
| parent | Merge pull request #116 from Dhravya/ui-improvements (diff) | |
| parent | more improved ui (diff) | |
| download | supermemory-817bfa6cd962c201c80f4e8053093bdd738d1d22.tar.xz supermemory-817bfa6cd962c201c80f4e8053093bdd738d1d22.zip | |
Merge pull request #117 from Dhravya/ui-improvements
more improved ui
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/web/app/(dash)/menu.tsx | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/apps/web/app/(dash)/menu.tsx b/apps/web/app/(dash)/menu.tsx index a481ae1f..04d3b898 100644 --- a/apps/web/app/(dash)/menu.tsx +++ b/apps/web/app/(dash)/menu.tsx @@ -209,9 +209,7 @@ function Menu() { </DialogHeader> <div> - <Label htmlFor="name"> - Resource (URL or content) - </Label> + <Label htmlFor="name">Resource (URL or content)</Label> <Textarea className={`bg-[#2F353C] text-[#DBDEE1] max-h-[35vh] overflow-auto focus-visible:ring-0 border-none focus-visible:ring-offset-0 mt-2 ${/^https?:\/\/\S+$/i.test(content) && "text-[#1D9BF0] underline underline-offset-2"}`} id="content" @@ -231,14 +229,11 @@ function Menu() { {autoDetectedType != "none" && ( <div> - <Label - className="space-y-2" - htmlFor="space" - > - <h3 className="font-bold text-lg">Spaces</h3> + <Label className="space-y-2" htmlFor="space"> + <h3 className="font-bold text-lg">Spaces (Optional)</h3> <p className="leading-normal"> - A space is a collection of memories. You can create a - space and then chat/write/ideate with it. + A space is a collection of memories. It's a way to + organise your memories. </p> </Label> @@ -287,7 +282,7 @@ function Menu() { ); } }} - placeholder="Save or create space by typing." + placeholder="select or create a new space." className="bg-[#2F353C] h-min rounded-md mt-4 mb-4" /> |