├── README.md ├── public ├── favicon.ico ├── assets │ ├── favicon │ │ ├── apple-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon-96x96.png │ │ ├── ms-icon-70x70.png │ │ ├── ms-icon-144x144.png │ │ ├── ms-icon-150x150.png │ │ ├── ms-icon-310x310.png │ │ ├── android-icon-36x36.png │ │ ├── android-icon-48x48.png │ │ ├── android-icon-72x72.png │ │ ├── android-icon-96x96.png │ │ ├── apple-icon-114x114.png │ │ ├── apple-icon-120x120.png │ │ ├── apple-icon-144x144.png │ │ ├── apple-icon-152x152.png │ │ ├── apple-icon-180x180.png │ │ ├── apple-icon-57x57.png │ │ ├── apple-icon-60x60.png │ │ ├── apple-icon-72x72.png │ │ ├── apple-icon-76x76.png │ │ ├── android-icon-144x144.png │ │ ├── android-icon-192x192.png │ │ ├── apple-icon-precomposed.png │ │ └── manifest.json │ ├── facebook_icon.svg │ ├── Icon_code.svg │ ├── Icon_money.svg │ ├── Icon_girls.svg │ ├── Eyecatcher.svg │ ├── Illustration_2.svg │ ├── Illustration_4.svg │ ├── Illustration_1.svg │ ├── Illustration_3.svg │ ├── Logo_silver.svg │ └── Logo_color.svg ├── main.js ├── main.css └── index.html ├── package.json ├── LICENSE └── .gitignore /README.md: -------------------------------------------------------------------------------- 1 | # noodles-landing 2 | Landing page for noodles.digital 3 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progressbar/noodles-landing/master/public/favicon.ico -------------------------------------------------------------------------------- /public/assets/favicon/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progressbar/noodles-landing/master/public/assets/favicon/apple-icon.png -------------------------------------------------------------------------------- /public/assets/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progressbar/noodles-landing/master/public/assets/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /public/assets/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progressbar/noodles-landing/master/public/assets/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /public/assets/favicon/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progressbar/noodles-landing/master/public/assets/favicon/favicon-96x96.png -------------------------------------------------------------------------------- /public/assets/favicon/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progressbar/noodles-landing/master/public/assets/favicon/ms-icon-70x70.png -------------------------------------------------------------------------------- /public/assets/favicon/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progressbar/noodles-landing/master/public/assets/favicon/ms-icon-144x144.png -------------------------------------------------------------------------------- /public/assets/favicon/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progressbar/noodles-landing/master/public/assets/favicon/ms-icon-150x150.png -------------------------------------------------------------------------------- /public/assets/favicon/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progressbar/noodles-landing/master/public/assets/favicon/ms-icon-310x310.png -------------------------------------------------------------------------------- /public/assets/favicon/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progressbar/noodles-landing/master/public/assets/favicon/android-icon-36x36.png -------------------------------------------------------------------------------- /public/assets/favicon/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progressbar/noodles-landing/master/public/assets/favicon/android-icon-48x48.png -------------------------------------------------------------------------------- /public/assets/favicon/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progressbar/noodles-landing/master/public/assets/favicon/android-icon-72x72.png -------------------------------------------------------------------------------- /public/assets/favicon/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progressbar/noodles-landing/master/public/assets/favicon/android-icon-96x96.png -------------------------------------------------------------------------------- /public/assets/favicon/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progressbar/noodles-landing/master/public/assets/favicon/apple-icon-114x114.png -------------------------------------------------------------------------------- /public/assets/favicon/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progressbar/noodles-landing/master/public/assets/favicon/apple-icon-120x120.png -------------------------------------------------------------------------------- /public/assets/favicon/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progressbar/noodles-landing/master/public/assets/favicon/apple-icon-144x144.png -------------------------------------------------------------------------------- /public/assets/favicon/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progressbar/noodles-landing/master/public/assets/favicon/apple-icon-152x152.png -------------------------------------------------------------------------------- /public/assets/favicon/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progressbar/noodles-landing/master/public/assets/favicon/apple-icon-180x180.png -------------------------------------------------------------------------------- /public/assets/favicon/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progressbar/noodles-landing/master/public/assets/favicon/apple-icon-57x57.png -------------------------------------------------------------------------------- /public/assets/favicon/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progressbar/noodles-landing/master/public/assets/favicon/apple-icon-60x60.png -------------------------------------------------------------------------------- /public/assets/favicon/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progressbar/noodles-landing/master/public/assets/favicon/apple-icon-72x72.png -------------------------------------------------------------------------------- /public/assets/favicon/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progressbar/noodles-landing/master/public/assets/favicon/apple-icon-76x76.png -------------------------------------------------------------------------------- /public/assets/favicon/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progressbar/noodles-landing/master/public/assets/favicon/android-icon-144x144.png -------------------------------------------------------------------------------- /public/assets/favicon/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progressbar/noodles-landing/master/public/assets/favicon/android-icon-192x192.png -------------------------------------------------------------------------------- /public/assets/favicon/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progressbar/noodles-landing/master/public/assets/favicon/apple-icon-precomposed.png -------------------------------------------------------------------------------- /public/assets/facebook_icon.svg: -------------------------------------------------------------------------------- 1 | facebook_icon -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "noodles-landing", 3 | "version": "1.0.0", 4 | "description": "Landing page for noodles.digital", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/Progressbar/noodles-landing.git" 12 | }, 13 | "author": "", 14 | "license": "ISC", 15 | "bugs": { 16 | "url": "https://github.com/Progressbar/noodles-landing/issues" 17 | }, 18 | "homepage": "https://github.com/Progressbar/noodles-landing#readme" 19 | } 20 | -------------------------------------------------------------------------------- /public/main.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | var scrollToLinks = document.querySelectorAll('a[data-scrollto]') 3 | var isSafari = window.safari !== undefined; 4 | 5 | function scrollTo(elementId) { 6 | var options = { 7 | block: 'start', 8 | behavior: 'smooth' 9 | } 10 | 11 | var element = document.getElementById(elementId) 12 | 13 | if (!element) return 14 | 15 | element.scrollIntoView(options) 16 | } 17 | 18 | scrollToLinks.forEach(function (link) { 19 | link.addEventListener('click', function () { 20 | if (link.dataset && link.dataset.scrollto) { 21 | scrollTo(link.dataset.scrollto) 22 | } 23 | }) 24 | }) 25 | })() 26 | -------------------------------------------------------------------------------- /public/assets/favicon/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "App", 3 | "icons": [ 4 | { 5 | "src": "\/android-icon-36x36.png", 6 | "sizes": "36x36", 7 | "type": "image\/png", 8 | "density": "0.75" 9 | }, 10 | { 11 | "src": "\/android-icon-48x48.png", 12 | "sizes": "48x48", 13 | "type": "image\/png", 14 | "density": "1.0" 15 | }, 16 | { 17 | "src": "\/android-icon-72x72.png", 18 | "sizes": "72x72", 19 | "type": "image\/png", 20 | "density": "1.5" 21 | }, 22 | { 23 | "src": "\/android-icon-96x96.png", 24 | "sizes": "96x96", 25 | "type": "image\/png", 26 | "density": "2.0" 27 | }, 28 | { 29 | "src": "\/android-icon-144x144.png", 30 | "sizes": "144x144", 31 | "type": "image\/png", 32 | "density": "3.0" 33 | }, 34 | { 35 | "src": "\/android-icon-192x192.png", 36 | "sizes": "192x192", 37 | "type": "image\/png", 38 | "density": "4.0" 39 | } 40 | ] 41 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 ProgressBar HackerSpace 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Runtime data 9 | pids 10 | *.pid 11 | *.seed 12 | *.pid.lock 13 | 14 | # Directory for instrumented libs generated by jscoverage/JSCover 15 | lib-cov 16 | 17 | # Coverage directory used by tools like istanbul 18 | coverage 19 | 20 | # nyc test coverage 21 | .nyc_output 22 | 23 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 24 | .grunt 25 | 26 | # Bower dependency directory (https://bower.io/) 27 | bower_components 28 | 29 | # node-waf configuration 30 | .lock-wscript 31 | 32 | # Compiled binary addons (https://nodejs.org/api/addons.html) 33 | build/Release 34 | 35 | # Dependency directories 36 | node_modules/ 37 | jspm_packages/ 38 | 39 | # TypeScript v1 declaration files 40 | typings/ 41 | 42 | # Optional npm cache directory 43 | .npm 44 | 45 | # Optional eslint cache 46 | .eslintcache 47 | 48 | # Optional REPL history 49 | .node_repl_history 50 | 51 | # Output of 'npm pack' 52 | *.tgz 53 | 54 | # Yarn Integrity file 55 | .yarn-integrity 56 | 57 | # dotenv environment variables file 58 | .env 59 | 60 | # next.js build output 61 | .next 62 | -------------------------------------------------------------------------------- /public/assets/Icon_code.svg: -------------------------------------------------------------------------------- 1 | Icon_code -------------------------------------------------------------------------------- /public/assets/Icon_money.svg: -------------------------------------------------------------------------------- 1 | Icon_money -------------------------------------------------------------------------------- /public/assets/Icon_girls.svg: -------------------------------------------------------------------------------- 1 | Icon_girls -------------------------------------------------------------------------------- /public/main.css: -------------------------------------------------------------------------------- 1 | :root { 2 | --main-bg-color: #f5f5f5; 3 | --main-border-color: #b4b6b7; 4 | --main-red-color: #ff5a5a; 5 | --main-blue-color: #00aced; 6 | --main-font-color: #53585a; 7 | --main-footer-color: #202535; 8 | --main-footer-font-color: #b4c3cb; 9 | --main-grayed-bg-color: #eeeff0; 10 | --mail-input-radius-size: 25px; 11 | } 12 | 13 | html, 14 | body { 15 | margin: 0; 16 | font-family: "Poppins", sans-serif; 17 | color: var(--main-font-color); 18 | font-size: 16px; 19 | } 20 | 21 | h1 { 22 | font-weight: 800; 23 | font-size: 2rem; 24 | } 25 | 26 | h1 strong { 27 | color: var(--main-red-color); 28 | } 29 | 30 | h2 { 31 | font-weight: 800; 32 | font-size: 1.8rem; 33 | } 34 | 35 | p { 36 | font-weight: 400; 37 | } 38 | 39 | h3 { 40 | font-weight: 600; 41 | font-size: 1.3rem; 42 | margin: 15px 0; 43 | } 44 | 45 | h4 { 46 | font-size: 1em; 47 | line-height: 1.6rem; 48 | font-weight: 600; 49 | } 50 | 51 | h4 strong { 52 | color: var(--main-red-color); 53 | } 54 | 55 | h5 { 56 | font-weight: 600; 57 | margin: 0; 58 | font-size: 0.9rem; 59 | line-height: 1.5; 60 | } 61 | 62 | p { 63 | font-size: 0.9rem; 64 | margin: 20px 0; 65 | } 66 | 67 | header { 68 | padding: 20px 0; 69 | border-bottom: 1px solid var(--main-border-color); 70 | } 71 | 72 | header img { 73 | width: 200px; 74 | height: 100%; 75 | } 76 | 77 | nav a { 78 | padding: 0 10px; 79 | color: inherit; 80 | font-size: 1rem; 81 | font-weight: 600; 82 | } 83 | 84 | nav a:hover { 85 | cursor: pointer; 86 | } 87 | 88 | figure img { 89 | width: 80%; 90 | } 91 | 92 | @media (max-width: 575.98px) { 93 | figure img { 94 | width: 100%; 95 | } 96 | } 97 | 98 | form { 99 | margin-top: 30px; 100 | } 101 | 102 | footer { 103 | background-color: var(--main-footer-color); 104 | color: var(--main-footer-font-color); 105 | } 106 | 107 | footer img { 108 | width: 50%; 109 | } 110 | 111 | @media (max-width: 768px) { 112 | footer img.footer-icon { 113 | width: 30px; 114 | } 115 | 116 | footer img.footer-logo { 117 | width: 80%; 118 | } 119 | } 120 | 121 | .feature img { 122 | width: 40%; 123 | } 124 | 125 | .footer-icon { 126 | width: 40px; 127 | } 128 | 129 | .container--gray { 130 | background-color: var(--main-bg-color); 131 | } 132 | 133 | .container--grayed { 134 | background-color: var(--main-grayed-bg-color); 135 | } 136 | 137 | .container--spaced { 138 | padding: 120px 0; 139 | } 140 | 141 | @media (max-width: 575.98px) { 142 | .container--spaced { 143 | padding: 100px 0; 144 | } 145 | } 146 | 147 | .mail-input { 148 | width: 100%; 149 | display: flex; 150 | background: white; 151 | border-radius: var(--mail-input-radius-size); 152 | margin-top: 20px; 153 | } 154 | 155 | .mail-input__input { 156 | display: flex; 157 | border: none; 158 | outline: none; 159 | padding: 0 0 0 25px; 160 | flex-grow: 1; 161 | border-top-left-radius: var(--mail-input-radius-size); 162 | border-bottom-left-radius: var(--mail-input-radius-size); 163 | } 164 | 165 | .mail-input__button { 166 | height: 100%; 167 | width: 160px; 168 | border-radius: var(--mail-input-radius-size); 169 | display: flex; 170 | border: none; 171 | outline: none; 172 | background-color: var(--main-red-color); 173 | color: white; 174 | font-weight: 600; 175 | text-transform: uppercase; 176 | font-size: 0.9rem; 177 | padding: 15px 30px; 178 | cursor: pointer; 179 | } 180 | 181 | @media (max-width: 575.98px) { 182 | .mail-input__input { 183 | width: 50%; 184 | } 185 | .mail-input__button { 186 | padding: 15px 0; 187 | width: 40%; 188 | font-size: 0.8rem; 189 | text-align: center; 190 | display: block; 191 | } 192 | } 193 | 194 | .mail-input__button:focus { 195 | outline: none; 196 | } 197 | 198 | .form-input, 199 | .form-textarea { 200 | border-radius: var(--mail-input-radius-size); 201 | padding: 12px 18px; 202 | border: none; 203 | width: 100%; 204 | } 205 | 206 | .form-input:focus, 207 | .form-textarea:focus { 208 | outline: none; 209 | } 210 | 211 | .form-button { 212 | border-radius: var(--mail-input-radius-size); 213 | border: none; 214 | outline: none; 215 | background-color: var(--main-blue-color); 216 | color: white!important; 217 | font-weight: 600; 218 | text-transform: uppercase; 219 | font-size: 0.9rem; 220 | padding: 15px 30px; 221 | cursor: pointer; 222 | } 223 | 224 | .footer-link { 225 | color: var(--main-blue-color); 226 | } 227 | 228 | .eyecatcher-wrapper { 229 | position: relative; 230 | } 231 | 232 | .eyecatcher { 233 | display: inline-block; 234 | position: absolute; 235 | width: 200px; 236 | max-width: 200px; 237 | min-width: 200px; 238 | z-index: 1; 239 | top: -170px; 240 | right: 0px; 241 | } 242 | 243 | .eyecatcher img { 244 | position: relative; 245 | } -------------------------------------------------------------------------------- /public/assets/Eyecatcher.svg: -------------------------------------------------------------------------------- 1 | Eyecatcher -------------------------------------------------------------------------------- /public/assets/Illustration_2.svg: -------------------------------------------------------------------------------- 1 | Illustration_2 -------------------------------------------------------------------------------- /public/assets/Illustration_4.svg: -------------------------------------------------------------------------------- 1 | Illustration_4 -------------------------------------------------------------------------------- /public/assets/Illustration_1.svg: -------------------------------------------------------------------------------- 1 | Illustration_1 -------------------------------------------------------------------------------- /public/assets/Illustration_3.svg: -------------------------------------------------------------------------------- 1 | Illustration_3 -------------------------------------------------------------------------------- /public/assets/Logo_silver.svg: -------------------------------------------------------------------------------- 1 | Logo_silver -------------------------------------------------------------------------------- /public/assets/Logo_color.svg: -------------------------------------------------------------------------------- 1 | Logo_color -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 12 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | Noodles 37 | 38 | 39 | 40 |
41 |
42 | 61 |
62 |
63 | 64 |
65 |
66 |
67 |
68 |

