makearmy-app/app/portal/materials/page.tsx
2025-09-27 18:34:59 -04:00

8 lines
204 B
TypeScript

// app/portal/materials/page.tsx
import MaterialsClient from "./Client";
export const metadata = { title: "MakerDash • Materials" };
export default function Page() {
return <MaterialsClient />;
}