Improve SEO of hack pages

This commit is contained in:
Jared Schoeny
2025-11-03 18:40:21 -10:00
parent 410b3eae57
commit cecfd49b91
5 changed files with 188 additions and 17 deletions

View File

@@ -6,6 +6,13 @@ export const PLATFORMS = [
] as const;
export type Platform = typeof PLATFORMS[number];
export const PLATFORM_NAMES: Record<Platform, string> = {
GB: "Game Boy",
GBC: "Game Boy Color",
GBA: "Game Boy Advance",
NDS: "Nintendo DS",
};
export type BaseRom = {
id: string;
name: string;