69 | Projekt ktorý ti pomôže naštartovať kariéru v IT správnym spôsobom. 70 |

71 |

72 | Spoznaj kvalitnú formu výučby, ktorá v školskom systéme chýba. 73 | Naučíš sa to, čo aj reálne využiješ, a pomocou webovej aplikácie budeš svojím vlastným tempom naberať skúsenosti. 74 | Počas celého programu ti budú k dispozícii mentori a ponúka sa ti aj možnosť zúčastňovať sa stretnutí, kde budeš mať príležitosť stretnúť aj rovnako zmýšľajúce rovesníčky. 75 |

76 |
77 | Program bude štartovať na konci októbra. 78 |
79 |
80 | 81 | 82 | 83 | 86 |
87 |
88 |
89 |
90 | 91 |
92 |
93 |
94 |
95 |
96 | 97 |
98 |
99 |
100 |
101 | 102 |

103 | Pre dievčatá 104 |

105 |

106 | Častokrát sa stáva, že chlapcom nerozumieme, keď niečo vysvetľujú. 107 | Alebo sa s nimi inak rozpráva. 108 | Tu sa ti to nestane, budeš mať ďalšie kamarátky okolo seba. 109 | A nemusíš sa hanbiť, budeš medzi svojimi 😊 110 |

111 |
112 |
113 | 114 |

