generated from nhcarrigan/template
feat: add team page
This commit is contained in:
@ -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));
|
||||
|
@ -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
36
src/config/TeamMembers.ts
Normal 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")
|
||||
}
|
||||
]
|
Reference in New Issue
Block a user