feat: scaffold SvelteKit runtime
This commit is contained in:
parent
1c287c782c
commit
d87da6c1d1
14 changed files with 544 additions and 1 deletions
18
src/lib/server/dashboard.ts
Normal file
18
src/lib/server/dashboard.ts
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
export type PlaceholderStatus = "ready" | "building";
|
||||
|
||||
export interface PlaceholderDashboard {
|
||||
title: string;
|
||||
subtitle: string;
|
||||
status: PlaceholderStatus;
|
||||
message: string;
|
||||
}
|
||||
|
||||
export function loadPlaceholderDashboard(): PlaceholderDashboard {
|
||||
return {
|
||||
title: "System Overview",
|
||||
subtitle: "Dashboard runtime scaffold",
|
||||
status: "building",
|
||||
message:
|
||||
"SvelteKit is running. Later issues will replace this placeholder with the validated dashboard model.",
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue