{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "footer-4",
  "title": "Footer 4 – Brand-led sitemap footer",
  "description": "A sitemap footer anchored by a short brand statement and logo, followed by structured link columns and legal links. Gives more context about the company while keeping navigation clear. Works well for marketing sites where brand positioning matters as much as wayfinding.",
  "dependencies": ["react-icons"],
  "registryDependencies": ["separator", "@shadcncraft/placeholder-logo"],
  "files": [
    {
      "path": "blocks/pro-marketing/footers/footer-4/index.tsx",
      "content": "import { FiLinkedin } from \"react-icons/fi\";\nimport { RiTwitterXLine } from \"react-icons/ri\";\n\nimport { PlaceholderLogo } from \"@/components/shadcncraft/pro-marketing/placeholder-logo\";\nimport { Separator } from \"@/components/ui/separator\";\n\nexport function Footer4() {\n  return (\n    <footer className=\"w-full bg-background py-6 lg:py-20\" role=\"contentinfo\">\n      <div className=\"mx-auto flex w-full max-w-7xl flex-col gap-16 px-5 lg:gap-9 lg:px-8\">\n        <Separator role=\"presentation\" aria-hidden=\"true\" />\n\n        <div className=\"grid grid-cols-4 gap-6 lg:flex-row lg:items-start lg:justify-between lg:gap-9\">\n          {/* Logo and Description */}\n          <div className=\"col-span-full flex flex-col justify-between gap-9 lg:col-span-1\">\n            <a href=\"/\" aria-label=\"Go to home page\">\n              {/* Replace with your real logo  */}\n              <PlaceholderLogo />\n            </a>\n\n            <div className=\"flex flex-col gap-4\">\n              <p className=\"text-sm text-pretty text-muted-foreground\">\n                Building tools that help teams work smarter and faster.\n              </p>\n              <div className=\"flex items-center gap-2\">\n                <FiLinkedin className=\"size-4\" />\n                <RiTwitterXLine className=\"size-4\" />\n              </div>\n            </div>\n          </div>\n\n          {/* Navigation Links */}\n          <nav\n            className=\"col-span-full grid gap-6 md:grid-cols-2 lg:col-span-3 lg:grid-cols-3 lg:gap-9\"\n            aria-label=\"Footer navigation\"\n          >\n            {navigationData.map((section) => (\n              <div key={section.title} className=\"flex flex-col gap-2.5\">\n                <h3 className=\"text-sm font-medium text-muted-foreground\">\n                  {section.title}\n                </h3>\n                <ul className=\"flex flex-col gap-3\">\n                  {section.links.map((link) => (\n                    <li key={link.label} className=\"text-base\">\n                      <a href={link.href}>{link.label}</a>\n                    </li>\n                  ))}\n                </ul>\n              </div>\n            ))}\n          </nav>\n        </div>\n\n        <Separator role=\"presentation\" aria-hidden=\"true\" />\n\n        {/* Social Links and Copyright */}\n        <div className=\"w-full\">\n          <p className=\"text-sm text-muted-foreground\">\n            &copy; Copyright Acme Inc. 2025. All right reserved.\n          </p>\n        </div>\n      </div>\n    </footer>\n  );\n}\n\nconst navigationData = [\n  {\n    title: \"Company\",\n    links: [\n      { label: \"About Us\", href: \"#\" },\n      { label: \"Careers\", href: \"#\" },\n      { label: \"Blog\", href: \"#\" },\n      { label: \"Press\", href: \"#\" },\n      { label: \"Leadership\", href: \"#\" },\n      { label: \"Partners\", href: \"#\" },\n      { label: \"Contact\", href: \"#\" },\n    ],\n  },\n  {\n    title: \"Resources\",\n    links: [\n      { label: \"Help Center\", href: \"#\" },\n      { label: \"FAQs\", href: \"#\" },\n      { label: \"Guides\", href: \"#\" },\n      { label: \"Community\", href: \"#\" },\n      { label: \"Case Studies\", href: \"#\" },\n      { label: \"Events\", href: \"#\" },\n      { label: \"Tutorials\", href: \"#\" },\n    ],\n  },\n  {\n    title: \"Legal\",\n    links: [\n      { label: \"Privacy Policy\", href: \"#\" },\n      { label: \"Terms of Service\", href: \"#\" },\n      { label: \"Security\", href: \"#\" },\n      { label: \"Cookie Settings\", href: \"#\" },\n      { label: \"Data Processing Agreement\", href: \"#\" },\n      { label: \"Compliance\", href: \"#\" },\n      { label: \"Accessibility\", href: \"#\" },\n    ],\n  },\n];\n",
      "type": "registry:component",
      "target": "@components/shadcncraft/pro-marketing/footers/footer-4/index.tsx"
    }
  ],
  "meta": {
    "containerClassName": "min-h-svh content-end",
    "tier": "free",
    "figmaNodeId": "17859-94192",
    "bundle": "pro-marketing"
  },
  "categories": ["footers"],
  "type": "registry:block"
}
