// app/my/rigs/page.tsx import SignOutButton from "@/components/SignOutButton"; import RigBuilderClient from "./RigBuilderClient"; export const metadata = { title: "My Rigs", }; export default async function MyRigsPage() { // Server shell only; the client component does all fetching with the // user cookie via our /api/* routes so auth is preserved. return (

My Rigs

); }