mirror of
https://git.suyu.dev/suyu/website.git
synced 2025-12-26 09:14:40 +01:00
remind me to never try to handle a 53MB json file again
This commit is contained in:
parent
99bfc69c64
commit
188e38c6ec
19 changed files with 185 additions and 109 deletions
|
|
@ -1,5 +0,0 @@
|
|||
{
|
||||
"landingHeader": "suyu",
|
||||
"landingOne": "Suyu is an open-source, Switch compatible emulator with almost full coverage of the game library.",
|
||||
"landingCardHeader": "We care about preservation"
|
||||
}
|
||||
28
src/lib/server/other/index.ts
Normal file
28
src/lib/server/other/index.ts
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
interface SwitchGame {
|
||||
bannerUrl: string;
|
||||
category: string[];
|
||||
description: string;
|
||||
developer: null;
|
||||
frontBoxArt: null;
|
||||
iconUrl: string;
|
||||
id: string;
|
||||
intro: null | string;
|
||||
isDemo: boolean;
|
||||
key: null;
|
||||
languages: string[];
|
||||
name: string;
|
||||
nsuId: number;
|
||||
numberOfPlayers: number;
|
||||
publisher: string;
|
||||
rating: number;
|
||||
ratingContent: string[];
|
||||
region: null;
|
||||
releaseDate: number;
|
||||
rightsId: string;
|
||||
screenshots: string[];
|
||||
size: number;
|
||||
version: null;
|
||||
}
|
||||
export const globalData: {
|
||||
games: SwitchGame[];
|
||||
} = { games: [] };
|
||||
Loading…
Add table
Add a link
Reference in a new issue