diff --git a/public/images/logos/all-vote-no-play.png b/public/images/logos/all-vote-no-play.png deleted file mode 100644 index 6e11efb..0000000 Binary files a/public/images/logos/all-vote-no-play.png and /dev/null differ diff --git a/public/images/logos/the-team.png b/public/images/logos/the-team.png new file mode 100644 index 0000000..489149d Binary files /dev/null and b/public/images/logos/the-team.png differ diff --git a/public/images/logos/vet-vote.png b/public/images/logos/vet-vote.png new file mode 100644 index 0000000..5d0e8de Binary files /dev/null and b/public/images/logos/vet-vote.png differ diff --git a/public/images/logos/vote-riders.png b/public/images/logos/vote-riders.png new file mode 100644 index 0000000..f775eef Binary files /dev/null and b/public/images/logos/vote-riders.png differ diff --git a/src/components/page-partners/page-partners.tsx b/src/components/page-partners/page-partners.tsx index 05c1842..d321df4 100644 --- a/src/components/page-partners/page-partners.tsx +++ b/src/components/page-partners/page-partners.tsx @@ -6,11 +6,6 @@ const partners: { img: string; name: string; url: string }[] = [ name: "ACLU Georgia", url: "https://acluga.org/", }, - { - img: "all-vote-no-play.png", - name: "All Vote No Play", - url: "https://www.allvotenoplay.org/", - }, { img: "alliance-for-youth-organizing.png", name: "Alliance for Youth Organizing", @@ -221,6 +216,11 @@ const partners: { img: string; name: string; url: string }[] = [ name: "UnidosUS", url: "https://www.unidosus.org/", }, + { + img: "vet-the-vote.png", + name: "Vet the Vote", + url: "https://vetthe.vote/", + }, { img: "voces.jpg", name: "Voces", @@ -236,6 +236,11 @@ const partners: { img: string; name: string; url: string }[] = [ name: "Voters Not Politicians", url: "https://votersnotpoliticians.com/", }, + { + img: "vote-riders.png", + name: "Vote Riders", + url: "https://www.voteriders.org/", + }, { img: "when-we-all-vote.png", name: "When We All Vote", @@ -356,6 +361,11 @@ const partners: { img: string; name: string; url: string }[] = [ name: "The Salty", url: "https://www.saltydonut.com/", }, + { + img: "the-team.png", + name: "The Team", + url: "https://www.theteam.org/", + }, { img: "tonys-chocolonely.png", name: "Tony's Chocolonely", @@ -388,6 +398,9 @@ const partners: { img: string; name: string; url: string }[] = [ }, ]; +const nameSort = ({ name: aName }: { name: String }, { name: bName }: { name: String }) => + `${aName}`.toLowerCase().replace("the ", "") > `${bName}`.toLowerCase().replace("the ", "") ? 1 : -1; + @Component({ tag: "page-partners", styleUrl: "page-partners.scss", @@ -403,7 +416,7 @@ export class PagePartners {

Past and Present Partners