{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "footer-simple",
  "dependencies": [
    "motion"
  ],
  "devDependencies": [],
  "registryDependencies": [],
  "files": [
    {
      "path": "../../packages/blocks/src/footer-section/footer-simple.tsx",
      "content": "import React from 'react'\r\n\r\nexport const FooterSimple = () => {\r\n  return (\r\n    <footer className=\"bg-white text-black px-6 py-20 min-h-screen\">\r\n      <div className=\"max-w-7xl mx-auto flex flex-col md:flex-row justify-between items-start gap-12\">\r\n        <div className=\"space-y-6\">\r\n          <div className=\"text-2xl font-bold\">UI-LAYOUTS.</div>\r\n          <p className=\"text-zinc-500 max-w-xs text-pretty\">\r\n            Redefining the digital frontier with elegance and precision.\r\n          </p>\r\n        </div>\r\n\r\n        <div className=\"grid grid-cols-2 sm:grid-cols-3 gap-16\">\r\n          <div className=\"space-y-4\">\r\n            <div className=\"font-bold text-sm uppercase tracking-widest text-zinc-400\">\r\n              Social\r\n            </div>\r\n            <div className=\"flex flex-col gap-2 text-sm text-zinc-600\">\r\n              <a href=\"#\" className=\"hover:text-black\">\r\n                Twitter\r\n              </a>\r\n              <a href=\"#\" className=\"hover:text-black\">\r\n                LinkedIn\r\n              </a>\r\n              <a href=\"#\" className=\"hover:text-black\">\r\n                Instagram\r\n              </a>\r\n            </div>\r\n          </div>\r\n          <div className=\"space-y-4\">\r\n            <div className=\"font-bold text-sm uppercase tracking-widest text-zinc-400\">\r\n              Legal\r\n            </div>\r\n            <div className=\"flex flex-col gap-2 text-sm text-zinc-600\">\r\n              <a href=\"#\" className=\"hover:text-black\">\r\n                Privacy\r\n              </a>\r\n              <a href=\"#\" className=\"hover:text-black\">\r\n                Terms\r\n              </a>\r\n            </div>\r\n          </div>\r\n        </div>\r\n      </div>\r\n      <div className=\"max-w-7xl mx-auto mt-20 pt-8 border-t border-zinc-50 text-xs text-zinc-400 flex justify-between\">\r\n        <span>&copy; 2026 UI-Layouts. All rights reserved.</span>\r\n        <span>Made with Precision.</span>\r\n      </div>\r\n    </footer>\r\n  )\r\n}\r\n",
      "type": "registry:block"
    },
    {
      "path": "./components/ui/timeline-animation.tsx",
      "content": "import type { Variants } from 'motion/react';\nimport { type HTMLMotionProps, motion, useInView } from 'motion/react';\nimport type React from 'react';\n\ntype TimelineContentProps<T extends keyof HTMLElementTagNameMap> = {\n  children?: React.ReactNode;\n  animationNum: number;\n  className?: string;\n  timelineRef: React.RefObject<HTMLElement | null>;\n  as?: T;\n  customVariants?: Variants;\n  once?: boolean;\n} & HTMLMotionProps<T>;\n\nexport const TimelineAnimation = <T extends keyof HTMLElementTagNameMap = 'div'>({\n  children,\n  animationNum,\n  timelineRef,\n  className,\n  as,\n  customVariants,\n  once = true,\n  ...props\n}: TimelineContentProps<T>) => {\n  const defaultSequenceVariants = {\n    visible: (i: number) => ({\n      filter: 'blur(0px)',\n      y: 0,\n      opacity: 1,\n      transition: {\n        delay: i * 0.5,\n        duration: 0.5,\n      },\n    }),\n    hidden: {\n      filter: 'blur(20px)',\n      y: 0,\n      opacity: 0,\n    },\n  };\n\n  const sequenceVariants = customVariants || defaultSequenceVariants;\n\n  const isInView = useInView(timelineRef, {\n    once,\n  });\n\n  const MotionComponent = motion[as || 'div'] as React.ElementType;\n\n  return (\n    <MotionComponent\n      initial='hidden'\n      animate={isInView ? 'visible' : 'hidden'}\n      custom={animationNum}\n      variants={sequenceVariants}\n      className={className}\n      {...props}\n    >\n      {children}\n    </MotionComponent>\n  );\n};\n",
      "type": "registry:component"
    }
  ],
  "type": "registry:block"
}