import Link from "next/link"; import Image from "next/image"; import type { Metadata } from "next"; import { games } from "@/lib/games"; export const metadata: Metadata = { title: "Games", description: "Games crafted by Highland Games Studio.", }; const statusLabel: Record = { "in-development": "IN DEVELOPMENT", released: "RELEASED", "coming-soon": "COMING SOON", }; export default function GamesPage() { return (

— OUR WORLDS

GAMES

{games.map((game) => ( {game.cover ? ( {game.title} ) : (
)}

{statusLabel[game.status]}

{game.title.toUpperCase()}

{game.tagline}

))}
); }