We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc30472 commit d4f4aabCopy full SHA for d4f4aab
components/app-sidebar.tsx
@@ -54,7 +54,17 @@ function PageSidebarProvider() {
54
)
55
return (
56
<NavigatorContext.Provider value={contextValue}>
57
-
+ {/* <SidebarMenu className="mb-12 px-8 text-xs overflow-y-scroll no-scrollbar">
58
+ <span className="font-bold p-2 select-none text-foreground/50">
59
+ This Page
60
+ </span>
61
+ {content.map((item) => (
62
+ <Link key={item.text} href={"#" + item.id} className="p-2 rounded-sm hover:bg-o-blue/3 select-none">
63
+ {item.text}
64
+ </Link>
65
+ ))}
66
+
67
+ </SidebarMenu> */}
68
</NavigatorContext.Provider>
69
70
}
0 commit comments