diff --git a/components/index/hero/Right.vue b/components/index/hero/Right.vue index b0076c70..6133d1fd 100644 --- a/components/index/hero/Right.vue +++ b/components/index/hero/Right.vue @@ -14,12 +14,12 @@ const screenshots = computed(() => { if (colorMode.preference === 'dark') { return { desktop: '/img/hero/misskey-dark.png', - mobile: '/img/hero/screenshot-mobile-en.png', + mobile: '/img/hero/misskey-mobile-dark.png', }; } else { return { desktop: '/img/hero/misskey-light.png', - mobile: '/img/hero/screenshot-mobile.png', + mobile: '/img/hero/misskey-mobile-light.png', }; } }); diff --git a/public/img/hero/misskey-mobile-dark.png b/public/img/hero/misskey-mobile-dark.png new file mode 100644 index 00000000..9f84d80f Binary files /dev/null and b/public/img/hero/misskey-mobile-dark.png differ diff --git a/public/img/hero/misskey-mobile-light.png b/public/img/hero/misskey-mobile-light.png new file mode 100644 index 00000000..06fabe5e Binary files /dev/null and b/public/img/hero/misskey-mobile-light.png differ