forked from opencollective/open-stocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
448 lines (443 loc) · 16.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Open Stocks</title>
<meta
name="description"
content="Use your public stock to support open source creators"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="/images/Favicon.png" />
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet" />
<link rel="stylesheet" href="https://use.typekit.net/ibp7vyb.css" />
<link rel="stylesheet" href="/css/index.css" />
<link rel="stylesheet" href="/css/header.css" />
<link rel="stylesheet" href="/css/whatAreWeDoing.css" />
<link rel="stylesheet" href="/css/useYourStockForGood.css" />
<link rel="stylesheet" href="/css/letStart.css" />
<link rel="stylesheet" href="/css/whoWeAre.css" />
</head>
<body>
<div class="desktopNav">
<div class="desktopNavCloseIconWrapper js-desktopMenuToggle">
<button class="menuButton">
<img src="/images/close-icon.svg" alt="Close Icon" />
</button>
</div>
<div class="desktopNavContent">
<div class="desktopNavHeader">
<a class="logo-link" href="/">
<img src="/images/logo-oc-light.svg" alt="Logo" />
</a>
</div>
<ul class="desktopNavListWrapper">
<a href="#whatAreWeDoing">
<li class="desktopNavList js-navLink">What are we doing?</li>
</a>
<a href="#howDoesitWork">
<li class="desktopNavList js-navLink">How does it work?</li>
</a>
<a href="#letsStart">
<li class="desktopNavList js-navLink">Let’s start</li>
</a>
<a href="#whoWeAre">
<li class="desktopNavList js-navLink">Who we are?</li>
</a>
</ul>
<div class="desktopNavFooter">
<div class="desktopNavFooterLogoWrapper">
<img
src="/images/mobile-nav-footer-logo.png"
alt="Open Source collective"
/>
</div>
<p class="copyRightText">Copyright © 2021 Open collective Inc</p>
</div>
</div>
</div>
<div class="sideMenuWrapper js-desktopMenuToggle">
<div class="sideMenu">
<button class="menuButton">
<img src="/images/menu-icon.svg" alt="Menu Icon" />
</button>
</div>
</div>
<div class="mainContent">
<div class="header">
<a class="logo-link" href="/">
<img src="/images/logo-oc-monogram.svg" alt="Logo" />
</a>
<button class="menuButton js-menuToggle">
<img src="/images/menu-icon.svg" alt="Menu Icon" />
</button>
</div>
<div class="mobileNav">
<div class="mobileNavContent">
<div class="mobileNavHeader">
<a class="logo-link" href="/">
<img src="/images/logo-oc-monogram.svg" alt="Logo" />
</a>
<button class="menuButton js-menuToggle">
<img src="/images/close-icon.svg" alt="Close Icon" />
</button>
</div>
<ul class="mobileNavListWrapper">
<a href="#whatAreWeDoing">
<li class="mobileNavList js-navLink">What are we doing?</li>
</a>
<a href="#howDoesitWork">
<li class="mobileNavList js-navLink">How does it work?</li>
</a>
<a href="#letsStart">
<li class="mobileNavList js-navLink">Let’s start</li>
</a>
<a href="#whoWeAre">
<li class="mobileNavList js-navLink">Who we are?</li>
</a>
</ul>
</div>
<div class="mobileNavFooter">
<div class="mobileNavFooterLogoWrapper">
<img
src="/images/mobile-nav-footer-logo.png"
alt="Open Source collective"
/>
</div>
<p class="copyRightText">Copyright © 2021 Open collective Inc</p>
</div>
</div>
<section id="whatAreWeDoing">
<div class="whatAreWeDoingContent">
<div class="whatAreWeDoing">
<a
data-aos="fade-up"
data-aos-easing="ease-out"
href="/"
class="logo-link desktop-logo"
>
<img src="/images/logo-oc-dark.svg" alt="Open collective Logo" />
</a>
<h1
data-aos-delay="100"
data-aos="fade-up"
data-aos-easing="ease-out"
>
Use your public stock to support open source creators
</h1>
<div
data-aos="fade-up"
data-aos-easing="ease-out"
data-aos-delay="150"
class="illustration tablet-desktop-illustration"
></div>
<div
class="whatAreWeDoingContainer"
data-aos="fade-up"
data-aos-easing="ease-out"
>
<div class="opensourceCreator-container">
<h2>Open source creator</h2>
<p>
If you are already part of the Open Source Collective, you can
invite your contributors to use their stock to support your
projects! They just need to click on the button on the
following section <span class="visible-sm">👉</span>
<span class="visible-xs">👇</span>
</p>
<div class="aboutOpenCollective-container">
<h4>Not on Open Collective yet?</h4>
<div class="openCollectiveRounded">
<a href="https://opencollective.com" target="_blank"
>Visit Open Collective</a
>
</div>
</div>
</div>
<div class="illustration illustration-mobile"></div>
<div class="stockOwnerContainer">
<h2>Stock owner</h2>
<p>
Over the years, multiple tech companies have gone public
giving their employees publicly traded stock. They can now use
it to support the open source creators that have developed the
software that helped them build and run their products.
</p>
<div class="areYouReadyContainer">
<h4>Are you ready?</h4>
<div class="useYourStockForGood">
<a href="#letsStart">Use your stock for Good</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="howDoesitWork">
<div class="useYourStockForGood-container">
<h2 data-aos="fade-up" data-aos-easing="ease-out">
Use your stock for Good
</h2>
<h5 data-aos="fade" data-aos-easing="ease-out" data-aos-delay="100">
how it works in 5 easy steps
</h5>
<div class="stepsWrapper">
<div class="stepsContainer">
<div
data-aos="fade"
data-aos-easing="ease-out"
data-aos-delay="150"
class="step step1"
>
<div class="stepContent">
<h3>01</h3>
<p class="visible-sm">
Choose the open source collective you want to support.
You'll need to include it in the checkout flow!
</p>
<p class="visible-xs">
Choose the open source collective you want to support.
</p>
</div>
</div>
<div
data-aos="fade"
data-aos-easing="ease-out"
data-aos-delay="180"
class="step step2"
>
<div class="stepContent">
<h3>02</h3>
<p class="visible-sm">
Use your stock to contribute to an awesome project and save
on capital gains tax in the process!
</p>
<p class="visible-xs">
Use your stock to contribute to an awesome project
</p>
</div>
</div>
<div
data-aos="fade"
data-aos-easing="ease-out"
data-aos-delay="210"
class="step step3"
>
<div class="stepContent">
<h3>03</h3>
<p class="visible-sm">
The Open Source Collective team will receive the stock
converted to cash.
</p>
<p class="visible-xs">
Support your selected project using your stocks
</p>
</div>
</div>
<div
data-aos="fade"
data-aos-easing="ease-out"
data-aos-delay="240"
class="step step4"
>
<div class="stepContent">
<h3>04</h3>
<p class="visible-sm">
The cash will be transferred automatically to the project’s
balance, your contribution will show up on their page and
you'll receive a receipt.
</p>
<p class="visible-xs">
The cash will be transferred automatically to the project's
balance
</p>
</div>
</div>
<div
data-aos="fade"
data-aos-easing="ease-out"
data-aos-delay="270"
class="step step5"
>
<div class="stepContent">
<h3>05</h3>
<p>Everything is transparent with Open Collective!</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="letsStart">
<div class="letStartContent">
<div class="letStartWrapper">
<div
data-aos="fade-up"
data-aos-easing="ease-out"
class="letStartContainer"
>
<h2 class="letStartTitle">Let's start!</h2>
<p class="letStartDescription">
Ok, you are now ready to start using this new feature. That's
great!
</p>
</div>
<div
data-aos="fade-up"
data-aos-easing="ease-out"
data-aos-delay="100"
class="formTabWrapper"
>
<div class="whatDescribeYouContainer">
<h4>
<span>1</span>
What describes you best?
</h4>
<div class="buttonContainer">
<button class="creatorButton activeOpenSourceCreator">
<span>Open source creator</span>
</button>
<button class="stockOwnerButton">
<span>Stock owner</span>
</button>
</div>
</div>
<div class="whatDescribeYouContainer">
<h4>
<span>2</span>
<b class="openSourceCreator"
>Are you set up to receive stocks?</b
>
<b class="stockOwner">Awesome!</b>
</h4>
<div class="formContainer">
<p class="formInstruction openSourceCreator">
If you are a collective on the Open Source Collective you
will automatically be able to receive stocks. If you are
not,
<a href="http://opencollective.com/opensource/apply"
>join us</a
>!
</p>
<p class="formInstruction stockOwner">
Make sure you add the projects you want to fund on the text
field in the checkout form. If the project you want to fund
is not on Open Collective or your brokerage service is not
yet activated in the checkout, please
<a href="https://opencollective.com/support" target="_blank"
>let us know</a
>. We'll work around it.
</p>
<form class="emailForm openSourceCreator">
<div class="formInputContainer">
<img src="/images/envelope-icon.svg" />
<input
type="email"
name="email"
placeholder="Your email here"
/>
</div>
<div class="formCheckboxContainer openSourceCreator">
<input
id="alreadyOnOC_id"
type="checkbox"
name="alreadyOnOC"
/>
<label for="alreadyOnOC_id"
>I already have a Collective on Open Collective</label
>
</div>
<button class="submitContactBtn" type="submit" disabled>
<span class="openSourceCreator"
>Let us know you are interested</span
>
<!-- <span class="stockOwner">Go to checkout</span> -->
</button>
</form>
<div
class="
submitContactBtn
openCollectiveRounded
stockOwner
activeFormButton
"
>
<a
href="https://app.overflow.co/opensourcecollective"
target="_blank"
>Go to checkout</a
>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="whoWeAre">
<div class="whoWeAreContent">
<div class="whoWeAre">
<div class="weAreOpenContainerCommunity">
<div
data-aos="fade-up"
data-aos-easing="ease-out"
class="weAreOpenContainer"
>
<h3 class="weAre">We are</h3>
<h3 class="weAreOpen">Open</h3>
<div class="weAreOpenContainerBgText"></div>
</div>
<div
data-aos="fade-up"
data-aos-easing="ease-out"
data-aos-delay="100"
class="sustainCommunities"
>
<h4>And we love to sustain communities!</h4>
<p>
Open Collective has worked with hundreds of initiatives to be
funded and kept running, so everyone's project keeps
supporting their communities, and the technology development
never stops.
</p>
</div>
</div>
<div
data-aos="fade"
data-aos-easing="ease-out"
class="weAreOpenContainerBgText-tablet"
></div>
<div
data-aos="fade"
data-aos-easing="ease-out"
data-aos-delay="120"
class="weveBeen"
>
<p>
We've been working on new ways to make it easier for you to
support and contribute to your favorite collectives…
</p>
<div class="openCollectiveRounded last">
<a href="https://opencollective.com" target="_blank"
>Visit Open Collective</a
>
</div>
</div>
</div>
</div>
</section>
</div>
</body>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init({
once: true,
duration: 500,
offset: 120,
easing: "ease-in-out",
});
</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="/js/index.js" type="text/javascript"></script>
</html>