{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "footer-3", "type": "registry:block", "description": "Grid-based footer with social cards, link groups, and copyright bar.", "files": [ { "path": "registry/blocks/footer/3/footer.tsx", "content": "\"use client\";\nimport { ArrowRight } from \"lucide-react\";\nimport { cn } from \"@/lib/utils\";\n\nexport function Footer() {\n return (\n \n );\n}\n\ntype LinksGroupProps = {\n title: string;\n links: { title: string; href: string }[];\n};\nfunction LinksGroup({ title, links }: LinksGroupProps) {\n return (\n
\n

\n {title}\n

\n \n
\n );\n}\n\nfunction SocialCard({\n title,\n href,\n className,\n}: {\n title: string;\n href: string;\n className?: string;\n}) {\n return (\n \n {title}\n \n \n );\n}\n", "type": "registry:component" } ], "meta": { "height": "50vh" }, "categories": [ "footer" ] }