{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "footer-1", "title": "Footer 1", "description": "Site footer with navigation links and legal information", "registryDependencies": [ "separator", "https://shadcndesign-free.vercel.app/r/styles.json", "https://shadcndesign-free.vercel.app/r/logo.json" ], "files": [ { "path": "components/pro-blocks/landing-page/footers/footer-1.tsx", "content": "\"use client\";\n\nimport { Logo } from \"@/components/pro-blocks/logo\";\nimport Link from \"next/link\";\nimport { Separator } from \"@/components/ui/separator\";\n\nconst MAIN_NAV_LINKS = [\n { href: \"#\", label: \"Home\" },\n { href: \"#\", label: \"About\" },\n { href: \"#\", label: \"Products\" },\n { href: \"#\", label: \"Services\" },\n { href: \"#\", label: \"Contact\" },\n];\n\nconst LEGAL_LINKS = [\n { href: \"#\", label: \"Privacy Policy\" },\n { href: \"#\", label: \"Terms of Service\" },\n { href: \"#\", label: \"Cookies Settings\" },\n];\n\nexport function Footer1() {\n return (\n \n
\n {/* Top Section */}\n
\n {/* Logo Section */}\n \n \n \n\n {/* Main Navigation */}\n \n {MAIN_NAV_LINKS.map((link) => (\n \n {link.label}\n \n ))}\n \n
\n\n {/* Section Divider */}\n \n\n {/* Bottom Section */}\n
\n {/* Copyright Text */}\n

\n Copyright © {new Date().getFullYear()}{\" \"}\n \n shadcndesign.com\n \n . All rights reserved.\n

\n\n {/* Legal Navigation */}\n \n {LEGAL_LINKS.map((link) => (\n \n {link.label}\n \n ))}\n \n
\n
\n \n );\n}\n", "type": "registry:component", "target": "components/pro-blocks/landing-page/footers/footer-1.tsx" } ], "type": "registry:component" }