{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "logo-cloud-01",
  "title": "Trust strip",
  "description": "Six-logo strip under a one-line trust headline — the safe default trust row for any landing page.",
  "files": [
    {
      "path": "content/components/logo-cloud/logo-cloud-01.tsx",
      "content": "const logos = [\n  { name: \"Vercel\", src: \"https://blockus.lndevui.com/logos/vercel-wordmark.svg\" },\n  { name: \"Linear\", src: \"https://blockus.lndevui.com/logos/linear-wordmark.svg\" },\n  { name: \"Notion\", src: \"https://blockus.lndevui.com/logos/notion-wordmark.svg\" },\n  { name: \"Supabase\", src: \"https://blockus.lndevui.com/logos/supabase-wordmark.svg\" },\n  { name: \"Stripe\", src: \"https://blockus.lndevui.com/logos/stripe.svg\" },\n  { name: \"GitHub\", src: \"https://blockus.lndevui.com/logos/github-wordmark.svg\" },\n]\n\nexport default function LogoCloud01() {\n  return (\n    <section className=\"bg-background py-20 sm:py-28\">\n      <div className=\"mx-auto max-w-6xl px-6\">\n        <p className=\"text-center text-sm font-medium text-muted-foreground\">\n          Trusted by product teams shipping every week\n        </p>\n        <div className=\"mt-10 grid grid-cols-2 items-center justify-center gap-8 sm:grid-cols-3 lg:grid-cols-6\">\n          {logos.map((logo) => (\n            // eslint-disable-next-line @next/next/no-img-element\n            <img\n              key={logo.name}\n              src={logo.src}\n              alt={logo.name}\n              className=\"mx-auto h-6 w-auto opacity-60 grayscale transition-opacity hover:opacity-100 dark:invert sm:h-7\"\n            />\n          ))}\n        </div>\n      </div>\n    </section>\n  )\n}\n",
      "type": "registry:block",
      "target": "components/blocks/logo-cloud-01.tsx"
    }
  ],
  "categories": [
    "logo-cloud"
  ],
  "type": "registry:block"
}