Building Owner and Property Manager Screens are added

This commit is contained in:
2026-07-16 18:09:03 +05:30
parent 104f8f7abf
commit 3222da96ab
22 changed files with 516 additions and 140 deletions

View File

@@ -0,0 +1,18 @@
"use client";
import BuildingOwnerPortal from "@/components/dashboard/buildingOwner";
export default function OverViewDashboardPage() {
return (
<div className="p-6">
<BuildingOwnerPortal/>
</div>
);
}

View File

@@ -1,6 +1,6 @@
"use client";
import Sidebar from "@/components/dashboard/sidebar";
import OperationsDashboard from "@/components/dashboard/dashboard";

View File

@@ -2,10 +2,6 @@
import EngagementPage from "@/components/dashboard/engagement";
export default function EngagementDashboard() {
return (

View File

@@ -0,0 +1,14 @@
"use client";
import PropertyManagerPortal from "@/components/dashboard/propertyManager";
export default function EngagementDashboard() {
return (
<div className="p-6">
<PropertyManagerPortal/>
</div>
);
}