Skip to content

Commit

Permalink
docs: include more items on the sidebar (#1887)
Browse files Browse the repository at this point in the history
  • Loading branch information
aeneasr authored Sep 23, 2024
1 parent 756d04f commit ef47c73
Show file tree
Hide file tree
Showing 6 changed files with 806 additions and 751 deletions.
2 changes: 1 addition & 1 deletion docs/getting-started/ory-network-oauth2.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: Perform OAuth2 Authorization Code Grant and Client Credentials Grant
sidebar_label: Try it
---

# Try out common OAuth2 Grants
# Try common OAuth2 Grants

[Ory OAuth2 & OpenID Connect](https://www.ory.sh/federated-identity-management/) (based on
[Ory Hydra](https://github.com/ory/hydra)) is available in the Ory Network out of the box. This means that you can use OIDC,
Expand Down
11 changes: 11 additions & 0 deletions docs/guides/authentication.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
id: authentication
title: Authentication & Login
---

```mdx-code-block
import DocCardList from '@theme/DocCardList';
import {useCurrentSidebarCategory} from '@docusaurus/theme-common';
<DocCardList items={useCurrentSidebarCategory().items}/>
```
11 changes: 11 additions & 0 deletions docs/guides/email-sms.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
id: email-sms
title: Email and SMS
---

```mdx-code-block
import DocCardList from '@theme/DocCardList';
import {useCurrentSidebarCategory} from '@docusaurus/theme-common';
<DocCardList items={useCurrentSidebarCategory().items}/>
```
12 changes: 12 additions & 0 deletions docs/guides/oauth2-openid-connect.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
id: oauth2-openid-connect
slug: oauth2-oidc
title: OAuth2 and OpenID Connect
---

```mdx-code-block
import DocCardList from '@theme/DocCardList';
import {useCurrentSidebarCategory} from '@docusaurus/theme-common';
<DocCardList items={useCurrentSidebarCategory().items}/>
```
11 changes: 11 additions & 0 deletions docs/quickstart/sdks.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
id: sdks
title: SDK quickstarts
---

```mdx-code-block
import DocCardList from '@theme/DocCardList';
import {useCurrentSidebarCategory} from '@docusaurus/theme-common';
<DocCardList items={useCurrentSidebarCategory().items}/>
```
Loading

0 comments on commit ef47c73

Please sign in to comment.