diff --git a/app/(chat)/page.tsx b/app/(chat)/chat/page.tsx
similarity index 95%
rename from app/(chat)/page.tsx
rename to app/(chat)/chat/page.tsx
index 85d31a0..75044b5 100644
--- a/app/(chat)/page.tsx
+++ b/app/(chat)/chat/page.tsx
@@ -4,7 +4,7 @@ import { Chat } from '@/components/chat';
import { DEFAULT_CHAT_MODEL } from '@/lib/ai/models';
import { generateUUID } from '@/lib/utils';
import { DataStreamHandler } from '@/components/data-stream-handler';
-import { auth } from '../(auth)/auth';
+import { auth } from '../../(auth)/auth';
import { redirect } from 'next/navigation';
export default async function Page() {
@@ -31,7 +31,7 @@ export default async function Page() {
initialVisibilityType="private"
isReadonly={false}
session={session}
- autoResume={false}
+ autoResume={false}
initialApiKey={apiKeyFromCookie?.value ?? ''}
/>