Fix some more links in the docs

This commit is contained in:
Stan Wohlwend 2024-03-04 03:11:09 +01:00
parent cd1a202053
commit ea340c2a88
2 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@ npm install @stackframe/stack
}
```
This will create pages for sign-in, sign-up, password reset, and others. Additionally, it will be used as a callback URL for OAuth. You can [replace them with your own pages](/docs/customization) later.
This will create pages for sign-in, sign-up, password reset, and others. Additionally, it will be used as a callback URL for OAuth. You can [replace them with your own pages](/docs/getting-started/customization) later.
4. In your `app/layout.tsx`, wrap your entire layout with a `StackProvider`. Afterwards, it should look like this:

View File

@ -8,7 +8,7 @@ import TabItem from '@theme/TabItem';
# Users & Protected Pages
In [the last section](/docs/01-setup), we created `StackServerApp` and `StackProvider`. In this section, we will show you how to utilize them for accessing and modifying the current user information on Server Components and Client Components, respectively.
In [the last guide](/docs/getting-started/setup), we created `StackServerApp` and `StackProvider`. In this section, we will show you how to utilize them for accessing and modifying the current user information on Server Components and Client Components, respectively.
## Client Components