Workspace dashboard
A component-composed dashboard with semantic chart pressure across new, active, degraded, loading, dense, and mobile states.
Workspace dashboard
Component-composed workspace overview with chart pressure across empty, healthy, degraded, loading, dense, and mobile states.
New
A newly created workspace with a successful handoff and meaningful empty activity state.
Analytical Engines — Research and Production
Team plan · EU region · updated July 13, 2026 at 09:30 UTC
Operational+10
Workspace created
Your workspace is ready. Create a project or invite teammates to begin.
No activity yet
Deployments, invitations, credential changes, and billing events will appear here.
Viewport
Ruby
test/dummy/app/components/gallery/compositions/dashboard_page.rbmain(
id: "gallery-dashboard-surface",
aria: { busy: state == "loading" ? "true" : nil },
data: {
gallery: "composition-surface",
gallery_composition: "dashboard",
gallery_composition_state: state,
gallery_mobile: state == "mobile" ? "true" : nil
}.compact
) do
render NitroKit::Container.new(size: :xl, id: "gallery-dashboard-container") do
render NitroKit::Flex.new(dir: :col, gap: 6, align: :stretch,
id: "gallery-dashboard-stack") do
render_workspace_header(disabled: state == "loading")
render_state
end
end
end