From ee154fa22f06fa01c237ec4f1ce679dd26a45b18 Mon Sep 17 00:00:00 2001 From: Boby Tiwari Date: Wed, 9 Jul 2025 18:20:31 +0530 Subject: [PATCH] Update standalone.mdx added the missing import --- www/src/content/docs/docs/start/standalone.mdx | 1 + 1 file changed, 1 insertion(+) 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() {