A Windows 95 styled start menu navigation component.
Note: This is a static preview. The actual Start Menu component is displayed at the bottom of the page and provides full navigation functionality with active state highlighting and dropdown submenus.
import { StartMenu, type MenuItem } from "@/components/windows95-ui/start-menu"
const menus: MenuItem[] = [
{
label: "Dashboard",
path: "/dashboard",
icon: <LayoutDashboard className="h-4 w-4" />,
},
{
label: "Users",
path: "/users",
icon: <Users className="h-4 w-4" />,
submenu: [
{ label: "All Users", path: "/users?filter=all" },
{ label: "Active Users", path: "/users?filter=active" },
],
},
]
<StartMenu menus={menus} />