|
1 | 1 | import { s3 } from 'common/constants/urls'; |
2 | 2 | import sortBy from 'lodash/sortBy'; |
3 | 3 |
|
| 4 | +// Paid Sponsors |
| 5 | +import etsy from 'static/images/sponsors/etsy_logo.png'; |
| 6 | +import umpquaBank from 'static/images/sponsors/umpqua_bank_logo.png'; |
| 7 | +import juniperNetworks from 'static/images/sponsors/juniper_networks_logo.png'; |
| 8 | + |
| 9 | +// In Kind Sponsors |
| 10 | +import google from 'static/images/sponsors/google_logo.png'; |
| 11 | +import codePlatoon from 'static/images/sponsors/code_platoon_logo.png'; |
| 12 | +import uniteUs from 'static/images/sponsors/unite_us_logo.png'; |
| 13 | +import airbnb from 'static/images/sponsors/airbnb_logo.png'; |
| 14 | + |
4 | 15 | export const PARTNER_TYPES = { |
5 | 16 | PAID: 'PAID', |
6 | 17 | KIND: 'IN-KIND', |
@@ -97,6 +108,33 @@ const partners = [ |
97 | 108 | url: 'https://teamtreehouse.com/?utm_source=operationcode', |
98 | 109 | type: PARTNER_TYPES.KIND, |
99 | 110 | }, |
| 111 | + { name: 'Etsy', logoSource: etsy.src, url: 'https://etsy.com', type: PARTNER_TYPES.PAID }, |
| 112 | + { |
| 113 | + name: 'Umpqua Bank', |
| 114 | + logoSource: umpquaBank.src, |
| 115 | + url: 'https://www.umpquabank.com/', |
| 116 | + type: PARTNER_TYPES.PAID, |
| 117 | + }, |
| 118 | + { |
| 119 | + name: 'Juniper Networks', |
| 120 | + logoSource: juniperNetworks.src, |
| 121 | + url: 'https://www.juniper.net', |
| 122 | + type: PARTNER_TYPES.PAID, |
| 123 | + }, |
| 124 | + { name: 'Google', logoSource: google.src, url: 'https://google.com', type: PARTNER_TYPES.KIND }, |
| 125 | + { |
| 126 | + name: 'Code Platoon', |
| 127 | + logoSource: codePlatoon.src, |
| 128 | + url: 'https://www.codeplatoon.org', |
| 129 | + type: PARTNER_TYPES.KIND, |
| 130 | + }, |
| 131 | + { |
| 132 | + name: 'Unite Us', |
| 133 | + logoSource: uniteUs.src, |
| 134 | + url: 'https://uniteus.com', |
| 135 | + type: PARTNER_TYPES.KIND, |
| 136 | + }, |
| 137 | + { name: 'Airbnb', logoSource: airbnb.src, url: 'https://airbnb.com', type: PARTNER_TYPES.KIND }, |
100 | 138 | ]; |
101 | 139 |
|
102 | 140 | export default sortBy(partners, 'name'); |
0 commit comments