├── .env ├── .gitattributes ├── .github ├── images │ └── use-this-template.png └── workflows │ ├── deploy-prod.yml │ ├── deploy-stage.yml │ ├── lighthouserc.json │ └── weekly-cleanup.yml ├── .gitignore ├── .prettierignore ├── LICENSE ├── README.md ├── gatsby-config.js ├── gatsby-node.js ├── package.json ├── src ├── @types │ └── assets.d.ts ├── assets │ ├── images │ │ └── .DS_Store │ ├── logo-gothamist.svg │ ├── logo.svg │ └── logo192.png ├── candidate-content.js ├── candidate-list.json ├── components │ ├── CandidatePage.tsx │ ├── CandidateSelectorMenu.tsx │ ├── Changelog.tsx │ ├── EmailMeMyResults.tsx │ ├── Illustration.tsx │ ├── IntroAnimation.tsx │ ├── Links.tsx │ ├── MatchingCandidates.tsx │ ├── Methodology.tsx │ ├── NewsletterSignup.tsx │ ├── PageLayout.tsx │ ├── Quiz.tsx │ ├── QuizContent.tsx │ ├── RecentCoverage.tsx │ ├── Results.tsx │ └── SocialShareButtons.tsx ├── pages │ └── index.tsx ├── question-content.js ├── scripts.js ├── styles │ ├── _colors.scss │ ├── _fonts.scss │ ├── app.scss │ └── defaults │ │ ├── _article.scss │ │ ├── _dataviz.scss │ │ └── _normalize.scss ├── useAppStore.ts └── utils.tsx ├── static ├── composites │ ├── adrienne-adams-social.jpg │ ├── andrew-cuomo-social.jpg │ ├── brad-lander-social.jpg │ ├── curtis-sliwa-social.jpg │ ├── eric-adams-social.jpg │ ├── jessica-ramos-social.jpg │ ├── jim-walden-social.jpg │ ├── michael-blake-social.jpg │ ├── scott-stringer-social.jpg │ ├── whitney-tilson-social.jpg │ ├── zellnor-myrie-social.jpg │ └── zohran-mamdani-social.jpg ├── favicon.ico ├── illustrations │ ├── adrienne-adams-body.png │ ├── adrienne-adams-head.png │ ├── andrew-cuomo-body.png │ ├── andrew-cuomo-head.png │ ├── brad-lander-body.png │ ├── brad-lander-head.png │ ├── curtis-sliwa-body.png │ ├── curtis-sliwa-head.png │ ├── eric-adams-body.png │ ├── eric-adams-head.png │ ├── jessica-ramos-body.png │ ├── jessica-ramos-head-back.png │ ├── jessica-ramos-head.png │ ├── jim-walden-body.png │ ├── jim-walden-head.png │ ├── michael-blake-body.png │ ├── michael-blake-head.png │ ├── scott-stringer-body.png │ ├── scott-stringer-head.png │ ├── whitney-tilson-body.png │ ├── whitney-tilson-head.png │ ├── zellnor-myrie-body.png │ ├── zellnor-myrie-head.png │ ├── zohran-mamdani-body.png │ └── zohran-mamdani-head.png ├── meet-your-mayor.jpg ├── photos │ ├── adrienne-adams-photo.jpg │ ├── andrew-cuomo-photo.jpg │ ├── brad-lander-photo.jpg │ ├── curtis-sliwa-photo.jpg │ ├── eric-adams-photo.jpg │ ├── jessica-ramos-photo.jpg │ ├── jim-walden-photo.jpg │ ├── michael-blake-photo.jpg │ ├── scott-stringer-photo.jpg │ ├── whitney-tilson-photo.jpg │ ├── zellnor-myrie-photo.jpg │ └── zohran-mamdani-photo.jpg └── social-image.jpg ├── tsconfig.json ├── tslint.json └── validate.mjs /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/.env -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/images/use-this-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/.github/images/use-this-template.png -------------------------------------------------------------------------------- /.github/workflows/deploy-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/.github/workflows/deploy-prod.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-stage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/.github/workflows/deploy-stage.yml -------------------------------------------------------------------------------- /.github/workflows/lighthouserc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/.github/workflows/lighthouserc.json -------------------------------------------------------------------------------- /.github/workflows/weekly-cleanup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/.github/workflows/weekly-cleanup.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/README.md -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/package.json -------------------------------------------------------------------------------- /src/@types/assets.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/src/@types/assets.d.ts -------------------------------------------------------------------------------- /src/assets/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/src/assets/images/.DS_Store -------------------------------------------------------------------------------- /src/assets/logo-gothamist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/src/assets/logo-gothamist.svg -------------------------------------------------------------------------------- /src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/src/assets/logo.svg -------------------------------------------------------------------------------- /src/assets/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/src/assets/logo192.png -------------------------------------------------------------------------------- /src/candidate-content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/src/candidate-content.js -------------------------------------------------------------------------------- /src/candidate-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/src/candidate-list.json -------------------------------------------------------------------------------- /src/components/CandidatePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/src/components/CandidatePage.tsx -------------------------------------------------------------------------------- /src/components/CandidateSelectorMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/src/components/CandidateSelectorMenu.tsx -------------------------------------------------------------------------------- /src/components/Changelog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/src/components/Changelog.tsx -------------------------------------------------------------------------------- /src/components/EmailMeMyResults.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/src/components/EmailMeMyResults.tsx -------------------------------------------------------------------------------- /src/components/Illustration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/src/components/Illustration.tsx -------------------------------------------------------------------------------- /src/components/IntroAnimation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/src/components/IntroAnimation.tsx -------------------------------------------------------------------------------- /src/components/Links.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/src/components/Links.tsx -------------------------------------------------------------------------------- /src/components/MatchingCandidates.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/src/components/MatchingCandidates.tsx -------------------------------------------------------------------------------- /src/components/Methodology.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/src/components/Methodology.tsx -------------------------------------------------------------------------------- /src/components/NewsletterSignup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/src/components/NewsletterSignup.tsx -------------------------------------------------------------------------------- /src/components/PageLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/src/components/PageLayout.tsx -------------------------------------------------------------------------------- /src/components/Quiz.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/src/components/Quiz.tsx -------------------------------------------------------------------------------- /src/components/QuizContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/src/components/QuizContent.tsx -------------------------------------------------------------------------------- /src/components/RecentCoverage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/src/components/RecentCoverage.tsx -------------------------------------------------------------------------------- /src/components/Results.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/src/components/Results.tsx -------------------------------------------------------------------------------- /src/components/SocialShareButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/src/components/SocialShareButtons.tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/question-content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/src/question-content.js -------------------------------------------------------------------------------- /src/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/src/scripts.js -------------------------------------------------------------------------------- /src/styles/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/src/styles/_colors.scss -------------------------------------------------------------------------------- /src/styles/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/src/styles/_fonts.scss -------------------------------------------------------------------------------- /src/styles/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/src/styles/app.scss -------------------------------------------------------------------------------- /src/styles/defaults/_article.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/src/styles/defaults/_article.scss -------------------------------------------------------------------------------- /src/styles/defaults/_dataviz.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/src/styles/defaults/_dataviz.scss -------------------------------------------------------------------------------- /src/styles/defaults/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/src/styles/defaults/_normalize.scss -------------------------------------------------------------------------------- /src/useAppStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/src/useAppStore.ts -------------------------------------------------------------------------------- /src/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/src/utils.tsx -------------------------------------------------------------------------------- /static/composites/adrienne-adams-social.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/composites/adrienne-adams-social.jpg -------------------------------------------------------------------------------- /static/composites/andrew-cuomo-social.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/composites/andrew-cuomo-social.jpg -------------------------------------------------------------------------------- /static/composites/brad-lander-social.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/composites/brad-lander-social.jpg -------------------------------------------------------------------------------- /static/composites/curtis-sliwa-social.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/composites/curtis-sliwa-social.jpg -------------------------------------------------------------------------------- /static/composites/eric-adams-social.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/composites/eric-adams-social.jpg -------------------------------------------------------------------------------- /static/composites/jessica-ramos-social.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/composites/jessica-ramos-social.jpg -------------------------------------------------------------------------------- /static/composites/jim-walden-social.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/composites/jim-walden-social.jpg -------------------------------------------------------------------------------- /static/composites/michael-blake-social.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/composites/michael-blake-social.jpg -------------------------------------------------------------------------------- /static/composites/scott-stringer-social.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/composites/scott-stringer-social.jpg -------------------------------------------------------------------------------- /static/composites/whitney-tilson-social.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/composites/whitney-tilson-social.jpg -------------------------------------------------------------------------------- /static/composites/zellnor-myrie-social.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/composites/zellnor-myrie-social.jpg -------------------------------------------------------------------------------- /static/composites/zohran-mamdani-social.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/composites/zohran-mamdani-social.jpg -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/illustrations/adrienne-adams-body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/illustrations/adrienne-adams-body.png -------------------------------------------------------------------------------- /static/illustrations/adrienne-adams-head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/illustrations/adrienne-adams-head.png -------------------------------------------------------------------------------- /static/illustrations/andrew-cuomo-body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/illustrations/andrew-cuomo-body.png -------------------------------------------------------------------------------- /static/illustrations/andrew-cuomo-head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/illustrations/andrew-cuomo-head.png -------------------------------------------------------------------------------- /static/illustrations/brad-lander-body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/illustrations/brad-lander-body.png -------------------------------------------------------------------------------- /static/illustrations/brad-lander-head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/illustrations/brad-lander-head.png -------------------------------------------------------------------------------- /static/illustrations/curtis-sliwa-body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/illustrations/curtis-sliwa-body.png -------------------------------------------------------------------------------- /static/illustrations/curtis-sliwa-head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/illustrations/curtis-sliwa-head.png -------------------------------------------------------------------------------- /static/illustrations/eric-adams-body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/illustrations/eric-adams-body.png -------------------------------------------------------------------------------- /static/illustrations/eric-adams-head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/illustrations/eric-adams-head.png -------------------------------------------------------------------------------- /static/illustrations/jessica-ramos-body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/illustrations/jessica-ramos-body.png -------------------------------------------------------------------------------- /static/illustrations/jessica-ramos-head-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/illustrations/jessica-ramos-head-back.png -------------------------------------------------------------------------------- /static/illustrations/jessica-ramos-head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/illustrations/jessica-ramos-head.png -------------------------------------------------------------------------------- /static/illustrations/jim-walden-body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/illustrations/jim-walden-body.png -------------------------------------------------------------------------------- /static/illustrations/jim-walden-head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/illustrations/jim-walden-head.png -------------------------------------------------------------------------------- /static/illustrations/michael-blake-body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/illustrations/michael-blake-body.png -------------------------------------------------------------------------------- /static/illustrations/michael-blake-head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/illustrations/michael-blake-head.png -------------------------------------------------------------------------------- /static/illustrations/scott-stringer-body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/illustrations/scott-stringer-body.png -------------------------------------------------------------------------------- /static/illustrations/scott-stringer-head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/illustrations/scott-stringer-head.png -------------------------------------------------------------------------------- /static/illustrations/whitney-tilson-body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/illustrations/whitney-tilson-body.png -------------------------------------------------------------------------------- /static/illustrations/whitney-tilson-head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/illustrations/whitney-tilson-head.png -------------------------------------------------------------------------------- /static/illustrations/zellnor-myrie-body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/illustrations/zellnor-myrie-body.png -------------------------------------------------------------------------------- /static/illustrations/zellnor-myrie-head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/illustrations/zellnor-myrie-head.png -------------------------------------------------------------------------------- /static/illustrations/zohran-mamdani-body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/illustrations/zohran-mamdani-body.png -------------------------------------------------------------------------------- /static/illustrations/zohran-mamdani-head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/illustrations/zohran-mamdani-head.png -------------------------------------------------------------------------------- /static/meet-your-mayor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/meet-your-mayor.jpg -------------------------------------------------------------------------------- /static/photos/adrienne-adams-photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/photos/adrienne-adams-photo.jpg -------------------------------------------------------------------------------- /static/photos/andrew-cuomo-photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/photos/andrew-cuomo-photo.jpg -------------------------------------------------------------------------------- /static/photos/brad-lander-photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/photos/brad-lander-photo.jpg -------------------------------------------------------------------------------- /static/photos/curtis-sliwa-photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/photos/curtis-sliwa-photo.jpg -------------------------------------------------------------------------------- /static/photos/eric-adams-photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/photos/eric-adams-photo.jpg -------------------------------------------------------------------------------- /static/photos/jessica-ramos-photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/photos/jessica-ramos-photo.jpg -------------------------------------------------------------------------------- /static/photos/jim-walden-photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/photos/jim-walden-photo.jpg -------------------------------------------------------------------------------- /static/photos/michael-blake-photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/photos/michael-blake-photo.jpg -------------------------------------------------------------------------------- /static/photos/scott-stringer-photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/photos/scott-stringer-photo.jpg -------------------------------------------------------------------------------- /static/photos/whitney-tilson-photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/photos/whitney-tilson-photo.jpg -------------------------------------------------------------------------------- /static/photos/zellnor-myrie-photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/photos/zellnor-myrie-photo.jpg -------------------------------------------------------------------------------- /static/photos/zohran-mamdani-photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/photos/zohran-mamdani-photo.jpg -------------------------------------------------------------------------------- /static/social-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/static/social-image.jpg -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/tslint.json -------------------------------------------------------------------------------- /validate.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecityny/2025-meet-your-mayor/HEAD/validate.mjs --------------------------------------------------------------------------------