build fixes

This commit is contained in:
makearmy 2025-09-27 17:50:12 -04:00
parent 656ad5fe7e
commit 7d6f7c682c
8 changed files with 35 additions and 14 deletions

View file

@ -0,0 +1,7 @@
// app/projects/[id]/page.tsx
import { redirect } from "next/navigation";
export default async function Page({ params }: { params: Promise<{ id: string }> }) {
const { id } = await params;
redirect(`/portal/projects?id=${encodeURIComponent(id)}`);
}