{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "section", "type": "registry:component", "title": "Section", "description": "A section component.", "files": [ { "path": "registry/alpine/marketing/section.tsx", "content": "import { cn } from \"@/lib/utils\"\n\nexport function Section({\n heading,\n subheading,\n children,\n className,\n ...props\n}: React.ComponentProps<\"div\"> & {\n heading: string\n subheading: string\n}) {\n return (\n \n
\n
\n

\n {heading}\n

\n

\n {subheading}\n

\n
\n {children}\n
\n \n )\n}\n", "type": "registry:component" } ] }