Barrel module that aggregates all Help Center full-page components into a single import site for consumers across `openframe-frontend` and `multi-platform-hub`. ## Key Components **New Help Center Pages** | Export | Description | |---|---| | `RoadmapPage` | Full-page product roadmap view | | `ProductReleasesListPage` | Paginated list of product releases | | `DeliveryPage` | Delivery status/tracking page | | `OnboardingGuidesCatalogPage` | Browsable catalog of onboarding guides | **Re-exported Existing Pages** | Export | Source | |---|---| | `FaqDocumentPage` | `../faq` | | `LegalDocumentPage` | `../shared/legal-document` | | `ReleaseDetailPage` | `../shared/product-release` | | `OnboardingGuideDetailView` | `../onboarding-guides` | | `DocsHubPage` | `../docs` | | `HelpCenterList` | `../tickets` | All prop types are explicitly named-exported alongside their components to avoid `TS2308` ambiguous re-export collisions. ## Usage Example ```typescript // Single import site — no need to hunt individual module paths import { RoadmapPage, ProductReleasesListPage, FaqDocumentPage, LegalDocumentPage, ReleaseDetailPage, type RoadmapPageProps, } from '@openframe/components/help-center/pages' // Mount in a host route — each page owns its own PageShell + PageLayout chrome export default function RoadmapRoute() { return } ``` > **Note:** The Help Center *index/landing* page is intentionally excluded from this barrel — it remains host-local since its links and icons are app-specific. This barrel is also kept separate from the top-level `components/index.ts`. ## Source [`index.ts` on GitHub](https://github.com/flamingo-stack/openframe-oss-lib/blob/main/index.ts)