Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes several changes across multiple files to improve the Docker setup, enhance UI components, and refactor existing code. The most important changes include the addition of a new Dockerfile, updates to the
AppSidebarcomponent, and the removal of theAdminDashboardcomponent.Docker Setup:
Dockerfile: Added a new Dockerfile to set up a multi-stage build process for a Node.js application using Next.js, including dependency installation, build steps, and production setup.UI Enhancements:
app/[orgId]/books/page.tsx: Added an alert component to notify users when they are viewing dummy data due to backend fetching issues. (app/[orgId]/books/page.tsxR75-R89)Code Refactoring:
components/app-sidebar.tsx: Refactored theAppSidebarcomponent to improve theme item handling, team management, and user context integration. This includes enhancements to dropdown menu items and handling of active team changes. [1] [2] [3] [4] [5] [6] [7] [8] [9]Component Removal:
components/admin-dashboard.tsx: Removed theAdminDashboardcomponent and its related imports and mock data.New Components:
app/[orgId]/onboarding/page.tsx: Added a newUserOnboardingcomponent to handle user onboarding processes. (app/[orgId]/onboarding/page.tsxR1-R9)app/[orgId]/profile/page.tsx: Added a newOrgProfileFormcomponent to manage organization profile forms. (app/[orgId]/profile/page.tsxR1-R9)