Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions www/src/content/docs/docs/start/standalone.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,7 @@ Once the user is authenticated, we redirect them to the root of our app.
Now we are ready to add authentication to our app. Replace the `<Home />` component in `app/page.tsx` with the following.

```tsx title="app/page.tsx"
import Image from "next/image"
import { auth, login, logout } from "./actions"

export default async function Home() {
Expand Down