feat(card): search spotlight

This commit is contained in:
root
2026-06-02 22:46:47 +10:00
parent c78203f8e4
commit 449e849f4d
3 changed files with 32 additions and 1 deletions

View File

@@ -8,8 +8,9 @@ import weather from './cards/weather.js';
import hostPerf from './cards/host_perf.js';
import jobs from './cards/jobs.js';
import inbox from './cards/inbox.js';
import search from './cards/search.js';
const CARD_MODULES = [clock, weather, hostPerf, jobs, inbox]; // grows in later tasks
const CARD_MODULES = [clock, weather, hostPerf, jobs, inbox, search]; // grows in later tasks
let active = []; // mounted cards needing stop()
export async function render(main) {