forked from codechefPesuecc/CodeChef-PESUECC-Chapter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.tsx
More file actions
20 lines (18 loc) · 635 Bytes
/
Copy pathpage.tsx
File metadata and controls
20 lines (18 loc) · 635 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import type { Metadata } from "next";
import { getAllTeamData } from "./lib";
import TeamPageClient from "./TeamPageClient";
export const metadata: Metadata = {
title: "Team",
description:
"Meet the people behind the CodeChef PESUECC Chapter — coordinators, core team, and members across every year.",
};
/**
* `/team` — Server Component entry point.
*
* Reads the build-time team manifest (see src/app/team/lib.ts) for years and
* member data, then hands everything to the interactive client shell.
*/
export default function TeamPage() {
const data = getAllTeamData();
return <TeamPageClient data={data} />;
}