import { Package, AlertTriangle, Activity, FileText, LayoutGrid, Plus } from "lucide-react"; import Button from "@/components/common/button"; import StatCard from "@/components/common/dashStatCard"; import InfoBanner from "@/components/common/infoBanner"; import Table from "@/components/common/dataTable"; import { consumptionHeaders, consumptionRows, inventoryHeaders, inventoryRows, } from "@/constants/tabledata"; export default function InventoryPortal() { return (
{/* --- HEADER SECTION --- */}
Apple One — HQ Tower Operations Inventory

Inventory & stock

Stock master with receipt / consume transactions. Consumption posts back to the originating request job card; items at or below minimum are flagged for reorder.

{/* --- HEADER BUTTONS --- */}
{/* --- STAT CARDS --- */}
{/* Stock items */} {/* Below minimum */} {/* Units consumed */} {/* Posted to requests */}
{/* --- TABLES GRID (SIDE-BY-SIDE) --- */}
{/* LEFT TABLE: STOCK MASTER */}

Stock master

7 items
{/* Corrected column layout and removed horizontal scrollbar to align with the right UI. */} {/* RIGHT TABLE: CONSUMPTION LEDGER */}

Consumption ledger

posts back to job card
); }