Components/5a624593-2bce-4df4-b109-ed4e9c0cd745

App Screenshot

featurefrom Startup Bold
Sign in to Add to Project
Live

AI Usage Rules

Show product screenshot with glow effect. Pair with feature bullets on the left.

Code Template

<section className="bg-[#0F0F23] py-24"><div className="mx-auto max-w-6xl px-6"><div className="grid grid-cols-1 gap-16 md:grid-cols-2 items-center"><div><h2 className="text-3xl font-bold text-white">{title}</h2><p className="mt-4 text-lg text-gray-300">{description}</p><ul className="mt-8 space-y-3">{bulletPoints}</ul></div><div className="relative"><div className="absolute -inset-4 bg-gradient-to-r from-purple-600/20 to-pink-600/20 rounded-2xl blur-xl" /><img src="{screenshot}" alt="{alt}" className="relative rounded-xl shadow-2xl" /></div></div></div></section>

Props Schema

PropertyTypeDefaultDescription
altstring
titlestring
screenshotstring
descriptionstring
bulletPointsarray
View raw JSON schema
{
  "type": "object",
  "properties": {
    "alt": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "screenshot": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "bulletPoints": {
      "type": "array"
    }
  }
}