| 1 | /** |
| 2 | * PromptGallery 静态资源数据 |
| 3 | * 功能:提供视频提示词画廊的封面图片和视频资源路径 |
| 4 | * 注意:提示词内容通过国际化翻译文件加载(promptGallery.json) |
| 5 | */ |
| 6 | |
| 7 | /** 提示词画廊静态资源配置 */ |
| 8 | export const promptGalleryAssets = [ |
| 9 | { |
| 10 | title: 'Blacklock Canary Wharf Check-in Vlog', |
| 11 | cover: '/assets/promptGallery/cover01.png', |
| 12 | video: '/assets/promptGallery/video01.mp4', |
| 13 | materials: ['/assets/promptGallery/material01-1.png', '/assets/promptGallery/material01-2.png'], |
| 14 | prompt: `Create an 8s vertical video (9:16), restaurant check-in vlog style at Blacklock Canary Wharf. Selfie/talking-head format for TikTok/Reels. Use provided images as reference.`, |
| 15 | }, |
| 16 | { |
| 17 | title: 'Restaurant Discovery Short Video', |
| 18 | cover: '/assets/promptGallery/cover02.png', |
| 19 | video: '/assets/promptGallery/video02.mp4', |
| 20 | materials: ['/assets/promptGallery/material02.png'], |
| 21 | prompt: `8s 9:16 vlog. VO: "Just found this place, everyone says it's great. Going in—wish me luck!" Exterior→walk→enter. Useref imgs.`, |
| 22 | }, |
| 23 | { |
| 24 | title: 'The Shed British Restaurant Promo', |
| 25 | cover: '/assets/promptGallery/cover03.png', |
| 26 | video: '/assets/promptGallery/video03.mp4', |
| 27 | materials: ['/assets/promptGallery/material03.png'], |
| 28 | prompt: `8s 9:16 The Shed video. VO: "The Shed blew my mind! Fish & chips perfection. You have to check it out!" Warm tones. Use refs.`, |
| 29 | }, |
| 30 | ] |
| 31 |