feat: add team page

This commit is contained in:
2024-08-24 21:17:19 -07:00
parent 516a022553
commit e12220441a
6 changed files with 128 additions and 3 deletions

38
src/app/team/page.tsx Normal file
View File

@ -0,0 +1,38 @@
import { Certification } from "@/components/cert";
import { Game } from "@/components/game";
import { Member } from "@/components/member";
import { Rule } from "@/components/rule";
import { Certifications } from "@/config/Certifications";
import { Games } from "@/config/Games";
import { TeamMembers } from "@/config/TeamMembers";
import { Charm } from "next/font/google";
const Team = (): JSX.Element => {
return (
<>
<main className="w-[95%] text-center max-w-4xl m-auto mt-16 mb-16 rounded-lg">
<h1 className="text-5xl">Our Team</h1>
<section>
<p className="mb-2">
Meet the people behind nhcarrigan&apos;s success!
</p>
<Rule />
<div className="w-full">
{TeamMembers.map((member) => (
<Member
key={member.name}
name={member.name}
url={member.url}
avatar={member.avatar}
joinDate={member.joinDate}
role={member.role}
/>
))}
</div>
</section>
</main>
</>
);
};
export default Team;