diff --git a/src/components/Guides.jsx b/src/components/Guides.jsx
index 0f5c1ed6..8abd90ff 100644
--- a/src/components/Guides.jsx
+++ b/src/components/Guides.jsx
@@ -3,12 +3,12 @@ import { Heading } from '@/components/Heading'
const guides = [
{
- href: '/authentication',
+ href: '/ipa/authentication',
name: 'Authentication',
description: 'Learn how to authenticate your API requests.',
},
{
- href: '/errors',
+ href: '/ipa/errors',
name: 'Errors',
description:
'Read about the different types of errors returned by the API.',
diff --git a/src/components/Header.jsx b/src/components/Header.jsx
index ad8518be..217f3b8f 100644
--- a/src/components/Header.jsx
+++ b/src/components/Header.jsx
@@ -70,7 +70,7 @@ export const Header = forwardRef(function Header({ className }, ref) {
Home
Docs
- API
+ API
Blog
Github
Support
diff --git a/src/components/Navigation.jsx b/src/components/Navigation.jsx
index 66274823..264c2c9a 100644
--- a/src/components/Navigation.jsx
+++ b/src/components/Navigation.jsx
@@ -217,26 +217,26 @@ export const apiNavigation = [
{
title: 'Guides',
links: [
- { title: 'Quickstart', href: '/quickstart' },
- { title: 'Authentication', href: '/authentication' },
- { title: 'Errors', href: '/errors' },
+ { title: 'Quickstart', href: '/ipa/quickstart' },
+ { title: 'Authentication', href: '/ipa/authentication' },
+ { title: 'Errors', href: '/ipa/errors' },
// { title: 'Events', href: '/accounts' },
],
},
{
title: 'Resources',
links: [
- { title: 'Accounts', href: '/accounts' },
- { title: 'Users', href: '/users' },
- { title: 'Tokens', href: '/tokens' },
- { title: 'Peers', href: '/peers' },
- { title: 'Setup Keys', href: '/setup-keys' },
- { title: 'Groups', href: '/groups' },
- { title: 'Rules', href: '/rules' },
- { title: 'Policies', href: '/policies' },
- { title: 'Routes', href: '/routes' },
- { title: 'DNS', href: '/dns' },
- { title: 'Events', href: '/events' },
+ { title: 'Accounts', href: '/ipa/accounts' },
+ { title: 'Users', href: '/ipa/users' },
+ { title: 'Tokens', href: '/ipa/tokens' },
+ { title: 'Peers', href: '/ipa/peers' },
+ { title: 'Setup Keys', href: '/ipa/setup-keys' },
+ { title: 'Groups', href: '/ipa/groups' },
+ { title: 'Rules', href: '/ipa/rules' },
+ { title: 'Policies', href: '/ipa/policies' },
+ { title: 'Routes', href: '/ipa/routes' },
+ { title: 'DNS', href: '/ipa/dns' },
+ { title: 'Events', href: '/ipa/events' },
],
},
]
@@ -248,7 +248,7 @@ export function Navigation(props) {
Home
Docs
- API
+ API
Blog
Github
Support
@@ -260,7 +260,7 @@ export function Navigation(props) {
className={groupIndex === 0 && 'md:mt-0'}
/>
)) ||
- !router.route.startsWith('/docs') && apiNavigation.map((group, groupIndex) => (
+ router.route.startsWith('/ipa') && apiNavigation.map((group, groupIndex) => (