mirror of
https://github.com/netbirdio/docs.git
synced 2026-04-21 01:46:35 +00:00
Fixes
This commit is contained in:
@@ -4,20 +4,20 @@ import { Heading } from '@/components/Heading'
|
||||
const aboutNetbird = [
|
||||
{
|
||||
href: '/docs/about-netbird/how-netbird-works',
|
||||
name: 'How NetBird Works',
|
||||
description: 'Learn everything there is to know about how NetBird works.',
|
||||
name: 'How NetBird works',
|
||||
description: 'Concepts, architecture, protocols, and more.',
|
||||
},
|
||||
{
|
||||
href: '/docs/about-netbird/netbird-vs-traditional-vpn',
|
||||
name: 'NetBird vs. traditional VPN',
|
||||
description:
|
||||
'Read how NetBird compares to traditional VPNs and why it is better.',
|
||||
'Learn how NetBird compares to traditional VPNs and why it is better.',
|
||||
},
|
||||
{
|
||||
href: '/docs/about-netbird/why-wireguard-with-netbird',
|
||||
name: 'Why WireGuard with NetBird',
|
||||
description:
|
||||
'Learn why NetBird is using WireGuard and how NetBird simplifies the usage.',
|
||||
'Learn why and how NetBird uses WireGuard.',
|
||||
},
|
||||
]
|
||||
|
||||
|
||||
@@ -69,8 +69,8 @@ export const Header = forwardRef(function Header({ className }, ref) {
|
||||
<nav className="hidden md:block">
|
||||
<ul role="list" className="flex items-center gap-8">
|
||||
<TopLevelNavItem href="https://netbird.io/">Home</TopLevelNavItem>
|
||||
<TopLevelNavItem href="/docs/introductions">Docs</TopLevelNavItem>
|
||||
<TopLevelNavItem href="/ipa/introductions">API</TopLevelNavItem>
|
||||
<TopLevelNavItem href="/docs/introduction">Docs</TopLevelNavItem>
|
||||
<TopLevelNavItem href="/ipa/introduction">API</TopLevelNavItem>
|
||||
<TopLevelNavItem href="https://netbird.io/blog/">Blog</TopLevelNavItem>
|
||||
<TopLevelNavItem href="https://github.com/netbirdio/netbird">Github</TopLevelNavItem>
|
||||
<TopLevelNavItem href="https://join.slack.com/t/netbirdio/shared_invite/zt-vrahf41g-ik1v7fV8du6t0RwxSrJ96A">Support</TopLevelNavItem>
|
||||
|
||||
@@ -3,27 +3,38 @@ import { Heading } from '@/components/Heading'
|
||||
|
||||
const howToGuides = [
|
||||
{
|
||||
href: '/docs/how-to/add-users-to-your-network',
|
||||
name: 'Add Users to your network',
|
||||
description: 'Learn how to add users to your network.',
|
||||
href: '/docs/how-to/getting-started',
|
||||
name: 'Quickstart guide',
|
||||
description: 'Start using NetBird in under 5 minutes.',
|
||||
},
|
||||
{
|
||||
href: '/docs/how-to/configure-periodic-user-authentication',
|
||||
name: 'Configure periodic user authentication',
|
||||
href: '/docs/how-to/manage-network-access',
|
||||
name: 'Manage network access',
|
||||
description:
|
||||
'Learn how to configure periodic user authentication.',
|
||||
'Learn how to use access controls to manage access to your machines.',
|
||||
},
|
||||
{
|
||||
href: '/docs/how-to/add-users-to-your-network',
|
||||
name: 'Add users to your network',
|
||||
description: 'learn how to add team members to your NetBird network.',
|
||||
},
|
||||
{
|
||||
href: '/docs/how-to/routing-traffic-to-private-networks',
|
||||
name: 'Route traffic to private networks',
|
||||
description:
|
||||
'Learn how to provide access to LANs, VPS, and corporate private networks.',
|
||||
},
|
||||
{
|
||||
href: '/docs/how-to/monitor-system-and-network-activity',
|
||||
name: 'Log and monitor network activity',
|
||||
description:
|
||||
'Learn how to keep track of system and network activities in your account.',
|
||||
},
|
||||
{
|
||||
href: '/docs/how-to/manage-dns-in-your-network',
|
||||
name: 'Manage DNS in your network',
|
||||
description:
|
||||
'Learn how to configure DNS servers for your network.',
|
||||
},
|
||||
{
|
||||
href: '/docs/how-to/monitor-system-and-network-activity',
|
||||
name: 'Monitoring system and network activities',
|
||||
description:
|
||||
'Learn how to keep track of system and network activities in your account.',
|
||||
'Learn how to configure name servers in your private network.',
|
||||
},
|
||||
]
|
||||
|
||||
|
||||
@@ -168,7 +168,7 @@ export function Layout({ children, title, tableOfContents }) {
|
||||
</main>
|
||||
<Footer />
|
||||
</div>
|
||||
{!router.route.startsWith("/ipa/resources") && !router.route.includes("introductions") && <div className="hidden xl:sticky xl:top-[4.5rem] xl:-mr-6 xl:block xl:h-[calc(100vh-4.5rem)] xl:flex-none xl:overflow-y-auto xl:py-16 xl:pr-6">
|
||||
{!router.route.startsWith("/ipa/resources") && !router.route.includes("introduction") && <div className="hidden xl:sticky xl:top-[4.5rem] xl:-mr-6 xl:block xl:h-[calc(100vh-4.5rem)] xl:flex-none xl:overflow-y-auto xl:py-16 xl:pr-6">
|
||||
<nav aria-labelledby="on-this-page-title" className="w-56">
|
||||
{tableOfContents.length > 0 && (
|
||||
<>
|
||||
|
||||
@@ -40,8 +40,8 @@ export function NavigationAPI({tableOfContents, className}) {
|
||||
<nav className={className}>
|
||||
<ul role="list">
|
||||
<TopLevelNavItem href="https://netbird.io/">Home</TopLevelNavItem>
|
||||
<TopLevelNavItem href="/docs/introductions">Docs</TopLevelNavItem>
|
||||
<TopLevelNavItem href="/ipa/introductions">API</TopLevelNavItem>
|
||||
<TopLevelNavItem href="/docs/introduction">Docs</TopLevelNavItem>
|
||||
<TopLevelNavItem href="/ipa/introduction">API</TopLevelNavItem>
|
||||
<TopLevelNavItem href="https://netbird.io/blog/">Blog</TopLevelNavItem>
|
||||
<TopLevelNavItem href="https://github.com/netbirdio/netbird">Github</TopLevelNavItem>
|
||||
<TopLevelNavItem href="https://join.slack.com/t/netbirdio/shared_invite/zt-vrahf41g-ik1v7fV8du6t0RwxSrJ96A">Support</TopLevelNavItem>
|
||||
|
||||
@@ -46,8 +46,8 @@ export function NavigationDocs({className}) {
|
||||
<nav className={className}>
|
||||
<ul role="list">
|
||||
<TopLevelNavItem href="https://netbird.io/">Home</TopLevelNavItem>
|
||||
<TopLevelNavItem href="/docs/introductions">Docs</TopLevelNavItem>
|
||||
<TopLevelNavItem href="/ipa/introductions">API</TopLevelNavItem>
|
||||
<TopLevelNavItem href="/docs/introduction">Docs</TopLevelNavItem>
|
||||
<TopLevelNavItem href="/ipa/introduction">API</TopLevelNavItem>
|
||||
<TopLevelNavItem href="https://netbird.io/blog/">Blog</TopLevelNavItem>
|
||||
<TopLevelNavItem href="https://github.com/netbirdio/netbird">Github</TopLevelNavItem>
|
||||
<TopLevelNavItem href="https://join.slack.com/t/netbirdio/shared_invite/zt-vrahf41g-ik1v7fV8du6t0RwxSrJ96A">Support</TopLevelNavItem>
|
||||
|
||||
Reference in New Issue
Block a user