diff options
| author | Dhravya <[email protected]> | 2024-04-10 21:40:21 -0700 |
|---|---|---|
| committer | Dhravya <[email protected]> | 2024-04-10 21:40:21 -0700 |
| commit | efe6c946cbf95d914cddbbbfa383a62455c3957a (patch) | |
| tree | 5c5660b08b5a2be5d3731e6afa9621997bd9b86b /apps/web/src/components | |
| parent | some branding attempts (diff) | |
| download | supermemory-efe6c946cbf95d914cddbbbfa383a62455c3957a.tar.xz supermemory-efe6c946cbf95d914cddbbbfa383a62455c3957a.zip | |
save user ID with url to ensure that same website can be saved by users
Diffstat (limited to 'apps/web/src/components')
| -rw-r--r-- | apps/web/src/components/Main.tsx | 3 | ||||
| -rw-r--r-- | apps/web/src/components/Sidebar/index.tsx | 26 |
2 files changed, 9 insertions, 20 deletions
diff --git a/apps/web/src/components/Main.tsx b/apps/web/src/components/Main.tsx index eec0c65b..b34755f9 100644 --- a/apps/web/src/components/Main.tsx +++ b/apps/web/src/components/Main.tsx @@ -295,8 +295,7 @@ export default function Main({ sidebarOpen }: { sidebarOpen: boolean }) { )} > <h1 className="text-rgray-11 mt-auto w-full text-center text-3xl font-bold tracking-tight md:mt-0"> - Never forget anything. You are now{" "} - <span className="text-[#C9AC3E]">Smort</span>er. + Ask your second brain </h1> <Textarea2 diff --git a/apps/web/src/components/Sidebar/index.tsx b/apps/web/src/components/Sidebar/index.tsx index 9e6bdcce..568aa3dd 100644 --- a/apps/web/src/components/Sidebar/index.tsx +++ b/apps/web/src/components/Sidebar/index.tsx @@ -77,24 +77,16 @@ export default function Sidebar({ <> <div className="relative hidden h-screen max-h-screen w-max flex-col items-center text-sm font-light md:flex"> <div className="bg-rgray-3 border-r-rgray-6 relative z-[50] flex h-full w-full flex-col items-center justify-center border-r px-2 py-5 "> - <MenuItem - item={{ - label: "Smort", - icon: ( - <Image - className="rounded-md" - src="/icons/logo_without_bg.png" - alt="Smort logo" - width={50} - height={50} - /> - ), - labelDisplay: <WordMark />, - }} - selectedItem={selectedItem} - setSelectedItem={setSelectedItem} + <Image + className="mb-4 rounded-md" + src="/icons/logo_bw_without_bg.png" + alt="Smort logo" + width={50} + height={50} /> + <div className="bg-rgray-6 mb-8 h-[1px] w-full" /> + <MenuItem item={{ label: "Memories", @@ -104,9 +96,7 @@ export default function Sidebar({ selectedItem={selectedItem} setSelectedItem={setSelectedItem} /> - <div className="mt-auto" /> - <MenuItem item={{ label: "Trash", |