--- interface Props { title: string; } import { DEFAULT_THEME, themes as themeRegistry } from '../lib/themes'; import { API_BASE as apiBase } from '../lib/api'; import VotingIcons from '../components/icons/VotingIcons.astro'; import DesignSystemStyles from '../components/ui/DesignSystemStyles.astro'; function isEnabled(v: string | undefined): boolean { if (!v) return false; const n = v.trim().toLowerCase(); return n === '1' || n === 'true' || n === 'yes' || n === 'on'; } const { title } = Astro.props; const publicDemoSite = isEnabled((globalThis as any).process?.env?.PUBLIC_DEMO_SITE); const themes = Object.fromEntries( Object.entries(themeRegistry).map(([id, t]) => [id, { isDark: t.isDark, colors: t.colors }]), ); const defaultTheme = DEFAULT_THEME; --- {title} | Likwid

© 2026 Likwid - Modular governance platform