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

View File

@ -5,5 +5,6 @@ export const NavItems = [
{ href: "/contact", text: "Contact" },
{ href: "/certs", text: "Certifications" },
{ href: "/reviews", text: "Reviews" },
{ href: "/games", text: "Games"}
{ href: "/games", text: "Games"},
{ href: "/team", text: "Our Team" }
].sort((a, b) => a.text.localeCompare(b.text));

View File

@ -41,7 +41,7 @@ export const Donate: {
} = {
icon: faMoneyBill,
link: "https://docs.nhcarrigan.com/#/donate",
label: "Support Our Work 💜",
label: "Donate 💜",
alt: "Money Icon",
color: "#003600",
background: `linear-gradient(

36
src/config/TeamMembers.ts Normal file
View File

@ -0,0 +1,36 @@
export const TeamMembers: {
name: string;
avatar: string;
role: string;
url: string;
joinDate: Date;
}[] = [
{
name: "Naomi Carrigan",
avatar: "naomi.png",
role: "Founder / CEO",
url: "https://chat.nhcarrigan.com",
joinDate: new Date("April 1, 2020")
},
{
name: "Denna",
avatar: "denna.png",
role: "Chief Financial Officer",
url: "https://denna.nhcarrigan.com",
joinDate: new Date("April 2, 2020")
},
{
name: "Tim",
avatar: "tim.png",
role: "Chief Technical Officer",
url: "https://chat.nhcarrigan.com",
joinDate: new Date("April 2, 2020")
},
{
name: "Anna",
avatar: "anna.png",
role: "Software Engineering Intern",
url: "https://chat.nhcarrigan.com",
joinDate: new Date("August 29, 2023")
}
]