{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "diagnostic-report-footer",
  "title": "Diagnostic Report Footer",
  "description": "PDF-oriented patient results footer with provider details and contact information.",
  "registryDependencies": [
    "@blocks/patient-results-types",
    "@circle-ui/utils"
  ],
  "files": [
    {
      "path": "registry/berlin/blocks/patient-results/template/diagnostic-report-footer.tsx",
      "content": "// Generated from packages/ui/src/components/patient-results/template/diagnostic-report-footer.tsx\nimport * as React from \"react\";\n\nimport { cn } from \"@/registry/berlin/lib/utils\";\n\nimport type { DiagnosticReportFooterProps } from \"@/registry/berlin/blocks/patient-results-types\";\n\nexport function DiagnosticReportFooter({\n  name = \"Circle Health\",\n  promise = \"Build performance through consistent, guided results.\",\n  address = \"Giesebrechtstr. 20, 10629 Berlin\",\n  phone = \"030 99 28 38 22\",\n  website = \"www.circle.health\",\n  compact = false,\n  className,\n}: DiagnosticReportFooterProps) {\n  return (\n    <footer className={cn(\"space-y-6\", className)}>\n      {!compact ? (\n        <div className=\"flex items-start justify-between gap-8\">\n          <p className=\"text-[20px] leading-8 tracking-[-0.01em] text-[#1a1c21]\">\n            {name}\n          </p>\n          <p className=\"text-right text-[20px] leading-8 tracking-[-0.01em] text-[#5e6470]\">\n            {promise}\n          </p>\n        </div>\n      ) : null}\n\n      <div className=\"h-px bg-[#d7dae0]\" />\n\n      <div className=\"flex flex-wrap items-center gap-6 text-base leading-6 tracking-[-0.01em] text-[#5e6470] md:flex-nowrap\">\n        <p className=\"flex-1\">{address}</p>\n        <p>{phone}</p>\n        <span className=\"hidden h-6 w-px bg-[#d7dae0] md:block\" />\n        <p>{website}</p>\n      </div>\n    </footer>\n  );\n}\n",
      "type": "registry:ui",
      "target": "src/components/ui/patient-results/template/diagnostic-report-footer.tsx"
    }
  ],
  "type": "registry:ui"
}