import { useState } from 'react'; import { Layers, ShieldCheck, CheckSquare, Clock, Search, QrCode, Power, List, Pencil, Plus, } from 'lucide-react'; import Button from "@/components/common/button"; import StatCard from "@/components/common/dashStatCard"; import Table from "@/components/common/dataTable"; import NavigationTabs from '@/components/common/tabs'; import { helpdeskTtabs } from '@/constants/constant'; import { helpdeskheaders, helpdeskrows } from '@/constants/tabledata'; export default function HelpDeskPortal() { const [activeTab, setActiveTab] = useState('Location'); return (
{/* --- HEADER SECTION --- */}
Apple One — HQ Tower Operations Help Desk

Help Desk & checklists

Scheduled location and equipment inspections, missed-checklist recovery, and HSQE incident management.

{/* Reusable Navigation Tabs */}
{/* Total Checklists */} {/* Active */} {/* Approval Set */} {/* Avg TAT */}
{/* --- ROW 2: SEARCH, FILTERS & ACTION BUTTONS --- */}
{/* Search & Select Filters */}
{/* Search Bar */}
{/* Block Dropdown */} {/* Status Dropdown */}
{/* Action Buttons */}
{/* --- TABLE CONTAINER --- */}
); }