diff --git a/www/src/content/docs/docs/start/standalone.mdx b/www/src/content/docs/docs/start/standalone.mdx index c205cdd9..24573482 100644 --- a/www/src/content/docs/docs/start/standalone.mdx +++ b/www/src/content/docs/docs/start/standalone.mdx @@ -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 `` 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() {