Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Wired signal topology map and connected telemetry grid structure
controlplane-signal-grid
export interface SignalGridConfig { layoutType?: 'hero' | 'closed-loop' // Default: 'closed-loop' customTitle?: string // Station identity title customBio?: string // Subtitle copy selectedRepos?: string[] // Pinned node list repoSortBy?: 'stars' | 'forks' | 'updated' | 'name' // Default: 'stars' maxRepos?: number // Default: 8 accentColor?: string // Carrier line tint (default: '#00A7D1') secondaryColor?: string // Sensor pulse tint (default: '#E84A8A') }
import { renderWidgetSvg, WidgetInstance } from '@/engine' const signalWidget: WidgetInstance = { instanceId: 'signal_01', widgetId: 'controlplane-signal-grid', name: 'Signal Grid Mesh', position: { x: 0, y: 0 }, size: { width: 800, height: 320 }, config: { layoutType: 'closed-loop', maxRepos: 8, accentColor: '#00A7D1', }, locked: false, visible: true, zIndex: 1, } const svgOutput = renderWidgetSvg(signalWidget, profileData, globalStyles)