├── .env.example ├── .eslintrc ├── .github └── workflows │ ├── github-pages.yml │ └── lint.yml ├── .gitignore ├── .prettierrc ├── .stylelintrc ├── Dockerfile.dev ├── LICENSE.txt ├── README.md ├── babel.config.js ├── compose.yml ├── config ├── dev.webpack.config.js └── prod.webpack.config.js ├── dist ├── .env.example ├── 404.html ├── Codidact_CIC_Statement_of_Cash_Flows_year_ending_11.30.21.pdf ├── assets │ ├── css │ │ ├── main.css │ │ └── main.css.map │ ├── img │ │ ├── 3rd-party │ │ │ ├── arrow.svg │ │ │ ├── community.svg │ │ │ ├── logo-discord-white.svg │ │ │ ├── logo-github-white.svg │ │ │ ├── logo-meta.svg │ │ │ ├── logo-wiki-white.svg │ │ │ ├── mailbox.svg │ │ │ └── searching.svg │ │ ├── brand-mark.svg │ │ ├── hero-bg.svg │ │ ├── logo-codidact-white.svg │ │ └── logo-codidact.svg │ └── js │ │ ├── main.js │ │ └── main.js.map ├── browserconfig.xml ├── donations.html ├── favicon.ico ├── icon.png ├── include │ ├── composer.json │ └── composer.lock ├── index.html ├── leadership.html ├── robots.txt ├── site.webmanifest ├── subscribe.php ├── tile-wide.png └── tile.png ├── package.json ├── postcss.config.js └── src ├── img ├── 3rd-party │ ├── logo-discord-white.svg │ ├── logo-discord.png │ ├── logo-discourse-white.svg │ ├── logo-discourse.png │ ├── logo-github-white.svg │ ├── logo-github.png │ ├── logo-wiki-white.svg │ └── logo-wiki.png ├── brand-mark.png ├── brand-mark.svg ├── logo-codidact-white.svg ├── logo-codidact.png ├── logo-codidact.svg └── logo-meta.png ├── js └── index.js └── styles ├── _colors.scss ├── _responsive.scss ├── _text.scss ├── _variables.scss ├── grid.scss ├── loader.scss ├── main.scss ├── normalize.scss ├── sections ├── community-first.scss ├── donors.scss ├── faq.scss ├── footer.scss ├── get-involved.scss ├── header.scss ├── hero.scss ├── mailing-list.scss ├── signup.scss └── what-is-codidact.scss └── typography.scss /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/github-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/.github/workflows/github-pages.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/.prettierrc -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/.stylelintrc -------------------------------------------------------------------------------- /Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/Dockerfile.dev -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/babel.config.js -------------------------------------------------------------------------------- /compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/compose.yml -------------------------------------------------------------------------------- /config/dev.webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/config/dev.webpack.config.js -------------------------------------------------------------------------------- /config/prod.webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/config/prod.webpack.config.js -------------------------------------------------------------------------------- /dist/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/dist/.env.example -------------------------------------------------------------------------------- /dist/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/dist/404.html -------------------------------------------------------------------------------- /dist/Codidact_CIC_Statement_of_Cash_Flows_year_ending_11.30.21.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/dist/Codidact_CIC_Statement_of_Cash_Flows_year_ending_11.30.21.pdf -------------------------------------------------------------------------------- /dist/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/dist/assets/css/main.css -------------------------------------------------------------------------------- /dist/assets/css/main.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/dist/assets/css/main.css.map -------------------------------------------------------------------------------- /dist/assets/img/3rd-party/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/dist/assets/img/3rd-party/arrow.svg -------------------------------------------------------------------------------- /dist/assets/img/3rd-party/community.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/dist/assets/img/3rd-party/community.svg -------------------------------------------------------------------------------- /dist/assets/img/3rd-party/logo-discord-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/dist/assets/img/3rd-party/logo-discord-white.svg -------------------------------------------------------------------------------- /dist/assets/img/3rd-party/logo-github-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/dist/assets/img/3rd-party/logo-github-white.svg -------------------------------------------------------------------------------- /dist/assets/img/3rd-party/logo-meta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/dist/assets/img/3rd-party/logo-meta.svg -------------------------------------------------------------------------------- /dist/assets/img/3rd-party/logo-wiki-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/dist/assets/img/3rd-party/logo-wiki-white.svg -------------------------------------------------------------------------------- /dist/assets/img/3rd-party/mailbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/dist/assets/img/3rd-party/mailbox.svg -------------------------------------------------------------------------------- /dist/assets/img/3rd-party/searching.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/dist/assets/img/3rd-party/searching.svg -------------------------------------------------------------------------------- /dist/assets/img/brand-mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/dist/assets/img/brand-mark.svg -------------------------------------------------------------------------------- /dist/assets/img/hero-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/dist/assets/img/hero-bg.svg -------------------------------------------------------------------------------- /dist/assets/img/logo-codidact-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/dist/assets/img/logo-codidact-white.svg -------------------------------------------------------------------------------- /dist/assets/img/logo-codidact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/dist/assets/img/logo-codidact.svg -------------------------------------------------------------------------------- /dist/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/dist/assets/js/main.js -------------------------------------------------------------------------------- /dist/assets/js/main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/dist/assets/js/main.js.map -------------------------------------------------------------------------------- /dist/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/dist/browserconfig.xml -------------------------------------------------------------------------------- /dist/donations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/dist/donations.html -------------------------------------------------------------------------------- /dist/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/dist/favicon.ico -------------------------------------------------------------------------------- /dist/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/dist/icon.png -------------------------------------------------------------------------------- /dist/include/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/dist/include/composer.json -------------------------------------------------------------------------------- /dist/include/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/dist/include/composer.lock -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/dist/index.html -------------------------------------------------------------------------------- /dist/leadership.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/dist/leadership.html -------------------------------------------------------------------------------- /dist/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/dist/robots.txt -------------------------------------------------------------------------------- /dist/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/dist/site.webmanifest -------------------------------------------------------------------------------- /dist/subscribe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/dist/subscribe.php -------------------------------------------------------------------------------- /dist/tile-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/dist/tile-wide.png -------------------------------------------------------------------------------- /dist/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/dist/tile.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: [require("cssnano")({})], 3 | }; 4 | -------------------------------------------------------------------------------- /src/img/3rd-party/logo-discord-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/src/img/3rd-party/logo-discord-white.svg -------------------------------------------------------------------------------- /src/img/3rd-party/logo-discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/src/img/3rd-party/logo-discord.png -------------------------------------------------------------------------------- /src/img/3rd-party/logo-discourse-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/src/img/3rd-party/logo-discourse-white.svg -------------------------------------------------------------------------------- /src/img/3rd-party/logo-discourse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/src/img/3rd-party/logo-discourse.png -------------------------------------------------------------------------------- /src/img/3rd-party/logo-github-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/src/img/3rd-party/logo-github-white.svg -------------------------------------------------------------------------------- /src/img/3rd-party/logo-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/src/img/3rd-party/logo-github.png -------------------------------------------------------------------------------- /src/img/3rd-party/logo-wiki-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/src/img/3rd-party/logo-wiki-white.svg -------------------------------------------------------------------------------- /src/img/3rd-party/logo-wiki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/src/img/3rd-party/logo-wiki.png -------------------------------------------------------------------------------- /src/img/brand-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/src/img/brand-mark.png -------------------------------------------------------------------------------- /src/img/brand-mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/src/img/brand-mark.svg -------------------------------------------------------------------------------- /src/img/logo-codidact-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/src/img/logo-codidact-white.svg -------------------------------------------------------------------------------- /src/img/logo-codidact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/src/img/logo-codidact.png -------------------------------------------------------------------------------- /src/img/logo-codidact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/src/img/logo-codidact.svg -------------------------------------------------------------------------------- /src/img/logo-meta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/src/img/logo-meta.png -------------------------------------------------------------------------------- /src/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/src/js/index.js -------------------------------------------------------------------------------- /src/styles/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/src/styles/_colors.scss -------------------------------------------------------------------------------- /src/styles/_responsive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/src/styles/_responsive.scss -------------------------------------------------------------------------------- /src/styles/_text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/src/styles/_text.scss -------------------------------------------------------------------------------- /src/styles/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/src/styles/_variables.scss -------------------------------------------------------------------------------- /src/styles/grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/src/styles/grid.scss -------------------------------------------------------------------------------- /src/styles/loader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/src/styles/loader.scss -------------------------------------------------------------------------------- /src/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/src/styles/main.scss -------------------------------------------------------------------------------- /src/styles/normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/src/styles/normalize.scss -------------------------------------------------------------------------------- /src/styles/sections/community-first.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/src/styles/sections/community-first.scss -------------------------------------------------------------------------------- /src/styles/sections/donors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/src/styles/sections/donors.scss -------------------------------------------------------------------------------- /src/styles/sections/faq.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/src/styles/sections/faq.scss -------------------------------------------------------------------------------- /src/styles/sections/footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/src/styles/sections/footer.scss -------------------------------------------------------------------------------- /src/styles/sections/get-involved.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/src/styles/sections/get-involved.scss -------------------------------------------------------------------------------- /src/styles/sections/header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/src/styles/sections/header.scss -------------------------------------------------------------------------------- /src/styles/sections/hero.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/src/styles/sections/hero.scss -------------------------------------------------------------------------------- /src/styles/sections/mailing-list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/src/styles/sections/mailing-list.scss -------------------------------------------------------------------------------- /src/styles/sections/signup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/src/styles/sections/signup.scss -------------------------------------------------------------------------------- /src/styles/sections/what-is-codidact.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/src/styles/sections/what-is-codidact.scss -------------------------------------------------------------------------------- /src/styles/typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codidact/landing-page/HEAD/src/styles/typography.scss --------------------------------------------------------------------------------