{"$schema":"https://ui.shadcn.com/schema/registry-item.json","author":"Eduardo Calvo <educlopez93@gmail.com>","css":{},"dependencies":[],"description":"Simple logo cloud block with grid layout","devDependencies":[],"files":[{"content":"\"use client\";\n\nimport {\n  Canpoy,\n  Canva,\n  Casetext,\n  Clearbit,\n  Descript,\n  Duolingo,\n  Faire,\n  IDEO,\n  KhanAcademy,\n  Quizlet,\n  Ramp,\n  Strava,\n} from \"@/components/smoothui/shared\";\n\nconst LOGOS = [\n  <Canpoy key=\"1\" />,\n  <Canva key=\"2\" />,\n  <Casetext key=\"3\" />,\n  <Strava key=\"4\" />,\n  <Descript key=\"5\" />,\n  <Duolingo key=\"6\" />,\n  <Faire key=\"7\" />,\n  <Clearbit key=\"8\" />,\n  <IDEO key=\"9\" />,\n  <KhanAcademy key=\"10\" />,\n  <Quizlet key=\"11\" />,\n  <Ramp key=\"12\" />,\n];\n\ninterface LogoCloudSimpleProps {\n  count?: number;\n  description?: string;\n  title?: string;\n}\n\nexport function LogoCloudSimple({\n  title = \"You're in good company\",\n  description = \"Trusted by leading teams from around the world\",\n  count = 4,\n}: LogoCloudSimpleProps) {\n  const logos = LOGOS.slice(0, count);\n\n  return (\n    <section className=\"bg-background py-16\">\n      <div className=\"mx-auto max-w-5xl px-6\">\n        <div className=\"mx-auto mb-12 max-w-xl text-balance text-center md:mb-16\">\n          <h2 className=\"font-semibold text-4xl\">{title}</h2>\n          <p className=\"mt-4 text-lg text-muted-foreground\">{description}</p>\n        </div>\n        <div className=\"mx-auto grid max-w-5xl grid-cols-2 items-center gap-8 md:grid-cols-4\">\n          {logos.map((logo) => (\n            <div\n              className=\"flex items-center justify-center opacity-60 transition-opacity duration-200 *:fill-foreground hover:opacity-100\"\n              key={logo.key}\n            >\n              {logo}\n            </div>\n          ))}\n        </div>\n      </div>\n    </section>\n  );\n}\n\nexport default LogoCloudSimple;\n","path":"index.tsx","target":"components/smoothui/logo-cloud-1/index.tsx","type":"registry:block"}],"name":"logo-cloud-1","registryDependencies":["https://smoothui.dev/r/shared.json"],"title":"Logo Cloud 1","type":"registry:block"}