Branche les vraies images d'Emberwild
Deploy / deploy (push) Successful in 1m1s

- Cover.png sur les cards du jeu
- Les 3 captures dans la galerie "FROM THE WORKSHOP"

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-07-01 22:50:13 +02:00
parent f40bb30029
commit 628dfdfd52
6 changed files with 16 additions and 6 deletions
+15 -5
View File
@@ -12,11 +12,21 @@ const featured = games[0];
// puis renseigne `src` (ex: "/image/Emberwild/screen-01.jpg").
// Laisse `src: null` pour afficher un emplacement placeholder.
const screenshots: { src: string | null; label: string; span: string }[] = [
{ src: null, label: "Early build", span: "col-span-2 row-span-2" },
{ src: null, label: "Environment", span: "" },
{ src: null, label: "Crafting", span: "" },
{ src: null, label: "Exploration", span: "col-span-2" },
{ src: null, label: "Concept", span: "" },
{
src: "/image/Games/Emberwild/Capture_1.png",
label: "In-game",
span: "col-span-2 row-span-2",
},
{
src: "/image/Games/Emberwild/Capture_2.png",
label: "Environment",
span: "",
},
{
src: "/image/Games/Emberwild/Capture_3.png",
label: "Exploration",
span: "",
},
];
export default function Home() {