feat(ui): add maintenance page for task management
CI / build-and-test (push) Failing after -31m53s

* Implement maintenance page with task and log display
* Add backfill and metadata retry functionality
* Integrate grid component for project display in thoughts page
* Update types for maintenance tasks and logs
* Enhance sidebar and shell for new maintenance navigation
This commit is contained in:
2026-04-26 23:13:41 +02:00
parent b39cd3ba72
commit 927a118338
48 changed files with 2228 additions and 868 deletions
+18
View File
@@ -0,0 +1,18 @@
import type { GridlerTheme } from '@warkypublic/svelix';
export const adminGridTheme: Partial<GridlerTheme> = {
accentColor: '#22d3ee',
accentFg: '#06232b',
bgCell: '#020617',
bgHeader: '#0f172a',
bgHeaderHasFocus: '#164e63',
bgSearchResult: '#083344',
borderColor: '#1e293b',
foreground: '#cbd5e1',
fontFamily: 'Inter, system-ui, sans-serif',
fontSize: 13,
headerFontSize: 12,
lineHeight: 1.4,
cellHorizontalPadding: 10,
cellVerticalPadding: 8
};