feat(projects): add the Projects CRM module

This commit is contained in:
abe-kap
2026-07-22 17:19:23 -04:00
parent 7bcd1a2a2d
commit d44cacb778
7 changed files with 654 additions and 8 deletions
+2
View File
@@ -17,6 +17,7 @@ import { AiAssistant } from "./ai-assistant";
import { TeamManagement } from "./team-management";
import { Messenger } from "./messenger";
import { Inbox } from "./inbox";
import { Projects } from "./projects";
import "../../app/dashboard/dashboard.css";
export function Dashboard() {
@@ -50,6 +51,7 @@ export function Dashboard() {
: active === "messenger" ? <Messenger />
: active === "inbox" ? <Inbox />
: active === "team" ? <TeamManagement />
: active === "projects" ? <Projects />
: <ComingSoon title={title} icon={item?.icon ?? "dashboard"} onGo={setActive} />}
</ToastProvider>
</div>