import type { Metadata } from "next"; import { PageHeader } from "../components/ui/PageHeader"; import { Section } from "../components/ui/Section"; import { GameCard } from "../components/game/GameCard"; import { Stagger, StaggerItem } from "../components/ui/Stagger"; import { games } from "@/lib/games"; export const metadata: Metadata = { title: "Games", description: "Games crafted by Highland Games Studio.", }; export default function GamesPage() { return ( <>
{games.length === 0 ? (

Nothing announced yet. Follow the devblog to hear it first.

) : ( {games.map((game) => ( ))} )}
); }