kalhdrawi's picture
ุฃูˆู„ ุฑูุน ู„ู„ู…ู„ูุงุช ุฅู„ู‰ ุงู„ุณุจูŠุณ kalhdrawi/omnidev
1cf8f01
raw
history blame
334 Bytes
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} />;
}