115 | Zadarmo 116 |

117 |

118 | Žiadne poplatky ťa s nami nečakajú. 119 | Všetko je ti k dispozícii bez toho, aby si niečo musela platiť. 120 | My pomáhame jeden druhému a teší nás to. 121 |

122 |
123 |
124 | 125 |

126 | Zamestnáme ťa 127 |

128 |

129 | Už žiadne obavy z hľadania si zamestnania. 130 | Po úspešnom absolvovaní kurzu ti zabezpečíme pracovnú pozíciu v jednej z partnerských firiem, ktorá ti bude vyhovovať a ktorá je reálne žiadaná na trhu. 131 |

132 |
133 |
134 |
135 |
136 | 137 |
138 |
139 |
140 |
141 | 142 |
143 |
144 |
145 |
146 |

147 | IT pre dievčatá 148 |

149 |
150 |

151 | Technológie sú všade okolo nás a vyhnúť sa im už nedá. 152 | Čím skôr nabehneš na trend, ktorý určuje vývoj spoločnosti, tým lepšie pre teba. 153 | A nebudeš v tom sama. 154 | Mnoho ďalších dievčat bude túto výzvu zdolávať spolu s tebou. 155 |

156 |

157 | Naviac máš možnosť porovnať si svoje skúsenosti s ostatnými členmi programu Noodles. 158 | Mentori budú priebežne hodnotiť nielen zadania, ale prístup k práci, projektovú komunikáciu, úroveň spolupráce v kolektíve. 159 |

