diff --git a/public/images/god-bless-bitcoin-backdrop.jpg b/public/images/god-bless-bitcoin-backdrop.jpg new file mode 100644 index 0000000..da0d3cb Binary files /dev/null and b/public/images/god-bless-bitcoin-backdrop.jpg differ diff --git a/src/stores/content.ts b/src/stores/content.ts index b0c4319..6f8e415 100644 --- a/src/stores/content.ts +++ b/src/stores/content.ts @@ -25,10 +25,10 @@ export const useContentStore = defineStore('content', () => { // Set featured content immediately - God Bless Bitcoin const godBlessBitcoin = bitcoinFilms.find(f => f.title === 'God Bless Bitcoin') || bitcoinFilms[0] if (godBlessBitcoin) { - // Override backdrop to use the downloaded image + // Override backdrop to use the public folder image featuredContent.value = { ...godBlessBitcoin, - backdrop: '/assets/images/god-bless-bitcoin-backdrop.jpg' + backdrop: '/images/god-bless-bitcoin-backdrop.jpg' } } else { featuredContent.value = indeeHubFilms[0]