Spaces:
Running
Running
import { redirect } from "next/navigation"; | |
import { MyProjects } from "@/components/my-projects"; | |
import { getProjects } from "@/app/actions/projects"; | |
export default async function ProjectsPage() { | |
const { ok, projects } = await getProjects(); | |
if (!ok) { | |
redirect("/"); | |
} | |
return <MyProjects projects={projects} />; | |
} | |