Configure Completed is added
This commit is contained in:
19
app/dashboard/configure/masterdata/page.tsx
Normal file
19
app/dashboard/configure/masterdata/page.tsx
Normal file
@@ -0,0 +1,19 @@
|
||||
"use client"
|
||||
|
||||
import MasterDataPortal from "@/components/dashboard/configure/masterData";
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
export default function MasterdataPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<MasterDataPortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
20
app/dashboard/configure/rolesAndAccess/page.tsx
Normal file
20
app/dashboard/configure/rolesAndAccess/page.tsx
Normal file
@@ -0,0 +1,20 @@
|
||||
"use client"
|
||||
|
||||
import MasterDataPortal from "@/components/dashboard/configure/masterData";
|
||||
import RolesAccessPortal from "@/components/dashboard/configure/rolesaccess";
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
export default function RolesAccessPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<RolesAccessPortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
22
app/dashboard/configure/settings/page.tsx
Normal file
22
app/dashboard/configure/settings/page.tsx
Normal file
@@ -0,0 +1,22 @@
|
||||
"use client"
|
||||
|
||||
import SettingsPortal from "@/components/dashboard/configure/settings";
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
export default function SettingsPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<SettingsPortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
21
app/dashboard/configure/userLocation/page.tsx
Normal file
21
app/dashboard/configure/userLocation/page.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
"use client"
|
||||
|
||||
import MasterDataPortal from "@/components/dashboard/configure/masterData";
|
||||
import RolesAccessPortal from "@/components/dashboard/configure/rolesaccess";
|
||||
import UserLocationPortal from "@/components/dashboard/configure/userLocation";
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
export default function userLocationPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<UserLocationPortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
23
app/dashboard/configure/workflowautomation/page.tsx
Normal file
23
app/dashboard/configure/workflowautomation/page.tsx
Normal file
@@ -0,0 +1,23 @@
|
||||
"use client"
|
||||
|
||||
|
||||
import WorkFlowAutomationPortal from "@/components/dashboard/configure/workflowAutomation";
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
export default function WorkflowAutomationPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<WorkFlowAutomationPortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
22
app/dashboard/intelligence/aiHelpdesk/page.tsx
Normal file
22
app/dashboard/intelligence/aiHelpdesk/page.tsx
Normal file
@@ -0,0 +1,22 @@
|
||||
"use client"
|
||||
|
||||
|
||||
import AiHelpdeskPortal from "@/components/dashboard/intelligence/aiHelpDesk";
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
export default function AiHelpdeskPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<AiHelpdeskPortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
23
app/dashboard/intelligence/connectedAsset/page.tsx
Normal file
23
app/dashboard/intelligence/connectedAsset/page.tsx
Normal file
@@ -0,0 +1,23 @@
|
||||
"use client"
|
||||
|
||||
import ConnectedAssetPortal from "@/components/dashboard/intelligence/connectedAssets";
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
export default function ConnectedAssetPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<ConnectedAssetPortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
24
app/dashboard/intelligence/connectedOps/page.tsx
Normal file
24
app/dashboard/intelligence/connectedOps/page.tsx
Normal file
@@ -0,0 +1,24 @@
|
||||
"use client"
|
||||
|
||||
import ConnectedOpsPortal from "@/components/dashboard/intelligence/connectedOps";
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
export default function ConnectedOpsPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<ConnectedOpsPortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
23
app/dashboard/intelligence/energyBenchmarking/page.tsx
Normal file
23
app/dashboard/intelligence/energyBenchmarking/page.tsx
Normal file
@@ -0,0 +1,23 @@
|
||||
"use client"
|
||||
|
||||
import EnergyBenchmarkingPortal from "@/components/dashboard/intelligence/energybenchmarking";
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
export default function EnergybenchmarkingPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<EnergyBenchmarkingPortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
25
app/dashboard/intelligence/gpstracking/page.tsx
Normal file
25
app/dashboard/intelligence/gpstracking/page.tsx
Normal file
@@ -0,0 +1,25 @@
|
||||
"use client"
|
||||
|
||||
import ConnectedOpsPortal from "@/components/dashboard/intelligence/connectedOps";
|
||||
import GpsTrackingPortal from "@/components/dashboard/intelligence/gpsTracking";
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
export default function GpsTrackingPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<GpsTrackingPortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
24
app/dashboard/intelligence/sustainability/page.tsx
Normal file
24
app/dashboard/intelligence/sustainability/page.tsx
Normal file
@@ -0,0 +1,24 @@
|
||||
"use client"
|
||||
|
||||
import SustainabilityPortal from "@/components/dashboard/intelligence/sustainability";
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
export default function SustainabilityPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<SustainabilityPortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
23
app/dashboard/iot-app/alarmRules/page.tsx
Normal file
23
app/dashboard/iot-app/alarmRules/page.tsx
Normal file
@@ -0,0 +1,23 @@
|
||||
"use client";
|
||||
|
||||
|
||||
|
||||
|
||||
import AlarmRulesPortal from "@/components/dashboard/iotapplication/alarmsRules";
|
||||
import DeviceFleetPortal from "@/components/dashboard/iotapplication/deviceFleet";
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
export default function AlarmRulesPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<AlarmRulesPortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
19
app/dashboard/iot-app/commandCenter/page.tsx
Normal file
19
app/dashboard/iot-app/commandCenter/page.tsx
Normal file
@@ -0,0 +1,19 @@
|
||||
"use client";
|
||||
|
||||
|
||||
|
||||
import CommandCenterPortal from "@/components/dashboard/iotapplication/commandCenter";
|
||||
|
||||
|
||||
|
||||
export default function CommandCenterPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<CommandCenterPortal />
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
22
app/dashboard/iot-app/deviceFleet/page.tsx
Normal file
22
app/dashboard/iot-app/deviceFleet/page.tsx
Normal file
@@ -0,0 +1,22 @@
|
||||
"use client";
|
||||
|
||||
|
||||
|
||||
|
||||
import DeviceFleetPortal from "@/components/dashboard/iotapplication/deviceFleet";
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
export default function DeviceFleetPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<DeviceFleetPortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
21
app/dashboard/iot-app/energyUtility/page.tsx
Normal file
21
app/dashboard/iot-app/energyUtility/page.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
"use client";
|
||||
|
||||
|
||||
|
||||
|
||||
import EnergyUtilityPortal from "@/components/dashboard/iotapplication/energyUtility";
|
||||
|
||||
|
||||
|
||||
|
||||
export default function EnergyUtilityPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<EnergyUtilityPortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
20
app/dashboard/iot-app/hvacPlant/page.tsx
Normal file
20
app/dashboard/iot-app/hvacPlant/page.tsx
Normal file
@@ -0,0 +1,20 @@
|
||||
"use client";
|
||||
|
||||
|
||||
|
||||
|
||||
import HVACPlantPortal from "@/components/dashboard/iotapplication/hvacPlant";
|
||||
|
||||
|
||||
|
||||
export default function HVACPlantPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<HVACPlantPortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user