This file serves as the main export barrel for OpenFrame platform components, providing a centralized entry point for device management, software inventory, and system information display components. ## Key Components The module exports the following platform-specific components and their TypeScript interfaces: - **SoftwareInfo** - Component for displaying software information and details - **SoftwareSourceBadge** - Badge component indicating software installation source - **CveLink** - Component for rendering CVE (Common Vulnerabilities and Exposures) links - **ToolBadge** - Badge component for displaying tool type information - **ShellTypeBadge** - Badge component for indicating shell/terminal types - **ScriptInfoSection** - Section component for displaying script metadata and author information - **ScriptArguments** - Component for rendering script parameter arguments Each component is exported alongside its corresponding TypeScript props interface and related type definitions from the shared types system. ## Usage Example ```typescript import { SoftwareInfo, SoftwareSourceBadge, CveLink, ToolBadge, type SoftwareInfoProps, type SoftwareSource } from '@/components/platform' // Use platform components in your application ```