File size: 288 Bytes
13ae717 8185bfc 09515ea 13ae717 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import { redirect } from "next/navigation";
import { MyProjects } from "@/components/my-projects";
export default async function ProjectsPage() {
const { ok, projects } = { ok: true, projects: [] };
if (!ok) {
redirect("/");
}
return <MyProjects projects={projects} />;
}
|