--- interface Props { title: string; description?: string; } import { DEFAULT_THEME, themes as themeRegistry } from '../lib/themes'; const { title, description = "Likwid is a modular governance engine for distributed organizations, open source communities, and civic movements." } = Astro.props; const themes = Object.fromEntries( Object.entries(themeRegistry).map(([id, t]) => [id, { isDark: t.isDark, colors: t.colors }]), ); const defaultTheme = DEFAULT_THEME; ---