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,14 @@
"use client";
import PropertyManagerPortal from "@/components/dashboard/propertyManager";
export default function EngagementDashboard() {
return (
<div className="p-6">
<PropertyManagerPortal/>
</div>
);
}