14 lines
525 B
TypeScript
14 lines
525 B
TypeScript
// app/portal/rigs/page.tsx
|
||
import dynamic from "next/dynamic";
|
||
|
||
// If you already have RigBuilderClient, you can import it here instead of this placeholder:
|
||
// const RigBuilderClient = dynamic(() => import("@/app/my/rigs/RigBuilderClient"), { ssr: false });
|
||
|
||
export default function RigsPage() {
|
||
return (
|
||
<div className="rounded-lg border p-6">
|
||
<h2 className="text-xl font-semibold mb-2">Rigs</h2>
|
||
<p className="opacity-80">We’ll plug the existing Rig Builder here.</p>
|
||
</div>
|
||
);
|
||
}
|