Skip to content

Commit a272eb3

Browse files
JoeMattclaude
andcommitted
fix: replace empty header.png/news-welcome.png OG images with icon-1024.png
- OG/Twitter card now uses icon-1024.png (1024×1024) instead of the 0-byte header.png - AltStore/SideStore news imageURL now uses icon-1024.png instead of 0-byte news-welcome.png - Add icon-1024.webp (33KB vs 924KB PNG) for JSON-LD structured data Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent f7ac1cc commit a272eb3

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

public/icon-1024.webp

33.2 KB
Loading

src/app/api/altstore/route.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export async function GET() {
3838
caption: 'GameCube & Wii emulation on iOS and tvOS',
3939
date: new Date().toISOString().split('T')[0],
4040
tintColor: '#3B82F6',
41-
imageURL: `${baseURL}/news-welcome.png`,
41+
imageURL: `${baseURL}/icon-1024.png`,
4242
notify: false,
4343
url: 'https://icube-emu.com',
4444
},

src/app/api/sidestore/route.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export async function GET() {
3838
caption: 'GameCube & Wii emulation on iOS and tvOS',
3939
date: new Date().toISOString().split('T')[0],
4040
tintColor: '#3B82F6',
41-
imageURL: `${baseURL}/news-welcome.png`,
41+
imageURL: `${baseURL}/icon-1024.png`,
4242
notify: false,
4343
url: 'https://icube-emu.com',
4444
},

src/app/layout.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ export const metadata: Metadata = {
3636
url: "https://icube-emu.com",
3737
images: [
3838
{
39-
url: "/header.png",
40-
width: 1200,
41-
height: 630,
39+
url: "/icon-1024.png",
40+
width: 1024,
41+
height: 1024,
4242
alt: "iCube – GameCube & Wii Emulator for iOS & tvOS",
4343
},
4444
],
@@ -50,7 +50,7 @@ export const metadata: Metadata = {
5050
title: "iCube – GameCube & Wii Emulator for iOS & tvOS",
5151
description:
5252
"Play classic Nintendo GameCube and Wii games on your iPhone, iPad, and Apple TV.",
53-
images: ["/header.png"],
53+
images: ["/icon-1024.png"],
5454
},
5555
icons: {
5656
icon: [
@@ -109,7 +109,7 @@ const jsonLd = {
109109
description:
110110
"A GameCube and Wii emulator for iOS and tvOS based on Dolphin. Play classic Nintendo games on your iPhone, iPad, and Apple TV.",
111111
url: "https://icube-emu.com",
112-
image: "https://icube-emu.com/icon-1024.png",
112+
image: "https://icube-emu.com/icon-1024.webp",
113113
author: {
114114
"@type": "Organization",
115115
name: "Provenance Emu",

0 commit comments

Comments
 (0)