table constant data is added and Compliance Safety completed
This commit is contained in:
23
app/dashboard/compliance-safety/auditAndSurvey/page.tsx
Normal file
23
app/dashboard/compliance-safety/auditAndSurvey/page.tsx
Normal file
@@ -0,0 +1,23 @@
|
||||
"use client"
|
||||
|
||||
import AuditSurveyPortal from "@/components/dashboard/compliance/auditAndSurvey";
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
export default function AuditSurveyPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<AuditSurveyPortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
20
app/dashboard/compliance-safety/contracts/page.tsx
Normal file
20
app/dashboard/compliance-safety/contracts/page.tsx
Normal file
@@ -0,0 +1,20 @@
|
||||
"use client"
|
||||
|
||||
import ContractsPortal from "@/components/dashboard/compliance/contracts";
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
export default function ContractsPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<ContractsPortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
22
app/dashboard/compliance-safety/fireAndSafety/page.tsx
Normal file
22
app/dashboard/compliance-safety/fireAndSafety/page.tsx
Normal file
@@ -0,0 +1,22 @@
|
||||
"use client"
|
||||
|
||||
import FireSafetyPortal from "@/components/dashboard/compliance/fireAndSafety";
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
export default function FireSafetyPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<FireSafetyPortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
19
app/dashboard/compliance-safety/statutoryCompliance/page.tsx
Normal file
19
app/dashboard/compliance-safety/statutoryCompliance/page.tsx
Normal file
@@ -0,0 +1,19 @@
|
||||
"use client"
|
||||
|
||||
import StatutoryCompliancePortal from "@/components/dashboard/compliance/statutoryCompliance";
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
export default function ComplianceSafetyPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<StatutoryCompliancePortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
22
app/dashboard/compliance-safety/training/page.tsx
Normal file
22
app/dashboard/compliance-safety/training/page.tsx
Normal file
@@ -0,0 +1,22 @@
|
||||
"use client"
|
||||
|
||||
import TrainingPortal from "@/components/dashboard/compliance/training";
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
export default function TrainingPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<TrainingPortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
22
app/dashboard/compliance-safety/wasteAndEsg/page.tsx
Normal file
22
app/dashboard/compliance-safety/wasteAndEsg/page.tsx
Normal file
@@ -0,0 +1,22 @@
|
||||
"use client"
|
||||
|
||||
import WasteESGPortal from "@/components/dashboard/compliance/wasteAndEsg";
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
export default function WasteEsGPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<WasteESGPortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
20
app/dashboard/intelligence/aiPredictive/page.tsx
Normal file
20
app/dashboard/intelligence/aiPredictive/page.tsx
Normal file
@@ -0,0 +1,20 @@
|
||||
"use client"
|
||||
|
||||
import AiPredictivePortal from "@/components/dashboard/intelligence/aiAndPredictive";
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
export default function AiPredictivePage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<AiPredictivePortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
21
app/dashboard/intelligence/assetHealth/page.tsx
Normal file
21
app/dashboard/intelligence/assetHealth/page.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
"use client"
|
||||
|
||||
|
||||
import AssetHealthPortal from "@/components/dashboard/intelligence/assetHealth";
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
export default function AssetHealthPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<AssetHealthPortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
@@ -9,7 +9,7 @@ export default function DashboardLayout({
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return (
|
||||
<div className="min-h-screen bg-[#071321] text-white flex">
|
||||
<div className=" bg-[#071321] text-white ">
|
||||
{/* Shared Sidebar */}
|
||||
<Sidebar />
|
||||
|
||||
|
||||
Reference in New Issue
Block a user