Add new patterns to the collection
mainTo contribute new patterns, add them to src/data/patterns.ts. Each pattern must follow the established object format and include a category from the following list:
gradientsgeometricdecorativeeffects
{
id: "unique-pattern-id",
name: "Pattern Display Name",
category: "gradients" | "geometric" | "decorative" | "effects",
badge: "New", // Optional
style: {
background: "#ffffff",
backgroundImage: `// CSS patterns`,
backgroundSize: "96px 64px, 100% 100%",
},
code: `<div className="min-h-screen w-full bg-white relative">...</div>`,
}