Admin part is added and navbar context file is added
This commit is contained in:
19
app/dashboard/admin/dynamicDashboard/page.tsx
Normal file
19
app/dashboard/admin/dynamicDashboard/page.tsx
Normal file
@@ -0,0 +1,19 @@
|
||||
"use client"
|
||||
|
||||
import DynamicDashboardPortal from "@/components/dashboard/admin/Configuration/dynamicDashboard";
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
export default function DynamicDashboardPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<DynamicDashboardPortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
20
app/dashboard/admin/language/page.tsx
Normal file
20
app/dashboard/admin/language/page.tsx
Normal file
@@ -0,0 +1,20 @@
|
||||
"use client"
|
||||
|
||||
import LanguagePortal from "@/components/dashboard/admin/Configuration/language";
|
||||
import ModulesPortal from "@/components/dashboard/admin/Configuration/modules";
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
export default function LanguagePage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<LanguagePortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
21
app/dashboard/admin/mobileFlow/page.tsx
Normal file
21
app/dashboard/admin/mobileFlow/page.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
"use client"
|
||||
|
||||
|
||||
import MobileFlowsPortal from "@/components/dashboard/admin/Configuration/mobileFlows";
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
export default function MobileFlowPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<MobileFlowsPortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
19
app/dashboard/admin/modules/page.tsx
Normal file
19
app/dashboard/admin/modules/page.tsx
Normal file
@@ -0,0 +1,19 @@
|
||||
"use client"
|
||||
|
||||
import ModulesPortal from "@/components/dashboard/admin/Configuration/modules";
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
export default function ModulesPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<ModulesPortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
18
app/dashboard/admin/overview/page.tsx
Normal file
18
app/dashboard/admin/overview/page.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
"use client"
|
||||
|
||||
import AdminOverviewPortal from "@/components/dashboard/admin/overview";
|
||||
|
||||
|
||||
|
||||
|
||||
export default function OverviewPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<AdminOverviewPortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
23
app/dashboard/admin/security/page.tsx
Normal file
23
app/dashboard/admin/security/page.tsx
Normal file
@@ -0,0 +1,23 @@
|
||||
|
||||
|
||||
|
||||
"use client"
|
||||
|
||||
|
||||
import SecurityPortal from "@/components/dashboard/admin/Platform/security";
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
export default function SecurityPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<SecurityPortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
20
app/dashboard/admin/site/page.tsx
Normal file
20
app/dashboard/admin/site/page.tsx
Normal file
@@ -0,0 +1,20 @@
|
||||
"use client"
|
||||
|
||||
|
||||
import SitePortal from "@/components/dashboard/admin/site";
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
export default function AuditSurveyPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<SitePortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
19
app/dashboard/admin/tenants/page.tsx
Normal file
19
app/dashboard/admin/tenants/page.tsx
Normal file
@@ -0,0 +1,19 @@
|
||||
"use client"
|
||||
|
||||
|
||||
import TenantsPortal from "@/components/dashboard/admin/tenants";
|
||||
|
||||
|
||||
|
||||
|
||||
export default function TenantsPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<TenantsPortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
20
app/dashboard/admin/users/page.tsx
Normal file
20
app/dashboard/admin/users/page.tsx
Normal file
@@ -0,0 +1,20 @@
|
||||
"use client"
|
||||
|
||||
|
||||
|
||||
import UserPortal from "@/components/dashboard/admin/users";
|
||||
|
||||
|
||||
|
||||
|
||||
export default function UsersPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<UserPortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user