{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "section",
  "files": [
    {
      "path": "src/components/ui/section/section.astro",
      "content": "---\nimport type { HTMLAttributes } from \"astro/types\"\nimport { cva, type VariantProps } from \"class-variance-authority\"\n\nimport { cn } from \"@/lib/utils\"\n\ntype Props = HTMLAttributes<\"section\"> & VariantProps<typeof variants>\n\nconst variants = cva(\"relative flex scroll-mt-12 flex-col gap-16 py-16\", {\n  variants: {\n    variant: {\n      default: \"bg-background w-full\",\n      floating:\n        \"bg-background mx-auto my-16 w-[calc(100%-2rem)] max-w-[calc(var(--container,1280px)-2rem)] overflow-hidden rounded-xl border shadow-md\",\n    },\n  },\n  defaultVariants: {\n    variant: \"default\",\n  },\n})\n\nconst { class: className, variant, ...props } = Astro.props\n---\n\n<section\n  class={cn(variants({ variant }), className)}\n  data-slot=\"section\"\n  data-variant={variant}\n  {...props}\n>\n  <slot />\n</section>\n",
      "type": "registry:ui"
    },
    {
      "path": "src/components/ui/section/section-container.astro",
      "content": "---\nimport type { HTMLAttributes } from \"astro/types\"\n\nimport { cn } from \"@/lib/utils\"\n\ntype Props = HTMLAttributes<\"div\">\n\nconst { class: className, ...props } = Astro.props\n---\n\n<div\n  class={cn(\n    \"relative mx-auto flex w-full max-w-7xl flex-col gap-8 px-4\",\n    className\n  )}\n  {...props}\n>\n  <slot />\n</div>\n",
      "type": "registry:ui"
    },
    {
      "path": "src/components/ui/section/index.ts",
      "content": "export { default as Section } from \"./section.astro\"\nexport { default as SectionContainer } from \"./section-container.astro\"\n",
      "type": "registry:ui"
    }
  ],
  "type": "registry:ui"
}