diff --git a/packages/react/src/RouteObject.ts b/packages/react/src/RouteObject.ts index 4f2aa93..a3cea10 100644 --- a/packages/react/src/RouteObject.ts +++ b/packages/react/src/RouteObject.ts @@ -15,5 +15,27 @@ export default { name: "Github", eq: () => false } - ] -} \ No newline at end of file + ], + sideNav: { + "Documents": [ + { + path: "/docs", + name: "Introduction", + eq: (pathname: string) => pathname === "/docs" + }, + { + path: "/docs/installation", + name: "Installation", + eq: (pathname: string) => pathname === "/docs/installation" + } + ], + "Components": [ + { + path: "/docs/components/button", + name: "Button", + eq: (pathname: string) => pathname === "/docs/components/button" + } + ] + } +} +