{{ $t('program.sections.first.title') }}
8 |{{ $t('program.sections.first.description') }}
9 |├── netlify.toml
├── locales
├── index.js
└── en.js
├── assets
├── styles
│ ├── main.scss
│ ├── _global.scss
│ └── _variables.scss
└── README.md
├── .prettierrc
├── static
├── icon.png
├── favicon.ico
├── favicon-16x16.png
├── favicon-32x32.png
├── mstile-150x150.png
├── apple-touch-icon.png
├── softwaredonation.png
├── android-chrome-192x192.png
├── android-chrome-512x512.png
├── images
│ ├── program
│ │ ├── student1.jpg
│ │ └── student2.jpg
│ ├── softwares
│ │ ├── icon.png
│ │ ├── box-logo.png
│ │ ├── adobe-logo.png
│ │ ├── alugha-logo.png
│ │ ├── hiver-logo.png
│ │ ├── krisp-logo.png
│ │ ├── loom-logo.png
│ │ ├── meet-logo.png
│ │ ├── miro-logo.png
│ │ ├── pr-co-logo.png
│ │ ├── sanako-logo.png
│ │ ├── screen-logo.png
│ │ ├── slack-logo.png
│ │ ├── tandem-logo.png
│ │ ├── teams-logo.png
│ │ ├── udemy-logo.png
│ │ ├── zapier-logo.png
│ │ ├── zoom-logo.png
│ │ ├── airtable-logo.png
│ │ ├── aws-ddi-logo.png
│ │ ├── discord-logo.png
│ │ ├── dropbox-logo.png
│ │ ├── intercom-logo.png
│ │ ├── logmein-logo.png
│ │ ├── packback-logo.png
│ │ ├── remotehq-logo.png
│ │ ├── sanako-logo.jpeg
│ │ ├── typeform-logo.png
│ │ ├── webflow-logo.png
│ │ ├── atlassian-logo.png
│ │ ├── bluejeans-logo.png
│ │ ├── cisco-webex-logo.png
│ │ ├── cloudflare-logo.png
│ │ ├── codeacademy-logo.png
│ │ ├── datarobot-logo.png
│ │ ├── designmodo-logo.png
│ │ ├── headspace-logo.png
│ │ ├── heysummit-logo.png
│ │ ├── liveagent-logo.png
│ │ ├── livestorm-logo.png
│ │ ├── messagebird-logo.png
│ │ ├── openphone-logo.png
│ │ ├── pluralsight-logo.png
│ │ ├── amazon-chime-logo.png
│ │ ├── code-academy-logo.jpg
│ │ ├── manageengine-logo.png
│ │ ├── message-bird-logo.png
│ │ ├── rise-science-logo.png
│ │ ├── zoho-remotely-logo.png
│ │ └── nvidia-parabricks-logo.png
│ └── background.svg
├── browserconfig.xml
├── admin
│ ├── index.html
│ └── config.yml
├── README.md
└── safari-pinned-tab.svg
├── plugins
├── vue2-scrollspy.js
├── vue2-smooth-scroll.js
└── README.md
├── stylelint.config.js
├── services
├── getCauses.js
├── getCauseName.js
└── getCategoriesAndSoftwares.js
├── components
├── README.md
├── BaseContainer.vue
├── AboutHeader.vue
├── HomeHeader.vue
├── ProgramHeader.vue
├── SoftwaresListEmpty.vue
├── DonationBanner.vue
├── SoftwaresCategoriesNavigation.vue
├── TheFooter.vue
├── TheNewsletter.vue
├── SoftwaresListItem.vue
├── TheNavbar.vue
├── BaseButton.vue
├── SoftwaresList.vue
└── TheLogo.vue
├── jsconfig.json
├── .editorconfig
├── layouts
├── README.md
└── default.vue
├── pages
├── README.md
├── index.vue
├── _cause
│ └── index.vue
├── about.vue
└── program.vue
├── middleware
└── README.md
├── data
├── causes
│ ├── health-and-wellness.json
│ ├── research.json
│ ├── study-remotely.json
│ ├── empower-businesses.json
│ └── work-remotely.json
├── causes.json
└── softwares.json
├── store
└── README.md
├── .eslintrc.js
├── config
└── index.js
├── mixins
└── causesAndCategories.js
├── README.md
├── scripts
└── getLogos.js
├── .gitignore
├── package.json
├── nuxt.config.js
└── LICENSE
/netlify.toml:
--------------------------------------------------------------------------------
1 | [build]
2 | publish = "dist"
3 | command = "npm run generate"
4 |
--------------------------------------------------------------------------------
/locales/index.js:
--------------------------------------------------------------------------------
1 | const en = require('./en.js')
2 |
3 | module.exports = {
4 | en
5 | }
6 |
--------------------------------------------------------------------------------
/assets/styles/main.scss:
--------------------------------------------------------------------------------
1 | @import 'normalize.css';
2 | @import 'variables';
3 | @import 'global';
--------------------------------------------------------------------------------
/.prettierrc:
--------------------------------------------------------------------------------
1 | {
2 | "semi": false,
3 | "arrowParens": "always",
4 | "singleQuote": true
5 | }
6 |
--------------------------------------------------------------------------------
/static/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/icon.png
--------------------------------------------------------------------------------
/static/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/favicon.ico
--------------------------------------------------------------------------------
/static/favicon-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/favicon-16x16.png
--------------------------------------------------------------------------------
/static/favicon-32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/favicon-32x32.png
--------------------------------------------------------------------------------
/static/mstile-150x150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/mstile-150x150.png
--------------------------------------------------------------------------------
/static/apple-touch-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/apple-touch-icon.png
--------------------------------------------------------------------------------
/static/softwaredonation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/softwaredonation.png
--------------------------------------------------------------------------------
/static/android-chrome-192x192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/android-chrome-192x192.png
--------------------------------------------------------------------------------
/static/android-chrome-512x512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/android-chrome-512x512.png
--------------------------------------------------------------------------------
/static/images/program/student1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/program/student1.jpg
--------------------------------------------------------------------------------
/static/images/program/student2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/program/student2.jpg
--------------------------------------------------------------------------------
/static/images/softwares/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/icon.png
--------------------------------------------------------------------------------
/plugins/vue2-scrollspy.js:
--------------------------------------------------------------------------------
1 | import Vue from 'vue'
2 | import Scrollspy from 'vue2-scrollspy'
3 |
4 | Vue.use(Scrollspy, { offset: 180 })
5 |
--------------------------------------------------------------------------------
/plugins/vue2-smooth-scroll.js:
--------------------------------------------------------------------------------
1 | import Vue from 'vue'
2 | import vueSmoothScroll from 'vue2-smooth-scroll'
3 |
4 | Vue.use(vueSmoothScroll)
5 |
--------------------------------------------------------------------------------
/static/images/softwares/box-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/box-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/adobe-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/adobe-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/alugha-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/alugha-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/hiver-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/hiver-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/krisp-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/krisp-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/loom-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/loom-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/meet-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/meet-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/miro-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/miro-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/pr-co-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/pr-co-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/sanako-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/sanako-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/screen-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/screen-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/slack-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/slack-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/tandem-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/tandem-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/teams-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/teams-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/udemy-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/udemy-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/zapier-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/zapier-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/zoom-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/zoom-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/airtable-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/airtable-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/aws-ddi-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/aws-ddi-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/discord-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/discord-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/dropbox-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/dropbox-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/intercom-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/intercom-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/logmein-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/logmein-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/packback-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/packback-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/remotehq-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/remotehq-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/sanako-logo.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/sanako-logo.jpeg
--------------------------------------------------------------------------------
/static/images/softwares/typeform-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/typeform-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/webflow-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/webflow-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/atlassian-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/atlassian-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/bluejeans-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/bluejeans-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/cisco-webex-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/cisco-webex-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/cloudflare-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/cloudflare-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/codeacademy-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/codeacademy-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/datarobot-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/datarobot-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/designmodo-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/designmodo-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/headspace-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/headspace-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/heysummit-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/heysummit-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/liveagent-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/liveagent-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/livestorm-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/livestorm-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/messagebird-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/messagebird-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/openphone-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/openphone-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/pluralsight-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/pluralsight-logo.png
--------------------------------------------------------------------------------
/stylelint.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | // add your custom config here
3 | // https://stylelint.io/user-guide/configuration
4 | rules: {}
5 | }
6 |
--------------------------------------------------------------------------------
/static/images/softwares/amazon-chime-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/amazon-chime-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/code-academy-logo.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/code-academy-logo.jpg
--------------------------------------------------------------------------------
/static/images/softwares/manageengine-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/manageengine-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/message-bird-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/message-bird-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/rise-science-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/rise-science-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/zoho-remotely-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/zoho-remotely-logo.png
--------------------------------------------------------------------------------
/static/images/softwares/nvidia-parabricks-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SoftwareDonation/software-donation/HEAD/static/images/softwares/nvidia-parabricks-logo.png
--------------------------------------------------------------------------------
/services/getCauses.js:
--------------------------------------------------------------------------------
1 | import causesData from '../data/causes.json'
2 |
3 | const getCauses = () => {
4 | return causesData.causes
5 | }
6 |
7 | export default getCauses
8 |
--------------------------------------------------------------------------------
/components/README.md:
--------------------------------------------------------------------------------
1 | # COMPONENTS
2 |
3 | **This directory is not required, you can delete it if you don't want to use it.**
4 |
5 | The components directory contains your Vue.js Components.
6 |
7 | _Nuxt.js doesn't supercharge these components._
8 |
--------------------------------------------------------------------------------
/services/getCauseName.js:
--------------------------------------------------------------------------------
1 | import causesData from '../data/causes.json'
2 |
3 | const getCauseName = (causeId) => {
4 | return causesData.causes.filter((item) => {
5 | return item.id === causeId
6 | })[0].name
7 | }
8 |
9 | export default getCauseName
10 |
--------------------------------------------------------------------------------
/jsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "baseUrl": ".",
4 | "paths": {
5 | "~/*": ["./*"],
6 | "@/*": ["./*"],
7 | "~~/*": ["./*"],
8 | "@@/*": ["./*"]
9 | }
10 | },
11 | "exclude": ["node_modules", ".nuxt", "dist"]
12 | }
13 |
--------------------------------------------------------------------------------
/.editorconfig:
--------------------------------------------------------------------------------
1 | # editorconfig.org
2 | root = true
3 |
4 | [*]
5 | indent_style = space
6 | indent_size = 2
7 | end_of_line = lf
8 | charset = utf-8
9 | trim_trailing_whitespace = true
10 | insert_final_newline = true
11 |
12 | [*.md]
13 | trim_trailing_whitespace = false
14 |
--------------------------------------------------------------------------------
/layouts/README.md:
--------------------------------------------------------------------------------
1 | # LAYOUTS
2 |
3 | **This directory is not required, you can delete it if you don't want to use it.**
4 |
5 | This directory contains your Application Layouts.
6 |
7 | More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/views#layouts).
8 |
--------------------------------------------------------------------------------
/static/browserconfig.xml:
--------------------------------------------------------------------------------
1 |
2 |
{{ $t('home.hero.description') }}
6 |6 | {{ $t('program.hero.description') }} 7 |
8 |10 | {{ $t('empty_list.newsletter') }} 11 |
12 |17 | {{ $t('empty_list.donate') }} 18 |
19 |{{ description }}
27 |{{ eligibility }}
28 |{{ $t('program.sections.first.description') }}
9 |{{ $t('program.sections.second.description') }}
22 |