// hf-admin.jsx — Admin shell (PUC-8 / PUC-9) hi-fi. Honestly empty + states. const { HFScreen: AScreen, HFTopBar: ATopBar, HFAccountChip: AChip, HFBanner: ABanner, HFStateCard: AStateCard, HFStates: AStates, HF_H: A, HF_STORE: ASTORE, HF_DSC: ADS } = window; const { Eyebrow: AEyebrow, Soul: ASoul } = ADS; // storefront identity lockup — the admin's anchor function StoreId({ size = 17 }) { return ( {ASTORE} ecomm storefront ); } // the honest-empty centerpiece — intentional, not sparse function EmptyHome({ compact = false }) { return (
{/* faint constellation seal — one decorative mark, low alpha */}
Your storefront

{ASTORE}

There's nothing to manage yet — and that's a finished state, not a missing one. Catalog, orders, and settings will appear here as ecomm grows.

); } function HFAdmin({ device = 'desktop' }) { const desktop = device === 'desktop'; return ( } right={desktop ? : } /> ); } function HFAdminStates() { return (
For your security you've been signed out. Sign in again →
); } function Skel({ w, h, r = 6 }) { return
; } Object.assign(window, { HFAdmin, HFAdminStates });