160 |

161 | Týmto sa nielen technicky budeš posúvať dopredu, ale aj osobnostne. 162 | Možno spoznáš niečo o sebe, čo ešte nevieš. 163 | Tebou venovaný čas padne priamo na úrodnú pôdu, keďže Noodles ti poskytnú reálne využiteľné znalosti. 164 | Navyše ti po absolvovaní programu zabezpečíme zamestnanie v jednej z našich partnerských spoločností. 165 |

166 |
167 |
168 |
169 | 170 |
171 |
172 |
173 |
174 |
175 | 176 |
177 |
178 |
179 |
180 |

181 | Náš vzdelávací program začína v októbri. 182 | Ak máš záujem sa ho zúčastniť alebo sa o ňom chceš dozvedieť viac informácií napíš nám svoj email. 183 |

184 |
185 | 186 | 187 | 188 | 191 |
192 |
193 |
194 |
195 |
196 | 197 |
198 |
199 |
200 |
201 |
202 | noodles partner illustration 203 |
204 |
205 |
206 |

207 | Chcete sa stať našim partnerom? 208 |

209 |

210 | Pomôžte a podporte projekt, ktorý buduje technologickú komunitu odhodlaných, vzdelaných a motivovaných dievčat tým, že im dáte možnosť realizovať sa u vás. 211 |

