diff --git a/src/components/Logo.jsx b/src/components/Logo.jsx
index 9c692ed9..1e789772 100644
--- a/src/components/Logo.jsx
+++ b/src/components/Logo.jsx
@@ -4,13 +4,13 @@ export function Logo(props) {
let router = useRouter()
return (
- {router.route.startsWith('/docs') &&

}
- {router.route.startsWith('/docs') &&

}
- {router.route.startsWith('/ipa') &&

}
- {router.route.startsWith('/ipa') &&

}
)
diff --git a/src/components/NavigationAPI.jsx b/src/components/NavigationAPI.jsx
index f779b927..4e2ef896 100644
--- a/src/components/NavigationAPI.jsx
+++ b/src/components/NavigationAPI.jsx
@@ -11,26 +11,26 @@ export const apiNavigation = [
{
title: 'Guides',
links: [
- { title: 'Quickstart', href: '/ipa/guides/quickstart' },
- { title: 'Authentication', href: '/ipa/guides/authentication' },
- { title: 'Errors', href: '/ipa/guides/errors' },
+ { title: 'Quickstart', href: '/api/guides/quickstart' },
+ { title: 'Authentication', href: '/api/guides/authentication' },
+ { title: 'Errors', href: '/api/guides/errors' },
// { title: 'Events', href: '/accounts' },
],
},
{
title: 'Resources',
links: [
- { title: 'Accounts', href: '/ipa/resources/accounts' },
- { title: 'Users', href: '/ipa/resources/users' },
- { title: 'Tokens', href: '/ipa/resources/tokens' },
- { title: 'Peers', href: '/ipa/resources/peers' },
- { title: 'Setup Keys', href: '/ipa/resources/setup-keys' },
- { title: 'Groups', href: '/ipa/resources/groups' },
- { title: 'Rules', href: '/ipa/resources/rules' },
- { title: 'Policies', href: '/ipa/resources/policies' },
- { title: 'Routes', href: '/ipa/resources/routes' },
- { title: 'DNS', href: '/ipa/resources/dns' },
- { title: 'Events', href: '/ipa/resources/events' },
+ { title: 'Accounts', href: '/api/resources/accounts' },
+ { title: 'Users', href: '/api/resources/users' },
+ { title: 'Tokens', href: '/api/resources/tokens' },
+ { title: 'Peers', href: '/api/resources/peers' },
+ { title: 'Setup Keys', href: '/api/resources/setup-keys' },
+ { title: 'Groups', href: '/api/resources/groups' },
+ { title: 'Rules', href: '/api/resources/rules' },
+ { title: 'Policies', href: '/api/resources/policies' },
+ { title: 'Routes', href: '/api/resources/routes' },
+ { title: 'DNS', href: '/api/resources/dns' },
+ { title: 'Events', href: '/api/resources/events' },
],
},
]
@@ -40,8 +40,8 @@ export function NavigationAPI({tableOfContents, className}) {