"use client"; import { Icons } from "@midday/ui/icons"; import { MaterialIcon } from "./homepage/icon-mapping"; export function HeaderCommandPanelPreview() { const transaction = { name: "Acme Corporation", }; const invoices = [ { id: 1, name: "Invoice #INV-2025-001", }, { id: 2, name: "Invoice #INV-2024-089", }, ]; const receipts = [ { id: 1, name: "Receipt - Acme Services", }, { id: 2, name: "Receipt - Acme Subscription", }, ]; const files = [ { id: 1, name: "Acme_Contract_Q1_2025.pdf", }, { id: 2, name: "Invoice_Acme_2025-001.pdf", }, ]; return (
{/* Container with border and dotted pattern */}
{/* Command Panel Container */}
{/* Search Bar */}
{/* Content Area */}
{/* Transaction Section */}
Transaction
{transaction.name}
{/* Invoice Section */}
Invoice
{invoices.map((invoice) => (
{invoice.name}
))}
{/* Receipts Section */}
Receipt
{receipts.map((receipt) => (
{receipt.name}
))}
{/* Files Section */}
Files
{files.map((file) => (
{file.name}
))}
{/* Navigation Controls */}
); }