import type { ReactNode } from "react" import type { DashboardSection } from "@/modules/registry" export function Section({ section, children, }: { section: DashboardSection children: ReactNode }) { return (
{/* labeled horizontal separator */}
{String(section.order).padStart(2, "0")}

{section.label}

{section.hint}
{children}
) }