13 lines
362 B
TypeScript
13 lines
362 B
TypeScript
// app/portal/rigs/page.tsx
|
|
import RigsSwitcher from "@/components/portal/RigsSwitcher";
|
|
|
|
export const metadata = { title: "MakerDash • Rigs" };
|
|
|
|
export default function RigsPortalPage() {
|
|
return (
|
|
<div className="rounded-lg border p-6">
|
|
<h2 className="mb-4 text-xl font-semibold">Rigs</h2>
|
|
<RigsSwitcher />
|
|
</div>
|
|
);
|
|
}
|