makearmy-app/app/portal/rigs/page.tsx

14 lines
525 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// 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">Well plug the existing Rig Builder here.</p>
</div>
);
}