{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "features-07",
  "title": "Features 07",
  "description": "A simple features block",
  "dependencies": [
    "lucide-react"
  ],
  "files": [
    {
      "path": "src/registry/blocks/shared/features-07/components/features.tsx",
      "content": "import {\n  BookCheck,\n  ChartPie,\n  FolderSync,\n  Goal,\n  Users,\n  Zap,\n} from \"lucide-react\";\nimport Link from \"next/link\";\n\nconst features = [\n  {\n    icon: Goal,\n    title: \"Identify Opportunities\",\n    description:\n      \"Easily uncover untapped areas to explore and expand your reach.\",\n    image: \"https://www.fffuel.co/images/dddepth-preview/dddepth-051.jpg\",\n  },\n  {\n    icon: BookCheck,\n    title: \"Build Authority\",\n    description: \"Create valuable content that resonates and inspires trust.\",\n    image: \"https://www.fffuel.co/images/dddepth-preview/dddepth-248.jpg\",\n  },\n  {\n    icon: ChartPie,\n    title: \"Instant Insights\",\n    description: \"Gain immediate, actionable insights with a quick glance.\",\n    image: \"https://www.fffuel.co/images/dddepth-preview/dddepth-177.jpg\",\n  },\n  {\n    icon: Users,\n    title: \"Engage with Your Audience\",\n    description: \"Boost audience engagement with interactive features.\",\n    image: \"https://www.fffuel.co/images/dddepth-preview/dddepth-012.jpg\",\n  },\n  {\n    icon: FolderSync,\n    title: \"Automate Your Workflow\",\n    description: \"Streamline your processes by automating repetitive tasks.\",\n    image: \"https://www.fffuel.co/images/dddepth-preview/dddepth-045.jpg\",\n  },\n  {\n    icon: Zap,\n    title: \"Accelerate Growth\",\n    description: \"Supercharge your growth by implementing strategies.\",\n    image: \"https://www.fffuel.co/images/dddepth-preview/dddepth-028.jpg\",\n  },\n  {\n    icon: BookCheck,\n    title: \"Build Authority\",\n    description: \"Create valuable content that resonates and inspires trust.\",\n    image: \"https://www.fffuel.co/images/dddepth-preview/dddepth-031.jpg\",\n  },\n  {\n    icon: ChartPie,\n    title: \"Instant Insights\",\n    description: \"Gain immediate, actionable insights with a quick glance.\",\n    image: \"https://www.fffuel.co/images/dddepth-preview/dddepth-034.jpg\",\n  },\n  {\n    icon: Goal,\n    title: \"Identify Opportunities\",\n    description:\n      \"Easily uncover untapped areas to explore and expand your reach.\",\n    image: \"https://www.fffuel.co/images/dddepth-preview/dddepth-059.jpg\",\n  },\n];\n\nconst Features = () => {\n  return (\n    <div className=\"px-6 py-20\">\n      <div className=\"mx-auto w-full max-w-(--breakpoint-xl)\">\n        <h2 className=\"text-pretty font-medium text-4xl tracking-[-0.04em] sm:mx-auto sm:max-w-xl sm:text-center md:text-[2.75rem] md:leading-[1.2]\">\n          Strengthen your strategy\n        </h2>\n        <p className=\"mt-3 text-pretty text-muted-foreground text-xl -tracking-[0.01em] sm:text-center md:text-2xl\">\n          No complex configs. Just copy, paste, and start building\n        </p>\n        <div className=\"mt-12 grid gap-6 sm:mt-18 sm:gap-y-8 md:grid-cols-2 lg:grid-cols-3\">\n          {features.map((feature, index) => (\n            <Link href=\"#\" key={index}>\n              <div className=\"-mx-2 flex max-w-lg items-center gap-6 rounded-lg sm:mx-0\">\n                <div className=\"aspect-square h-24 shrink-0 overflow-hidden rounded-lg border border-border/20 bg-muted\">\n                  <img\n                    alt=\"\"\n                    className=\"size-full object-cover\"\n                    height={96}\n                    src={feature.image}\n                    width={96}\n                  />\n                </div>\n                <div className=\"\">\n                  <span className=\"font-medium text-lg tracking-[-0.015em]\">\n                    {feature.title}\n                  </span>\n                  <p className=\"mt-1 text-pretty text-muted-foreground\">\n                    {feature.description}\n                  </p>\n                </div>\n              </div>\n            </Link>\n          ))}\n        </div>\n      </div>\n    </div>\n  );\n};\n\nexport default Features;\n",
      "type": "registry:component"
    }
  ],
  "type": "registry:block"
}