Project structure changes ad new files added in dashboard folders
This commit is contained in:
18
app/dashboard/finance/budget/page.tsx
Normal file
18
app/dashboard/finance/budget/page.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
"use client"
|
||||
|
||||
import BudgetPortal from "@/components/dashboard/finance/budget";
|
||||
|
||||
|
||||
|
||||
|
||||
export default function BudgetPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<BudgetPortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
18
app/dashboard/finance/costinvoice/page.tsx
Normal file
18
app/dashboard/finance/costinvoice/page.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
"use client"
|
||||
|
||||
import CostInvoicePortal from "@/components/dashboard/finance/costInvoice";
|
||||
|
||||
|
||||
|
||||
|
||||
export default function CostInvoicePage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<CostInvoicePortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
19
app/dashboard/insight/report/page.tsx
Normal file
19
app/dashboard/insight/report/page.tsx
Normal file
@@ -0,0 +1,19 @@
|
||||
"use client"
|
||||
|
||||
|
||||
import ReportPortal from "@/components/dashboard/insight/reports";
|
||||
|
||||
|
||||
|
||||
|
||||
export default function ReportPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<ReportPortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
"use client"// app/dashboard/layout.tsx
|
||||
import Sidebar from "@/utils/sidebar";
|
||||
import Navbar from "@/utils/navbar";
|
||||
import Sidebar from "@/components/layouts/sidebar";
|
||||
import Navbar from "@/components/layouts/navbar";
|
||||
import { Sparkles } from "lucide-react";
|
||||
|
||||
export default function DashboardLayout({
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
"use client"
|
||||
|
||||
import EnergyPortal from "@/components/dashboard/energy";
|
||||
import EnergyPortal from "@/components/dashboard/operations/energy";
|
||||
|
||||
|
||||
export default function InventoryPage() {
|
||||
export default function EnergyPage() {
|
||||
return (
|
||||
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
"use client";
|
||||
|
||||
import EquipmentPortal from "@/components/dashboard/equipment"
|
||||
export default function HelpDeskPage() {
|
||||
import EquipmentPortal from "@/components/dashboard/operations/equipment"
|
||||
export default function EquipmentPage() {
|
||||
return (
|
||||
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
"use client";
|
||||
|
||||
import HelpDeskPortal from "@/components/dashboard/helpDesk"
|
||||
import HelpDeskPortal from "@/components/dashboard/operations/helpDesk"
|
||||
export default function HelpDeskPage() {
|
||||
return (
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
"use client"
|
||||
|
||||
import InventoryPortal from "@/components/dashboard/inventory";
|
||||
import InventoryPortal from "@/components/dashboard/operations/inventory";
|
||||
export default function InventoryPage() {
|
||||
return (
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
"use client";
|
||||
|
||||
import ServiceRequestsPortal from "@/components/dashboard/request"
|
||||
import ServiceRequestsPortal from "@/components/dashboard/operations/request"
|
||||
export default function ServiceRequestPage() {
|
||||
return (
|
||||
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
"use client"
|
||||
|
||||
import VendorServicePortal from "@/components/dashboard/vendorService";
|
||||
import VendorServicePortal from "@/components/dashboard/operations/vendorService";
|
||||
|
||||
|
||||
export default function InventoryPage() {
|
||||
export default function VendorPage() {
|
||||
return (
|
||||
|
||||
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
"use client"
|
||||
|
||||
import WorkPermitPortal from "@/components/dashboard/workpermit";
|
||||
import WorkPermitPortal from "@/components/dashboard/operations/workpermit";
|
||||
|
||||
|
||||
export default function InventoryPage() {
|
||||
export default function WorkPermitPage() {
|
||||
return (
|
||||
|
||||
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
|
||||
|
||||
|
||||
import BuildingOwnerPortal from "@/components/dashboard/buildingOwner";
|
||||
import BuildingOwnerPortal from "@/components/dashboard/overview/buildingOwner";
|
||||
|
||||
|
||||
export default function OverViewDashboardPage() {
|
||||
export default function BuildingOwnerPage() {
|
||||
return (
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
|
||||
|
||||
import OperationsDashboard from "@/components/dashboard/dashboard";
|
||||
import OperationsDashboard from "@/components/dashboard/overview/dashboard";
|
||||
|
||||
|
||||
export default function OverViewDashboardPage() {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
"use client";
|
||||
|
||||
import EngagementPage from "@/components/dashboard/engagement";
|
||||
import EngagementPage from "@/components/dashboard/overview/engagement";
|
||||
|
||||
export default function EngagementDashboard() {
|
||||
return (
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
"use client";
|
||||
|
||||
import PropertyManagerPortal from "@/components/dashboard/propertyManager";
|
||||
import PropertyManagerPortal from "@/components/dashboard/overview/propertyManager";
|
||||
|
||||
export default function EngagementDashboard() {
|
||||
export default function PropertymanagerPage() {
|
||||
return (
|
||||
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
"use client";
|
||||
|
||||
import ServiceEngineerPortal from "@/components/dashboard/serviceEngineer";
|
||||
import ServiceEngineerPortal from "@/components/dashboard/overview/serviceEngineer";
|
||||
|
||||
export default function EngagementDashboard() {
|
||||
export default function ServiceEngineerPage() {
|
||||
return (
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
"use client"
|
||||
|
||||
import MeetingRoomPortal from "@/components/dashboard/workplace/meetingRoom";
|
||||
|
||||
|
||||
|
||||
export default function MeetingPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<MeetingRoomPortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
@@ -1,9 +1,9 @@
|
||||
"use client"
|
||||
|
||||
import VistiorManagementPortal from "@/components/dashboard/visitorManagement";
|
||||
import VistiorManagementPortal from "@/components/dashboard/workplace/visitorManagement";
|
||||
|
||||
|
||||
export default function InventoryPage() {
|
||||
export default function VisitorPage() {
|
||||
return (
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
"use client"
|
||||
import WorkSpacePortal from "@/components/dashboard/workplace/workspace";
|
||||
|
||||
|
||||
|
||||
export default function WorkSpacePage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<WorkSpacePortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user