File Structure: Provides a clear view of the project organization, helping developers navigate the codebase and understand where to add their own code. . ├── README.md ├── mocks │ ├── ...
├── app/ # Next.js App Router │ ├── auth/ # Authentication pages │ │ └── page.tsx # Login/Register page │ ├── layout.tsx # Root layout with providers │ ├── page.tsx # Main chat interface │ └── globals ...