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

14 lines
362 B
TypeScript
Raw Normal View History

2025-09-27 14:30:16 -04:00
// app/portal/rigs/page.tsx
2025-09-27 15:28:02 -04:00
import RigsSwitcher from "@/components/portal/RigsSwitcher";
2025-09-27 14:30:16 -04:00
2025-09-27 15:12:08 -04:00
export const metadata = { title: "MakerDash • Rigs" };
2025-09-27 14:30:16 -04:00
2025-09-27 15:12:08 -04:00
export default function RigsPortalPage() {
2025-09-27 14:30:16 -04:00
return (
<div className="rounded-lg border p-6">
2025-09-27 15:12:08 -04:00
<h2 className="mb-4 text-xl font-semibold">Rigs</h2>
2025-09-27 15:28:02 -04:00
<RigsSwitcher />
2025-09-27 14:30:16 -04:00
</div>
);
}