- Champ `cover` dans lib/games.ts - Branché sur la card home, la liste des jeux et le hero page projet - Fallback placeholder logo si pas d'image Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -7,6 +7,10 @@ export type Game = {
|
||||
genres: string[];
|
||||
releaseWindow?: string;
|
||||
steamUrl?: string;
|
||||
// Image de couverture affichée sur les cards (home, liste, page projet).
|
||||
// Dépose l'image dans /public/image/Emberwild/ puis renseigne le chemin,
|
||||
// ex: "/image/Emberwild/cover.jpg". Laisse vide pour un placeholder.
|
||||
cover?: string;
|
||||
};
|
||||
|
||||
export const games: Game[] = [
|
||||
@@ -19,6 +23,7 @@ export const games: Game[] = [
|
||||
"Inspired by Raft and Aloft. Build, explore, and survive across drifting worlds. A new survival adventure currently in early development. The first world from Highland Games Studio.",
|
||||
genres: ["Survival", "Crafting", "Exploration"],
|
||||
releaseWindow: "TBA",
|
||||
// cover: "/image/Emberwild/cover.jpg",
|
||||
},
|
||||
];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user