{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "footer-block-shadcnui", "type": "registry:block", "title": "Footer Block", "description": "Comprehensive footer with links, newsletter signup, social icons, and scroll-to-top", "registryDependencies": [ "button" ], "dependencies": [ "framer-motion", "react" ], "files": [ { "path": "@uitripled/react-shadcn/src/components/sections/footer-block.tsx", "content": "\"use client\";\n\nimport { Badge } from \"@/components/ui/badge\";\nimport { Button } from \"@/components/ui/button\";\nimport { Card } from \"@/components/ui/card\";\nimport { Input } from \"@/components/ui/input\";\nimport { motion, useReducedMotion } from \"framer-motion\";\nimport {\n ArrowUp,\n Facebook,\n Github,\n Instagram,\n Linkedin,\n Mail,\n MapPin,\n Phone,\n Twitter,\n} from \"lucide-react\";\n\nconst footerLinks = [\n {\n title: \"Product\",\n links: [\"Features\", \"Pricing\", \"Documentation\", \"API Reference\"],\n },\n {\n title: \"Company\",\n links: [\"About Us\", \"Careers\", \"Blog\", \"Press Kit\"],\n },\n {\n title: \"Resources\",\n links: [\"Community\", \"Help Center\", \"Partners\", \"Status\"],\n },\n {\n title: \"Legal\",\n links: [\"Privacy\", \"Terms\", \"Cookie Policy\", \"Licenses\"],\n },\n];\n\nconst socialLinks = [\n { icon: Twitter, label: \"Twitter\", href: \"#\" },\n { icon: Facebook, label: \"Facebook\", href: \"#\" },\n { icon: Instagram, label: \"Instagram\", href: \"#\" },\n { icon: Linkedin, label: \"LinkedIn\", href: \"#\" },\n { icon: Github, label: \"GitHub\", href: \"#\" },\n];\n\nexport function FooterBlock() {\n const scrollToTop = () => {\n window.scrollTo({ top: 0, behavior: \"smooth\" });\n };\n\n const shouldReduceMotion = useReducedMotion();\n\n return (\n \n
\n \n \n
\n

\n Site footer\n

\n {/* Main Footer Content */}\n
\n
\n {/* Brand & Newsletter */}\n \n \n \n Brand\n \n \n Since 2018\n \n \n

\n Building amazing products with modern technologies. Join us on our\n journey to create better user experiences.\n

\n\n {/* Newsletter */}\n
\n

\n Subscribe to our newsletter\n

\n
\n \n \n \n \n
\n
\n\n {/* Contact Info */}\n
\n \n \n 123 Business St, City 12345\n \n \n \n +1 (555) 123-4567\n \n \n \n hello@example.com\n \n
\n \n\n {/* Footer Links */}\n {footerLinks.map((section, sectionIndex) => (\n \n

\n {section.title}\n

\n
    \n {section.links.map((link, linkIndex) => (\n \n \n {link}\n \n \n ))}\n
\n \n ))}\n
\n\n {/* Divider */}\n \n\n {/* Bottom Bar */}\n
\n {/* Social Links */}\n \n {socialLinks.map((social, index) => (\n \n \n \n \n \n \n \n ))}\n \n\n {/* Copyright */}\n \n © 2024 Brand. All rights reserved.\n \n v1.0.0\n \n \n\n {/* Scroll to Top */}\n \n \n \n \n \n \n \n
\n
\n \n );\n}\n", "type": "registry:block", "target": "components/uitripled/footer-block-shadcnui.tsx" } ] }