diff --git a/app/page.tsx b/app/page.tsx index 26e49e7..41ab759 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -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() { diff --git a/lib/games.ts b/lib/games.ts index 63f0ffb..a6069bb 100644 --- a/lib/games.ts +++ b/lib/games.ts @@ -23,7 +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", + cover: "/image/Games/Emberwild/Cover.png", }, ]; diff --git a/public/image/Games/Emberwild/Capture_1.png b/public/image/Games/Emberwild/Capture_1.png new file mode 100644 index 0000000..7d5e754 Binary files /dev/null and b/public/image/Games/Emberwild/Capture_1.png differ diff --git a/public/image/Games/Emberwild/Capture_2.png b/public/image/Games/Emberwild/Capture_2.png new file mode 100644 index 0000000..1ab035e Binary files /dev/null and b/public/image/Games/Emberwild/Capture_2.png differ diff --git a/public/image/Games/Emberwild/Capture_3.png b/public/image/Games/Emberwild/Capture_3.png new file mode 100644 index 0000000..a205131 Binary files /dev/null and b/public/image/Games/Emberwild/Capture_3.png differ diff --git a/public/image/Games/Emberwild/Cover.png b/public/image/Games/Emberwild/Cover.png new file mode 100644 index 0000000..429cae6 Binary files /dev/null and b/public/image/Games/Emberwild/Cover.png differ