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.
Repositories represented as an interconnected network of transit train lines
controlplane-metro
export interface MetroMapConfig { selectedRepos?: string[] repoSortBy?: 'stars' | 'forks' | 'updated' | 'name' maxRepos?: number accentColor?: string secondaryColor?: string }
import { renderWidgetSvg, WidgetInstance } from '@/engine' const metroWidget: WidgetInstance = { instanceId: 'metro_01', widgetId: 'controlplane-metro', name: 'Metro Transit Map', position: { x: 0, y: 0 }, size: { width: 800, height: 350 }, config: { accentColor: '#00A7D1', secondaryColor: '#E84A8A', }, locked: false, visible: true, zIndex: 1, } const svgOutput = renderWidgetSvg(metroWidget, profileData, globalStyles)