docs: 📝 Complete User entity docs

This commit is contained in:
Jesse Wierzbinski 2024-07-22 17:06:33 +02:00
parent dd43542cea
commit 15d25aec8c
No known key found for this signature in database
4 changed files with 91 additions and 13 deletions

View file

@ -247,19 +247,19 @@ export const navigation: NavGroup[] = [
title: "Guides",
links: [
{ title: "Introduction", href: "/" },
{ title: "Quickstart", href: "/quickstart" },
/* { title: "Quickstart", href: "/quickstart" }, */
{ title: "SDKs", href: "/sdks" },
{ title: "Authentication", href: "/authentication" },
/* { title: "Authentication", href: "/authentication" },
{ title: "Pagination", href: "/pagination" },
{ title: "Errors", href: "/errors" },
{ title: "Webhooks", href: "/webhooks" },
{ title: "Webhooks", href: "/webhooks" }, */
],
},
{
title: "Entities",
links: [{ title: "Users", href: "/entities/users" }],
},
{
/* {
title: "Resources",
links: [
{ title: "Contacts", href: "/contacts" },
@ -268,7 +268,7 @@ export const navigation: NavGroup[] = [
{ title: "Groups", href: "/groups" },
{ title: "Attachments", href: "/attachments" },
],
},
}, */
];
export function Navigation(props: ComponentPropsWithoutRef<"nav">) {
@ -276,7 +276,6 @@ export function Navigation(props: ComponentPropsWithoutRef<"nav">) {
<nav {...props}>
<ul>
<TopLevelNavItem href="/">API</TopLevelNavItem>
<TopLevelNavItem href="#">Documentation</TopLevelNavItem>
<TopLevelNavItem href="#">Support</TopLevelNavItem>
{navigation.map((group, groupIndex) => (
<NavigationGroup