added project, material, sources to portal
This commit is contained in:
parent
c7511b98fc
commit
45d4e08cd8
9 changed files with 90 additions and 282 deletions
|
|
@ -1,9 +1,18 @@
|
|||
// app/portal/projects/page.tsx
|
||||
export default function ProjectsPage() {
|
||||
import dynamic from "next/dynamic";
|
||||
|
||||
export const metadata = { title: "MakerDash • Projects" };
|
||||
|
||||
// Mount the existing canonical page (adjust path if needed)
|
||||
const ProjectsView = dynamic(() => import("@/app/projects/page"), { ssr: false });
|
||||
|
||||
export default function ProjectsPortalPage() {
|
||||
return (
|
||||
<div className="rounded-lg border p-6">
|
||||
<h2 className="text-xl font-semibold mb-2">Projects</h2>
|
||||
<p className="opacity-80">WIP: authenticated project list & details.</p>
|
||||
<h2 className="mb-4 text-xl font-semibold">Projects</h2>
|
||||
<div className="rounded-md border p-4">
|
||||
<ProjectsView />
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue