aboutsummaryrefslogtreecommitdiff
path: root/apps/web/src/components/Sidebar
diff options
context:
space:
mode:
authorDhravya <[email protected]>2024-04-15 10:21:37 -0700
committerDhravya <[email protected]>2024-04-15 10:21:37 -0700
commit1fd57416eb3a3c46da894dc293187d148ce6abce (patch)
tree448fe26fc1b73ea47acb035ab27e95a81560bff5 /apps/web/src/components/Sidebar
parentextension auth button (diff)
downloadsupermemory-1fd57416eb3a3c46da894dc293187d148ce6abce.tar.xz
supermemory-1fd57416eb3a3c46da894dc293187d148ce6abce.zip
get chrome extension button
Diffstat (limited to 'apps/web/src/components/Sidebar')
-rw-r--r--apps/web/src/components/Sidebar/index.tsx7
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/web/src/components/Sidebar/index.tsx b/apps/web/src/components/Sidebar/index.tsx
index 17dd4cd7..af5fd222 100644
--- a/apps/web/src/components/Sidebar/index.tsx
+++ b/apps/web/src/components/Sidebar/index.tsx
@@ -8,6 +8,7 @@ import { Bin } from "@/assets/Bin";
import { Avatar, AvatarFallback, AvatarImage } from "@radix-ui/react-avatar";
import { signOut, useSession } from "next-auth/react";
import MessagePoster from "@/app/MessagePoster";
+import Chrome from "@/lib/icons";
export type MenuItem = {
icon: React.ReactNode | React.ReactNode[];
@@ -125,6 +126,12 @@ export default function Sidebar({
selectedItem={selectedItem}
setSelectedItem={setSelectedItem}
/>
+ <a
+ className="mb-4 flex items-center justify-center p-2 text-center text-sm text-sky-500"
+ href="https://chromewebstore.google.com/detail/supermemory/afpgkkipfdpeaflnpoaffkcankadgjfc?hl=en-GB&authuser=0"
+ >
+ <Chrome className="h-6 w-6" />
+ </a>
<MessagePoster jwt={jwt} />
</div>
<AnimatePresence>