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/Sidebar | |
| 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/Sidebar')
| -rw-r--r-- | apps/web/src/components/Sidebar/index.tsx | 26 |
1 files changed, 8 insertions, 18 deletions
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", |