feat: add polycule view

This commit is contained in:
2024-08-24 21:29:13 -07:00
parent e12220441a
commit a137511c99
4 changed files with 111 additions and 1 deletions

View File

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

29
src/config/Partners.ts Normal file
View File

@ -0,0 +1,29 @@
export const Partners: {
name: string;
avatar: string;
relationship: string;
url: string;
anniversary: Date;
}[] = [
{
name: "Sadashi",
avatar: "dashi.png",
relationship: "Romantic Partner",
url: "https://chat.nhcarrigan.com",
anniversary: new Date("January 1, 2023")
},
{
name: "Rain",
avatar: "estel.png",
relationship: "Fiancée",
url: "https://chat.nhcarrigan.com",
anniversary: new Date("November 17, 2023")
},
{
name: "Kaitlyn",
avatar: "fruit.png",
relationship: "Queer-Platonic Partner",
url: "https://kaitlyn.nhcarrigan.com",
anniversary: new Date("October 1, 2023")
},
].sort((a, b) => a.anniversary.getTime() - b.anniversary.getTime())