Skip to content

Commit 189d136

Browse files
committed
projects section with deploy
1 parent 60b63d1 commit 189d136

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

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

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

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

0 commit comments

Comments
 (0)