File size: 334 Bytes
13ae717
 
 
09515ea
13ae717
 
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";
import { getProjects } from "@/app/actions/projects";

export default async function ProjectsPage() {
  const { ok, projects } = await getProjects();
  if (!ok) {
    redirect("/");
  }

  return <MyProjects projects={projects} />;
}