Skip to content

Commit

Permalink
feat(data): add arkansas and arizona (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
PaleBluDot authored Feb 15, 2024
1 parent 89f6d03 commit f79dd9e
Show file tree
Hide file tree
Showing 3 changed files with 165 additions and 1 deletion.
80 changes: 80 additions & 0 deletions src/_data/affiliations/ar.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
const data = {
address_1: "904 West 2nd Street",
address_2: "Little Rock, AR 72201",
affiliate_name: "ACLU of Arkansas",
donation_href: "https://action.aclu.org/give/arkansas-join-renew-today?initms_aff=ar&initms_chan=eml&utm_medium=eml&initms=22XXXX_affcampaign_footerdonate_gradead_sail&utm_source=sail&utm_campaign=affcampaign&utm_content=22XXXX_civilliberties_footerdonate_gradead&af={sb_query_string_encrypted}&ms_aff=ar&ms_chan=eml&ms=22XXXX_affcampaign_footerdonate_gradead_sail",
facebook_href: "https://www.facebook.com/ACLUArkansas",
instagram_href: "https://www.instagram.com/acluofarkansas/",
logo_url: "https://media.sailthru.com/64d/1k8/2/9/65c67d6786f7c.png",
logo_width: "200",
twitter_href: "https://twitter.com/ArkansasACLU",
website: "https://www.acluarkansas.org",
signatures: [
{
ed: {
title: "Executive Director",
name: "Holly Dickson",
pronouns: "She, her, hers",
headshot: "https://media.sailthru.com/64d/1k3/b/8/5dc58b034237f.jpg",
},
},
{
advo: {
title: "Advocacy Director",
name: "",
pronouns: "",
headshot: "",
},
},
{
comms: {
title: "Chief Communications Officer",
name: "",
pronouns: "",
headshot: "",
},
},
{
dev: {
title: "Director of Development",
name: "",
pronouns: "",
headshot: "",
},
},
{
legal: {
title: "Legal Director",
name: "Holly Dickson",
pronouns: "She, her, hers",
headshot: "https://media.sailthru.com/64d/1k3/b/8/5dc58b034237f.jpg",
},
},
{
custom1: {
title: "",
name: "",
pronouns: "",
headshot: "",
},
},
{
custom2: {
title: "",
name: "",
pronouns: "",
headshot: "",
},
},
{
custom3: {
title: "",
name: "",
pronouns: "",
headshot: "",
},
},
],
};

module.exports = data;
80 changes: 80 additions & 0 deletions src/_data/affiliations/az.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
const data = {
address_1: "P.O. Box 17148",
address_2: "Phoenix, AZ 85011",
affiliate_name: "ACLU of Arizona",
donation_href: "https://action.aclu.org/give/arizona-join-renew-today?initms_aff=az&initms_chan=eml&utm_medium=eml&initms=22XXXX_affcampaign_footerdonate_gradead_sail&utm_source=sail&utm_campaign=affcampaign&utm_content=22XXXX_civilliberties_footerdonate_gradead&af={sb_query_string_encrypted}&ms_aff=az&ms_chan=eml&ms=22XXXX_affcampaign_footerdonate_gradead_sail",
facebook_href: "https://www.facebook.com/ACLUofArizona",
instagram_href: "https://www.instagram.com/acluofarizona",
logo_url: "https://media.sailthru.com/64d/1k4/4/d/5e947c15c5459.png",
logo_width: "150",
twitter_href: "https://twitter.com/ACLUaz",
website: "https://www.acluaz.org",
signatures: [
{
ed: {
title: "Executive Director",
name: "",
pronouns: "",
headshot: "",
},
},
{
advo: {
title: "Advocacy & Legal Director",
name: "Victoria López",
pronouns: "",
headshot: "https://media.sailthru.com/64d/1k4/4/s/5ea8782bea764.jpg",
},
},
{
comms: {
title: "Communications Director",
name: "Marcela Taracena",
pronouns: "",
headshot: "https://media.sailthru.com/64d/1k4/4/s/5ea8782636b5f.jpg",
},
},
{
dev: {
title: "Director of Development",
name: "Logan Marshall",
pronouns: "",
headshot: "",
},
},
{
legal: {
title: "",
name: "",
pronouns: "",
headshot: "",
},
},
{
custom1: {
title: "Policy Director",
name: "Darrell Hill",
pronouns: "",
headshot: "https://media.sailthru.com/64d/1k4/4/s/5ea8783354f37.png",
},
},
{
custom2: {
title: "",
name: "",
pronouns: "",
headshot: "",
},
},
{
custom3: {
title: "",
name: "",
pronouns: "",
headshot: "",
},
},
],
};

module.exports = data;
6 changes: 5 additions & 1 deletion src/utils/dataLoader.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,16 @@ const path = require("path");
const nat = require("../_data/affiliations/nat");
const ak = require("../_data/affiliations/ak");
const al = require("../_data/affiliations/al");
const ar = require("../_data/affiliations/ar");
const az = require("../_data/affiliations/az");
const dc = require("../_data/affiliations/dc");
const variables = require("./variables");

const combinedData = {
al,
ak,
al,
ar,
az,
dc,
nat,
};
Expand Down

0 comments on commit f79dd9e

Please sign in to comment.