diff --git a/src/app/(dashboard)/[portSlug]/admin/ports/page.tsx b/src/app/(dashboard)/[portSlug]/admin/ports/page.tsx index e827340..e0acb7e 100644 --- a/src/app/(dashboard)/[portSlug]/admin/ports/page.tsx +++ b/src/app/(dashboard)/[portSlug]/admin/ports/page.tsx @@ -1,16 +1,5 @@ +import { PortList } from '@/components/admin/ports/port-list'; + export default function PortManagementPage() { - return ( -
Manage port locations and configurations
-Coming in Layer 2
-- This feature will be implemented in the next phase. -
-Configure system-wide settings
-Coming in Layer 2
-- This feature will be implemented in the next phase. -
-{row.original.slug}
+ ),
+ },
+ {
+ accessorKey: 'defaultCurrency',
+ header: 'Currency',
+ },
+ {
+ accessorKey: 'timezone',
+ header: 'Timezone',
+ },
+ {
+ accessorKey: 'isActive',
+ header: 'Status',
+ cell: ({ row }) =>
+ row.original.isActive ? (
+ No ports configured.
+{setting.description}
+{setting.description}
+{setting.description}
+{setting.key}
+ + {typeof setting.value === 'object' + ? JSON.stringify(setting.value) + : String(setting.value)} +
+