{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "about-ecommerse",
  "dependencies": [
    "motion"
  ],
  "devDependencies": [],
  "registryDependencies": [],
  "files": [
    {
      "path": "../../packages/blocks/src/about-section/about-ecommerse.tsx",
      "content": "'use client'\r\nimport React from 'react'\r\nimport { motion } from 'motion/react'\r\n\r\nexport const AboutECommerce = () => {\r\n  return (\r\n    <section className=\"py-32 px-6 bg-orange-50 text-orange-950\">\r\n      <div className=\"max-w-7xl mx-auto text-center\">\r\n        <motion.div\r\n          initial={{ opacity: 0, scale: 0.95 }}\r\n          whileInView={{ opacity: 1, scale: 1 }}\r\n          transition={{ duration: 0.6 }}\r\n          className=\"max-w-2xl mx-auto mb-24\"\r\n        >\r\n          <div className=\"flex items-center justify-center gap-4 mb-8\">\r\n            <div className=\"h-px w-8 bg-orange-800/20\" />\r\n            <span className=\"text-xs font-bold text-orange-800/60 uppercase tracking-[0.3em]\">\r\n              Our Story & Craft\r\n            </span>\r\n            <div className=\"h-px w-8 bg-orange-800/20\" />\r\n          </div>\r\n          <h2 className=\"text-5xl md:text-6xl font-serif italic text-zinc-900 mb-8 text-balance\">\r\n            Rooted in heritage, <br /> refined for today.\r\n          </h2>\r\n          <p className=\"text-lg text-zinc-600 leading-relaxed text-pretty italic\">\r\n            \"We believe that the things we surround ourselves with should tell a\r\n            story. Not just of where they came from, but where they are going.\"\r\n          </p>\r\n        </motion.div>\r\n\r\n        <div className=\"grid md:grid-cols-3 gap-8\">\r\n          <div className=\"space-y-6\">\r\n            <div className=\"aspect-4/5 rounded-[3rem] overflow-hidden\">\r\n              <img\r\n                src=\"https://images.unsplash.com/photo-1490481651871-ab68de25d43d?q=80&w=800\"\r\n                className=\"object-cover size-full\"\r\n                alt=\"Craftsmanship\"\r\n              />\r\n            </div>\r\n            <h4 className=\"font-bold text-lg\">Ethical Sourcing</h4>\r\n            <p className=\"text-sm text-zinc-500 text-pretty\">\r\n              Working directly with artisans to ensure fair trade and\r\n              sustainable materials.\r\n            </p>\r\n          </div>\r\n          <div className=\"space-y-6 pt-12\">\r\n            <div className=\"aspect-4/5 rounded-[3rem] overflow-hidden\">\r\n              <img\r\n                src=\"https://images.unsplash.com/photo-1441986300917-64674bd600d8?q=80&w=800\"\r\n                className=\"object-cover size-full\"\r\n                alt=\"Curation\"\r\n              />\r\n            </div>\r\n            <h4 className=\"font-bold text-lg\">Timeless Curation</h4>\r\n            <p className=\"text-sm text-zinc-500 text-pretty\">\r\n              Each piece is selected for its ability to withstand trends and age\r\n              beautifully.\r\n            </p>\r\n          </div>\r\n          <div className=\"space-y-6 pt-24\">\r\n            <div className=\"aspect-4/5 rounded-[3rem] overflow-hidden\">\r\n              <img\r\n                src=\"https://images.unsplash.com/photo-1523275335684-37898b6baf30?q=80&w=800\"\r\n                className=\"object-cover size-full\"\r\n                alt=\"Quality\"\r\n              />\r\n            </div>\r\n            <h4 className=\"font-bold text-lg\">Local Heritage</h4>\r\n            <p className=\"text-sm text-zinc-500 text-pretty\">\r\n              Preserving traditional techniques through modern design\r\n              applications.\r\n            </p>\r\n          </div>\r\n        </div>\r\n      </div>\r\n    </section>\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"
}