Skip to content

Commit 30a5105

Browse files
committed
projects section with deploy
1 parent 189d136 commit 30a5105

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/app/proyectos/[id]/page.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@ import { notFound } from "next/navigation";
33
import ProjectPage from "@/components/project-page";
44
import { projects } from "@/components/projects";
55

6-
export default function ProjectRoute({ params }) {
6+
export default function ProjectRoute({
7+
params,
8+
}: {
9+
params: { id: string };
10+
}) {
711
const project = projects.find((p) => p.id === params.id);
812
if (!project) {
913
return notFound();

0 commit comments

Comments
 (0)