What problem does it solve? Building consistent ERP form layouts requires repeatedly writing the same grid wrappers, master-detail splits, and edit drawers, leading to inconsistent spacing and duplicated code across pages. ## Core Features & Use Cases - FormSection: A wrapper component that renders a titled form section with optional description, a bottom border separator, and a responsive grid supporting 1, 2, 3, or 4 columns. - SplitLayout: A master-detail layout with a fixed-width scrollable list panel on the left and a flexible detail panel on the right, ideal for invoice or record browsing pages. - SidePanel: A right-side drawer built on a Sheet component with configurable sizes (400px, 600px, 800px), a scrollable content area, and a footer slot for Save/Cancel actions. - Use Case: When building an invoice management page, use SplitLayout to show the invoice list beside the selected invoice detail, and open a SidePanel with a form for quick editing without leaving the page. ## Quick Start Ask the AI to create an invoice page using FormSection for the form fields, SplitLayout for the list-detail view, and SidePanel for the quick edit drawer.