import { redirect } from "next/navigation" import { headers } from "next/headers" import { auth } from "@/lib/auth" import { NonSteamWizard } from "@/components/wizard/non-steam-wizard" export const dynamic = "force-dynamic" export const metadata = { title: "Add Non-Steam Game", } export default async function AddGamePage() { const h = await headers() const session = await auth.api.getSession({ headers: h }) if (!session?.user) { redirect("/login") } return (

Add a Game

Add a non-Steam game to DeckyVault. Search for cover art, set platform support, and submit.

) }