Re-export shim that surfaces the canonical `ProductReleaseCard` component and its related types/skeleton under the `entity-cards/` namespace for unified chat barrel imports. ## Key Components | Export | Source | Description | |--------|--------|-------------| | `ProductReleaseCard` | `shared/product-release/product-release-card` | Main card component (lg + sm variants) | | `ProductReleaseCardProps` | `shared/product-release/product-release-card` | Component props type | | `ProductReleaseCardSize` | `shared/product-release/product-release-card` | Size variant union type | | `ProductReleaseCardAnchorProps` | `shared/product-release/product-release-card` | Anchor/link props type | | `ProductReleaseCardSkeleton` | `shared/product-release/product-release-card-skeleton` | Loading skeleton component | ## Usage Example ```typescript // Via the chat barrel (preferred) import { ProductReleaseCard, ProductReleaseCardSkeleton, type ProductReleaseCardProps, type ProductReleaseCardSize, } from '@/components/chat' // Direct import (bypasses indirection) import { ProductReleaseCard } from '@/components/shared/product-release/product-release-card' ``` > **Source of Truth:** All component logic and variants live in `src/components/shared/product-release/`. This file is purely a re-export — do not add logic here.