Added working System config, NOT working WiFi & modem and Session pages as placeholders. Also added NPED images.
This commit is contained in:
@@ -3,6 +3,9 @@ import "react-tabs/style/react-tabs.css";
|
||||
import NPEDCard from "../components/SettingForms/NPED/NPEDCard";
|
||||
import SettingForms from "../components/SettingForms/SettingForms/SettingForms";
|
||||
import NPEDHotlistCard from "../components/SettingForms/NPED/NPEDHotlistCard";
|
||||
import WiFiCard from "../components/SettingForms/WiFi&Modem/WiFiCard";
|
||||
import ModemCard from "../components/SettingForms/WiFi&Modem/ModemCard";
|
||||
import SystemCard from "../components/SettingForms/System/SystemCard";
|
||||
import { Toaster } from "sonner";
|
||||
import { useNPEDAuth } from "../hooks/useNPEDAuth";
|
||||
|
||||
@@ -13,9 +16,16 @@ const SystemSettings = () => {
|
||||
<div className="m-4">
|
||||
<Tabs selectedTabClassName="bg-gray-300 text-gray-900 font-semibold border-none">
|
||||
<TabList>
|
||||
<Tab>System</Tab>
|
||||
<Tab>Output</Tab>
|
||||
<Tab>Integrations</Tab>
|
||||
<Tab>WiFi and Modem</Tab>
|
||||
</TabList>
|
||||
<TabPanel>
|
||||
<div className="flex flex-col space-y-3">
|
||||
<SystemCard />
|
||||
</div>
|
||||
</TabPanel>
|
||||
<TabPanel>
|
||||
<div className="flex flex-col space-y-3">
|
||||
<SettingForms />
|
||||
@@ -27,6 +37,12 @@ const SystemSettings = () => {
|
||||
<NPEDHotlistCard />
|
||||
</div>
|
||||
</TabPanel>
|
||||
<TabPanel>
|
||||
<div className="mx-auto grid grid-cols-1 sm:grid-cols-1 lg:grid-cols-2 gap-4 px-2 sm:px-4 lg:px-0 w-full">
|
||||
<WiFiCard />
|
||||
<ModemCard />
|
||||
</div>
|
||||
</TabPanel>
|
||||
</Tabs>
|
||||
<Toaster />
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user