{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "footer-4", "type": "registry:block", "description": "Multi-column footer with app store buttons, social icons, and link groups.", "registryDependencies": [ "button" ], "files": [ { "path": "registry/blocks/footer/4/footer.tsx", "content": "\"use client\";\n\nimport {\n FacebookIcon,\n InstagramIcon,\n LinkedinIcon,\n TwitterIcon,\n} from \"lucide-react\";\nimport { Button } from \"@/components/ui/button\";\n\nconst footerLinks = [\n {\n title: \"Company\",\n links: [\n { href: \"#\", label: \"The Linomore Blog\" },\n { href: \"#\", label: \"Engineering Blog\" },\n { href: \"#\", label: \"Marketplace\" },\n { href: \"#\", label: \"What’s New\" },\n { href: \"#\", label: \"About\" },\n { href: \"#\", label: \"Press\" },\n { href: \"#\", label: \"Careers\" },\n { href: \"#\", label: \"Link in Bio\" },\n { href: \"#\", label: \"Social Good\" },\n ],\n },\n {\n title: \"Community\",\n links: [\n { href: \"#\", label: \"Linktree for Enterprise\" },\n { href: \"#\", label: \"2023 Creator Report\" },\n { href: \"#\", label: \"2022 Creator Report\" },\n { href: \"#\", label: \"Charities\" },\n { href: \"#\", label: \"What’s Trending\" },\n { href: \"#\", label: \"Creator Profile Directory\" },\n { href: \"#\", label: \"Explore Templates\" },\n ],\n },\n {\n title: \"Support\",\n links: [\n { href: \"#\", label: \"Help Topics\" },\n { href: \"#\", label: \"Getting Started\" },\n { href: \"#\", label: \"Linoree Pro\" },\n { href: \"#\", label: \"Features & How-tos\" },\n { href: \"#\", label: \"FAQs\" },\n { href: \"#\", label: \"Report a Violation\" },\n ],\n },\n {\n title: \"Legal\",\n links: [\n { href: \"#\", label: \"Terms & Conditions\" },\n { href: \"#\", label: \"Privacy Notice\" },\n { href: \"#\", label: \"Cookie Notice\" },\n { href: \"#\", label: \"Trust Center\" },\n { href: \"#\", label: \"Cookie Preferences\" },\n { href: \"#\", label: \"Transparency Report\" },\n { href: \"#\", label: \"Law Enforcement Access Policy\" },\n ],\n },\n];\n\nconst socialLinks = [\n { icon: FacebookIcon, href: \"#\" },\n { icon: InstagramIcon, href: \"#\" },\n { icon: LinkedinIcon, href: \"#\" },\n { icon: TwitterIcon, href: \"#\" },\n];\n\nexport function Footer() {\n return (\n \n );\n}\n\nfunction PlayStoreIcon({\n fill = \"currentColor\",\n ...props\n}: React.ComponentProps<\"svg\">) {\n return (\n \n \n \n );\n}\n\nfunction AppleIcon({\n fill = \"currentColor\",\n ...props\n}: React.ComponentProps<\"svg\">) {\n return (\n \n \n \n \n \n \n \n \n );\n}\n", "type": "registry:component" } ], "meta": { "height": "70vh" }, "categories": [ "footer" ] }