{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "simple",
  "title": "Simple",
  "description": "A minimal, centered Open Graph image with an eyebrow label, title, description, and brand mark.",
  "files": [
    {
      "path": "registry/components/simple/index.tsx",
      "content": "export interface SimpleProps {\n  label: string;\n  title: string;\n  description: string;\n  brand: string;\n  logo?: string;\n}\n\nexport const Simple = ({\n  label,\n  title,\n  description,\n  brand,\n  logo,\n}: SimpleProps) => (\n  <div\n    style={{\n      alignItems: \"center\",\n      backgroundColor: \"#09090b\",\n      backgroundImage:\n        \"radial-gradient(circle at 50% 0%, rgba(124,58,237,0.18), transparent 55%)\",\n      color: \"#fafafa\",\n      display: \"flex\",\n      flexDirection: \"column\",\n      height: \"100%\",\n      justifyContent: \"center\",\n      padding: \"96px\",\n      width: \"100%\",\n    }}\n  >\n    <div\n      style={{\n        alignItems: \"center\",\n        backgroundColor: \"rgba(250,250,250,0.04)\",\n        border: \"1px solid rgba(250,250,250,0.12)\",\n        borderRadius: \"999px\",\n        color: \"#d4d4d8\",\n        display: \"flex\",\n        fontSize: \"24px\",\n        fontWeight: 500,\n        gap: \"12px\",\n        letterSpacing: \"0.04em\",\n        padding: \"8px 18px\",\n        textTransform: \"uppercase\",\n      }}\n    >\n      <div\n        style={{\n          backgroundColor: \"#7c3aed\",\n          borderRadius: \"999px\",\n          height: \"10px\",\n          width: \"10px\",\n        }}\n      />\n      {label}\n    </div>\n\n    <div\n      style={{\n        display: \"flex\",\n        fontSize: title.length > 40 ? 64 : 76,\n        fontWeight: 700,\n        letterSpacing: \"-0.03em\",\n        lineHeight: 1.05,\n        marginTop: \"40px\",\n        maxWidth: \"900px\",\n        textAlign: \"center\",\n      }}\n    >\n      {title}\n    </div>\n\n    <div\n      style={{\n        color: \"#a1a1aa\",\n        display: \"flex\",\n        fontSize: \"32px\",\n        lineHeight: 1.4,\n        marginTop: \"28px\",\n        maxWidth: \"760px\",\n        textAlign: \"center\",\n      }}\n    >\n      {description}\n    </div>\n\n    <div\n      style={{\n        alignItems: \"center\",\n        bottom: \"56px\",\n        color: \"#fafafa\",\n        display: \"flex\",\n        fontSize: \"26px\",\n        fontWeight: 600,\n        gap: \"12px\",\n        position: \"absolute\",\n      }}\n    >\n      {logo ? (\n        <img\n          alt=\"\"\n          height={28}\n          src={logo}\n          width={28}\n          style={{\n            borderRadius: \"6px\",\n            objectFit: \"contain\",\n          }}\n        />\n      ) : (\n        <div\n          style={{\n            backgroundColor: \"#7c3aed\",\n            borderRadius: \"8px\",\n            height: \"28px\",\n            width: \"28px\",\n          }}\n        />\n      )}\n      {brand}\n    </div>\n  </div>\n);\n",
      "type": "registry:component",
      "target": "components/og/simple.tsx"
    }
  ],
  "type": "registry:component"
}