page
gy-home-page
Tier-5 fully-realised composition: the reference shape for the operator home surface. Renders a hero, four KPI cards, two-column body (active epics × 5, projects list × 12), and a recent-failures footer-strip. Ships with a frozen HOME_PAGE_SAMPLE_DATA showcase so the canon catalogue paints the same pixels every redeploy; consumers MAY override via the `data` prop for live-data wrappers. Svelte-native per ADR-182 — composes KpiCard, GyEpicCard, GyListRow, and GyRecentFailuresPanel without a Lit web-component wrapper.
Live
What you ship.
Home
Today across the fleet.
A fully-realised composition with sample data — the reference shape for the operator home surface. Page primitives compose templates + organisms + molecules into the operator-visible layout that a route mounts.
Markup
<script>
import GyHomePage from '@gyrum-labs/svelte/pages/home-page/GyHomePage.svelte';
</script>
<GyHomePage />Prop space
| Prop | Type | Default | Description |
|---|---|---|---|
data | HomePageSampleData | HOME_PAGE_SAMPLE_DATA | Override the showcase sample. Defaults to `HOME_PAGE_SAMPLE_DATA` — the canon-authored, frozen, deterministic set that drives the canon catalogue specimen. Most consumers leave this undefined. |
Where this lives
import GyHomePage from '@gyrum-labs/svelte/pages/home-page/GyHomePage.svelte';