Storybook stories configuration for the ScriptInfoSection component, defining various visual states and usage scenarios for displaying script metadata in card format. ## Key Components - **Meta Configuration**: Storybook setup with component metadata, controls, and documentation - **Story Variants**: 11 different story scenarios showcasing component flexibility - **Control Types**: Interactive controls for headline, subheadline, shellType, platforms, category, and author - **Visual States**: Stories covering minimal data, long descriptions, different shell types, and platform combinations ## Usage Example ```typescript import { ScriptInfoSection } from '../components/platform/ScriptInfoSection' // Default story with full data export const Default: Story = { args: { headline: 'System Backup Script', subheadline: 'Comprehensive Linux system backup script with compression', shellType: 'BASH', supportedPlatforms: ['linux'], category: 'System Maintenance', author: { name: 'John Doe', photoUrl: 'https://i.pravatar.cc/150?img=68' } } } // Cross-platform Python script export const MultiPlatform: Story = { args: { shellType: 'PYTHON', supportedPlatforms: ['windows', 'darwin', 'linux'], author: { name: 'Bob Johnson', initials: 'BJ' } } } ``` The stories demonstrate responsive layout behavior, shell type variations (PowerShell, Bash, Python, Deno), platform support indicators, and author display options with both photo URLs and initials fallbacks.