212 |

213 | Nielenže získate znalostne pripravenú novú krv so zručnosťami, ktoré potrebujete, ale aj ušetríte veľa času hľadaním správneho kandidáta, keďže dievčatá sa profilujú aj na základe osobnostných vlastností, ktoré zohrávajú dôležitú úlohu pri práci v tíme. 214 |

215 |
216 | Ak vás program oslovil a potrebujete viac informácií alebo máte záujem sa stať partnerskou spoločnosťou, kontaktujte nás prosím. 217 |
218 |

219 | 220 | Kontaktujte nás 221 | 222 |

223 |
224 |
225 |
226 |
227 | 228 |
229 |
230 |
231 |
232 |

233 | Chceš sa stať mentorom?

234 |

235 | Máš záujem zapojiť sa pre dobrú vec, pomôcť tým, ktorí to potrebujú a myslíš si, že máš trpezlivosť, milý, priateľský prístup k ostatným? 236 | Aj keď vysvetluješ desiatykrát tebe úplne jasnú vec? 237 |

238 |

239 | Ak si si zodpovedal(a) na tieto otázky kladne, napíš nám pár viet o sebe, v ktorých predstavíš seba a prezradíš nám aj motiváciu, prečo chceš byť mentorom v našom programe. 240 |

241 |
242 | Ak vás program oslovil a potrebujete viac informácií alebo máte záujem sa stať jedným z našich mentorov, kontaktujte nás prosím. 243 |
244 |

245 | 246 | Kontaktujte nás 247 | 248 |

249 |
250 |
251 |
252 | noodles mentor illustration 253 |
254 |
255 |
256 |
257 |
258 | 259 |
260 |
261 |
262 |
263 |

264 | Kontakt 265 |

266 |
267 | V prípade, ak sa chcete viac informovať o našom projekte, alebo sa chcete stať našim mentorom či partnerom, neváhajte nás kontaktovať. 268 |
269 |
270 |
271 |
272 |
273 |
274 | 275 |
276 |
277 | 278 |
279 |
280 | 281 |
282 | 285 |
286 |
287 |
288 |
289 | 290 | 322 | 323 | 324 | 325 | 326 | 327 | --------------------------------------------------------------------------------