package main import ( "git.dev.alexdunmow.com/block/core/blocks" ) // --- LCARS Header Block --- var LCARSHeaderMeta = blocks.BlockMeta{ Key: "lcars_header", Title: "LCARS Header", Description: "Top bar with elbow bracket, status indicators, and stardate", Category: blocks.CategoryNavigation, Source: "lcars", } var headerDefaults = map[string]any{ "title": "LCARS", "subtitle": "Library Computer Access/Retrieval System", "stardate": "", "status": "online", "menu_name": "main", } // --- LCARS Sidebar Block --- var LCARSSidebarMeta = blocks.BlockMeta{ Key: "lcars_sidebar", Title: "LCARS Sidebar", Description: "Left panel with rounded-rectangle navigation buttons", Category: blocks.CategoryNavigation, Source: "lcars", } var sidebarDefaults = map[string]any{ "items": []any{ map[string]any{"label": "Personnel", "url": "#", "color": "primary"}, map[string]any{"label": "Operations", "url": "#", "color": "secondary"}, map[string]any{"label": "Sciences", "url": "#", "color": "accent"}, map[string]any{"label": "Engineering", "url": "#", "color": "primary"}, map[string]any{"label": "Medical", "url": "#", "color": "secondary"}, }, } // --- LCARS Panel Block --- var LCARSPanelMeta = blocks.BlockMeta{ Key: "lcars_panel", Title: "LCARS Panel", Description: "Framed content area with LCARS border treatment", Category: blocks.CategoryLayout, Source: "lcars", }