- Refactored `GatewayHero.tsx` to display a new dashboard header layout based on a provided mockup. - The new design features a greeting, top status cards (Services, Clusters, Alerts), a central search bar, and quick access buttons. - Bottom graphical cards for "Network Load" and "Global Mesh" were implemented using static styling mocks. - Retained the core functionality of the central prompt input to route queries to `/xworkmate`. - Adjusted the homepage spacing in `page.tsx` to accommodate the new top section while keeping the existing `UnifiedNavigation`, `StatsSection`, `ShortcutsSection`, and `Footer`. - Verified UI changes against the mockup and handled minor review feedback (fixed greeting punctuation and header text contrast). Co-authored-by: cloud-neutral <4133689+cloud-neutral@users.noreply.github.com>
6 lines
212 B
JavaScript
6 lines
212 B
JavaScript
const { exec } = require("child_process");
|
|
const process = exec("npx next dev --turbo -p 3000");
|
|
|
|
process.stdout.on("data", (data) => console.log(data));
|
|
process.stderr.on("data", (data) => console.error(data));
|