{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "features-05",
  "title": "Features 05",
  "description": "A simple features block",
  "dependencies": [
    "lucide-react"
  ],
  "registryDependencies": [
    "card"
  ],
  "files": [
    {
      "path": "src/registry/blocks/radix/features-05/components/features.tsx",
      "content": "import {\n  BookCheck,\n  ChartPie,\n  FolderSync,\n  Goal,\n  Users,\n  Zap,\n} from \"lucide-react\";\nimport { Card, CardContent, CardHeader } from \"@/registry/bases/radix/ui/card\";\n\nconst features = [\n  {\n    icon: Goal,\n    title: \"Identify Opportunities\",\n    description:\n      \"Easily uncover untapped areas to explore and expand your reach effortlessly.\",\n  },\n  {\n    icon: BookCheck,\n    title: \"Build Authority\",\n    description:\n      \"Create valuable content that resonates, inspires trust, and positions you as an expert.\",\n  },\n  {\n    icon: ChartPie,\n    title: \"Instant Insights\",\n    description:\n      \"Gain immediate, actionable insights with a quick glance, enabling fast decision-making.\",\n  },\n  {\n    icon: Users,\n    title: \"Engage with Your Audience\",\n    description:\n      \"Boost audience engagement with interactive features like polls, quizzes, and forms.\",\n  },\n  {\n    icon: FolderSync,\n    title: \"Automate Your Workflow\",\n    description:\n      \"Streamline your processes by automating repetitive tasks, saving time and reducing effort.\",\n  },\n  {\n    icon: Zap,\n    title: \"Accelerate Growth\",\n    description:\n      \"Supercharge your growth by implementing strategies that drive results quickly and efficiently.\",\n  },\n];\n\nconst Features = () => {\n  return (\n    <div className=\"px-6 py-20\">\n      <div className=\"mx-auto w-full max-w-(--breakpoint-lg)\">\n        <h2 className=\"text-pretty text-center font-medium text-4xl tracking-[-0.04em] md:text-[2.75rem]\">\n          What makes it different\n        </h2>\n        <p className=\"mt-3 text-center text-lg text-muted-foreground tracking-[-0.01em] md:text-2xl\">\n          Minimal setup, clean structure, and easy customization\n        </p>\n        <div className=\"mx-auto mt-18 grid w-full gap-x-6 gap-y-8 md:grid-cols-2 lg:grid-cols-3\">\n          {features.map((feature) => (\n            <Card\n              className=\"flex flex-col overflow-hidden rounded-xl pb-0 shadow-none\"\n              key={feature.title}\n            >\n              <CardHeader>\n                <feature.icon />\n                <h4 className=\"mt-3! font-medium text-xl tracking-tight\">\n                  {feature.title}\n                </h4>\n                <p className=\"text-[17px] text-muted-foreground\">\n                  {feature.description}\n                </p>\n              </CardHeader>\n              <CardContent className=\"mt-auto px-0 pb-0\">\n                <div className=\"ml-6 h-40 rounded-tl-xl bg-muted\" />\n              </CardContent>\n            </Card>\n          ))}\n        </div>\n      </div>\n    </div>\n  );\n};\n\nexport default Features;\n",
      "type": "registry:component"
    }
  ],
  "type": "registry:block"
}