1+ import { ImgHTMLAttributes } from 'react'
2+
13export type Resource = {
24 description : string
3- image : string
5+ image : Partial < ImgHTMLAttributes < any > >
46 title : string
57 url : string
68}
@@ -13,17 +15,34 @@ type LinkItem = {
1315export const resources : Resource [ ] = [
1416 {
1517 'description' :
16- 'A hands-on guide covering best practices, use cases and more.' ,
17- 'image' : '/static/images/welcome/featured1.png' ,
18- 'title' : 'eBook | Unlock Modern Software Development with Feature Flags' ,
19- url : 'https://www.flagsmith.com/ebook/flip-the-switch-on-modern-software-development-with-feature-flags?utm_source=app' ,
18+ 'Move faster while improving safety, fight vendor lock-in, and how global organisations like eBay use feature flags at scale.' ,
19+ 'image' : {
20+ src : 'https://cdn.prod.website-files.com/645258eae17c724fb2ca4915/682f63f56c99f14170876b92_Cover.png' ,
21+ srcSet :
22+ 'https://cdn.prod.website-files.com/645258eae17c724fb2ca4915/682f63f56c99f14170876b92_Cover-p-500.png 500w, https://cdn.prod.website-files.com/645258eae17c724fb2ca4915/682f63f56c99f14170876b92_Cover-p-800.png 800w, https://cdn.prod.website-files.com/645258eae17c724fb2ca4915/682f63f56c99f14170876b92_Cover-p-1080.png 1080w, https://cdn.prod.website-files.com/645258eae17c724fb2ca4915/682f63f56c99f14170876b92_Cover.png 1224w' ,
23+ } ,
24+ 'title' : 'eBook | Scaling Feature Flags' ,
25+ url : 'https://www.flagsmith.com/ebook/scaling-feature-flags-a-roadmap?utm_source=app' ,
2026 } ,
2127 {
2228 'description' : 'Set yourself up for success with these best practices.' ,
23- 'image' : '/static/images/welcome/featured2.png' ,
29+ 'image' : {
30+ src : 'https://cdn.prod.website-files.com/645258eae17c724fb2ca4915/67fff41c071081c1a18d7102_Feature%20Flags%20Best%20Practices%20Article%20Header.png' ,
31+ srcSet :
32+ 'https://cdn.prod.website-files.com/645258eae17c724fb2ca4915/67fff41c071081c1a18d7102_Feature%20Flags%20Best%20Practices%20Article%20Header-p-500.png 500w, https://cdn.prod.website-files.com/645258eae17c724fb2ca4915/67fff41c071081c1a18d7102_Feature%20Flags%20Best%20Practices%20Article%20Header-p-800.png 800w, https://cdn.prod.website-files.com/645258eae17c724fb2ca4915/67fff41c071081c1a18d7102_Feature%20Flags%20Best%20Practices%20Article%20Header-p-1080.png 1080w, https://cdn.prod.website-files.com/645258eae17c724fb2ca4915/67fff41c071081c1a18d7102_Feature%20Flags%20Best%20Practices%20Article%20Header-p-1600.png 1600w, https://cdn.prod.website-files.com/645258eae17c724fb2ca4915/67fff41c071081c1a18d7102_Feature%20Flags%20Best%20Practices%20Article%20Header-p-2000.png 2000w, https://cdn.prod.website-files.com/645258eae17c724fb2ca4915/67fff41c071081c1a18d7102_Feature%20Flags%20Best%20Practices%20Article%20Header.png 2400w' ,
33+ } ,
2434 'title' : 'Blog Post | Feature Flag best practices' ,
2535 url : 'https://www.flagsmith.com/blog/feature-flags-best-practices?utm_source=app' ,
2636 } ,
37+ {
38+ 'description' :
39+ 'A hands-on guide covering best practices, use cases and more.' ,
40+ 'image' : {
41+ src : 'https://cdn.prod.website-files.com/645258eae17c724fb2ca4915/673b280d0c8c9a9b1d58ee63_modern-software-development.webp' ,
42+ } ,
43+ 'title' : 'eBook | Unlock Modern Software Development with Feature Flags' ,
44+ url : 'https://www.flagsmith.com/ebook/flip-the-switch-on-modern-software-development-with-feature-flags?utm_source=app' ,
45+ } ,
2746]
2847
2948export const links : LinkItem [ ] = [
0 commit comments