"use client"; import Image from "next/image"; import Link from "next/link"; import { motion } from "framer-motion"; import { games } from "@/lib/games"; const featured = games[0]; // Screenshots WIP du projet. // Pour en ajouter : dépose l'image dans /public/image/Emberwild/ // 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: "/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() { return ( <> {/* HERO */}
{/* Background video */} {/* Dark overlay for text readability */}
{/* Vignette / radial fade to deepen the edges */}
{/* Grain / noise overlay via CSS gradient */}
Highland Games Studio HIGHLAND GAMES
STUDIO
Where summits become worlds. EXPLORE OUR GAMES MEET THE STUDIO
{/* Scroll indicator - positioned relative to the section */} SCROLL
{/* STUDIO INTRO */}

— THE STUDIO

Worlds beyond
the summit.

We build worlds where every horizon hides a story. Hand-crafted games made to be lived in, not just played through. Each one a different summit, a different climb.

LEARN MORE →
{/* FEATURED GAME */}

— IN DEVELOPMENT

OUR FIRST WORLD

{featured?.cover ? ( {featured.title} ) : (
Game placeholder
)}

SURVIVAL · CRAFTING · EXPLORATION

PROJECT ONE

Inspired by Raft and Aloft. Build, explore, and survive across shifting horizons. A new survival adventure, currently in early development.

LEARN MORE
{/* GALLERY */}

— GLIMPSES

FROM THE WORKSHOP

Raw captures straight from development. Everything here is work in progress and will keep evolving.

{screenshots.map((shot, i) => ( {shot.src ? ( {shot.label} ) : (
{shot.label}
)} {/* Subtle gradient + label on hover for real screenshots */} {shot.src && ( <>
{shot.label} )} {/* WIP badge */}
WIP
))}
{/* DEVBLOG TEASER */}

— DEVBLOG

FOLLOW THE JOURNEY

Behind-the-scenes updates, design decisions, and milestones from the studio. Every step of the climb, documented.

READ THE DEVBLOG
); }