import { useUIStore } from "../../stores/ui"; import { useFeedStore } from "../../stores/feed"; import { useUserStore } from "../../stores/user"; import { getNDK } from "../../lib/nostr"; import { AccountSwitcher } from "./AccountSwitcher"; const NAV_ITEMS = [ { id: "feed" as const, label: "feed", icon: "◈" }, { id: "search" as const, label: "search", icon: "⌕" }, { id: "zaps" as const, label: "zaps", icon: "⚡" }, { id: "relays" as const, label: "relays", icon: "⟐" }, { id: "settings" as const, label: "settings", icon: "⚙" }, { id: "about" as const, label: "support", icon: "♥" }, ] as const; export function Sidebar() { const { currentView, setView, sidebarCollapsed, toggleSidebar } = useUIStore(); const { connected, notes } = useFeedStore(); const { loggedIn } = useUserStore(); const c = sidebarCollapsed; return ( ); }