# F-076 — Architect: Link to frontend product + archive separate listing ## Current state Admin products listing (`/products`) shows all products (active, archived, draft) in one table. No link to the frontend product page. No way to filter by state. ## Goal 1. **Frontend link**: Add a column with an external link icon that opens the product on the frontend (`http://192.168.18.93:3003/productos/[slug]`). Only shown for `state === 'active'` products. 2. **Archive listing**: Add a status filter (Todos / Activos / Archivados) to separate active from archived products. ## Scope IN - `project/apps/admin/src/app/(dashboard)/products/page.tsx`: - Add `statusFilter` state: `'all' | 'active' | 'archived'` - Add filter buttons (Todos / Activos / Archivados) below the search bar - Add a new column "Tienda" (Frontend) with an external link icon for active products only - Filter `products` by `p.state` when `statusFilter !== 'all'` - Update total count to reflect filtered products - Use external link URL: `http://192.168.18.93:3003/productos/[slug]` ## Scope OUT - No backend changes - No new pages (filter is inline in the same page) - No change to the product editor ## Design Status filter buttons: ```tsx