import type { Metadata } from "next";
import { gameHostings } from "@/lib/data/game-hosting";
import GameHostClient from "./GameHostClient";

export const metadata: Metadata = {
  title: "Game Hosting",
  description:
    "SEO-friendly game hosting packages for Minecraft, Hytale, and FiveM with themed tiers, configurable billing URLs, promo badges, and monthly or annual billing.",
  alternates: {
    canonical: "/game-host",
  },
};

export default function GameHostPage() {
  return <GameHostClient game={gameHostings.minecraft} />;
}
