| 1 |
const bannerMetadata = [ |
| 2 |
{ |
| 3 |
id: "banner-01", |
| 4 |
type: "banner", |
| 5 |
style: ["modern", "centered"], |
| 6 |
description: |
| 7 |
"Modern banner with solid blue background, centered title and description, and a call-to-action button. Clean design with white text for optimal contrast. Perfect for hero sections.", |
| 8 |
}, |
| 9 |
{ |
| 10 |
id: "banner-02", |
| 11 |
type: "banner", |
| 12 |
style: ["split", "two-columns"], |
| 13 |
description: |
| 14 |
"Banner with blue gradient, two-column layout with text on the left and image on the right. Eye-catching title, description and call-to-action button. Ideal for landing pages.", |
| 15 |
}, |
| 16 |
{ |
| 17 |
id: "banner-03", |
| 18 |
type: "banner", |
| 19 |
style: ["minimal", "light"], |
| 20 |
description: |
| 21 |
"Minimalist banner with light background, centered title and description, and a blue call-to-action button. Clean and professional design. Perfect for feature presentation sections.", |
| 22 |
}, |
| 23 |
]; |
| 24 |
|
| 25 |
export default bannerMetadata; |
| 26 |
|