| 1 |
const quickLinks = [ |
| 2 |
{ |
| 3 |
label: 'Video Tutorials', |
| 4 |
icon: '🎬', |
| 5 |
link: 'https://www.youtube.com/@WebAppick', |
| 6 |
}, |
| 7 |
{ |
| 8 |
label: 'Disco Blogs', |
| 9 |
icon: '📰', |
| 10 |
link: 'https://discoplugin.com/blog/', |
| 11 |
}, |
| 12 |
{ |
| 13 |
label: 'Request a Feature', |
| 14 |
icon: '💡', |
| 15 |
link: 'https://discoplugin.com/my-account/suggest-feature/', |
| 16 |
}, |
| 17 |
{ |
| 18 |
label: 'Report a Bug', |
| 19 |
icon: '🐛', |
| 20 |
link: 'https://discoplugin.com/my-account/support/', |
| 21 |
}, |
| 22 |
{ |
| 23 |
label: 'Rate Disco on WP.org', |
| 24 |
icon: '⭐', |
| 25 |
link: 'https://wordpress.org/support/plugin/disco/reviews/#new-post', |
| 26 |
}, |
| 27 |
{ |
| 28 |
label: 'Changelog', |
| 29 |
icon: '🔄', |
| 30 |
link: 'https://discoplugin.com/changelog-and-release-notes/', |
| 31 |
}, |
| 32 |
]; |
| 33 |
|
| 34 |
export default quickLinks; |
| 35 |
|