"use client"; import { Menu, NotebookPen } from "lucide-react"; import { Button } from "@/components/ui/button"; import { ThemeToggle } from "@/components/theme/theme-toggle"; import { useSideNav } from "@/components/nav/side-nav-provider"; /** * Mobile (< md) app top bar: hamburger (opens the nav drawer) + brand, * with the theme picker on the right so it's reachable without opening * the drawer. The page's own header (board title, counts, actions) sits * in the content area just below this bar. */ export function MobileTopBar() { const { setMobileOpen } = useSideNav(); return (
Organize
); }