mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-07-12 22:42:13 +02:00
- Introduced RoutedSectionShell to unify navigation structure across Playground, User Settings, and Workspace Settings layouts. - Replaced individual navigation implementations with a more cohesive and reusable component. - Updated navigation items to include href properties for better routing. - Enhanced mobile navigation experience with drawer support and improved scroll handling.
18 lines
540 B
TypeScript
18 lines
540 B
TypeScript
export { CreateWorkspaceDialog } from "./dialogs";
|
|
export { Header } from "./header";
|
|
export { IconRail, NavIcon, WorkspaceAvatar } from "./icon-rail";
|
|
export type { RoutedSectionGroup, RoutedSectionItem } from "./RoutedSectionShell";
|
|
export { RoutedSectionShell } from "./RoutedSectionShell";
|
|
export { LayoutShell } from "./shell";
|
|
export {
|
|
ChatListItem,
|
|
CreditBalanceDisplay,
|
|
MobileSidebar,
|
|
MobileSidebarTrigger,
|
|
NavSection,
|
|
Sidebar,
|
|
SidebarCollapseButton,
|
|
SidebarHeader,
|
|
SidebarSection,
|
|
SidebarUserProfile,
|
|
} from "./sidebar";
|