Building Owner and Property Manager Screens are added
This commit is contained in:
@@ -17,7 +17,7 @@ export default function DashboardLayout({
|
||||
{/* Shared Navbar */}
|
||||
<Navbar />
|
||||
|
||||
{/* The active page content renders here */}
|
||||
|
||||
<main className="flex-1 pl-68 bg-[#071321]">
|
||||
{children}
|
||||
</main>
|
||||
|
||||
@@ -0,0 +1,18 @@
|
||||
"use client";
|
||||
|
||||
|
||||
|
||||
import BuildingOwnerPortal from "@/components/dashboard/buildingOwner";
|
||||
|
||||
|
||||
export default function OverViewDashboardPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-6">
|
||||
<BuildingOwnerPortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
"use client";
|
||||
|
||||
import Sidebar from "@/components/dashboard/sidebar";
|
||||
|
||||
|
||||
import OperationsDashboard from "@/components/dashboard/dashboard";
|
||||
|
||||
|
||||
@@ -2,10 +2,6 @@
|
||||
|
||||
import EngagementPage from "@/components/dashboard/engagement";
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
export default function EngagementDashboard() {
|
||||
return (
|
||||
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
"use client";
|
||||
|
||||
import PropertyManagerPortal from "@/components/dashboard/propertyManager";
|
||||
|
||||
export default function EngagementDashboard() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-6">
|
||||
<PropertyManagerPortal/>
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user