import { auth } from "@/auth"; import { DecksClient } from "./DecksClient"; import { headers } from "next/headers"; import { redirect } from "next/navigation"; export default async function DecksPage() { const session = await auth.api.getSession( { headers: await headers() } ); if (!session) { redirect("/login?redirect=/decks"); } return ; }