-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpitchdeck.html
522 lines (467 loc) · 17 KB
/
pitchdeck.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
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Give Hub - Investment Pitch Deck</title>
<style>
:root {
--primary: #2563eb;
--secondary: #1e40af;
--text: #1f2937;
--bg: #ffffff;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
from { transform: translateX(100%); }
to { transform: translateX(0); }
}
@keyframes scaleIn {
from { transform: scale(0.95); opacity: 0; }
to { transform: scale(1); opacity: 1; }
}
@keyframes rotateIn {
from { transform: rotate(-5deg) scale(0.95); opacity: 0; }
to { transform: rotate(0) scale(1); opacity: 1; }
}
body {
margin: 0;
padding: 0;
font-family: system-ui, -apple-system, sans-serif;
color: var(--text);
background: var(--bg);
overflow: hidden;
}
.slides-container {
height: 100vh;
width: 100vw;
overflow: hidden;
position: relative;
perspective: 1000px;
}
.slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
padding: 4rem;
box-sizing: border-box;
opacity: 0;
transition: transform 0.8s ease, opacity 0.8s ease;
display: flex;
flex-direction: column;
justify-content: center;
overflow-y: auto;
transform: translateX(100%);
}
.slide.active {
opacity: 1;
transform: translateX(0);
z-index: 1;
}
.slide.previous {
transform: translateX(-100%);
}
.slide-content {
max-width: 1200px;
margin: 0 auto;
width: 100%;
}
.slide.active h1 {
animation: slideIn 1s ease forwards;
}
.slide.active h2 {
animation: fadeIn 1s ease 0.3s forwards;
opacity: 1;
}
h1 {
font-size: 3rem;
color: var(--primary);
margin: 0 0 1rem 0;
transform: translateX(100%);
}
h2 {
font-size: 2rem;
color: var(--secondary);
margin: 0 0 2rem 0;
}
ul {
font-size: 1.25rem;
line-height: 1.6;
margin: 0;
padding-left: 1.5rem;
}
ul li {
opacity: 1;
}
.slide.active ul li {
animation: fadeIn 0.5s ease forwards;
}
.slide.active ul li:nth-child(1) { animation-delay: 0.3s; }
.slide.active ul li:nth-child(2) { animation-delay: 0.5s; }
.slide.active ul li:nth-child(3) { animation-delay: 0.7s; }
.slide.active ul li:nth-child(4) { animation-delay: 0.9s; }
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin: 2rem 0;
}
.box {
background: #f8fafc;
padding: 1.5rem;
border-radius: 0.5rem;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
transform: scale(0.95);
}
.slide.active .box {
animation: scaleIn 0.6s ease forwards;
}
.slide.active .box:nth-child(1) { animation-delay: 0.2s; }
.slide.active .box:nth-child(2) { animation-delay: 0.4s; }
.slide.active .box:nth-child(3) { animation-delay: 0.6s; }
.controls {
position: fixed;
bottom: 2rem;
right: 2rem;
z-index: 10;
display: flex;
gap: 1rem;
}
button {
background: var(--primary);
color: white;
border: none;
padding: 0.75rem 1.5rem;
border-radius: 0.25rem;
cursor: pointer;
font-size: 1rem;
transition: all 0.3s ease;
transform: scale(1);
}
button:hover {
background: var(--secondary);
transform: scale(1.05);
}
button:active {
transform: scale(0.95);
}
.progress {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: #e2e8f0;
z-index: 10;
}
.progress-bar {
height: 100%;
background: var(--primary);
transition: width 0.8s ease;
position: relative;
overflow: hidden;
}
.progress-bar::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
animation: shimmer 2s infinite;
}
@keyframes shimmer {
0% { transform: translateX(-100%); }
100% { transform: translateX(100%); }
}
/* Floating animation for specific elements */
.slide.active .floating {
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-10px); }
100% { transform: translateY(0px); }
}
/* Highlight animation */
.highlight {
position: relative;
display: inline-block;
}
.highlight::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 2px;
background: var(--primary);
transform: scaleX(0);
transform-origin: left;
}
.slide.active .highlight::after {
animation: highlightLine 1s ease forwards 1s;
}
@keyframes highlightLine {
to { transform: scaleX(1); }
}
</style>
</head>
<body>
<div class="progress">
<div class="progress-bar" id="progressBar"></div>
</div>
<div class="slides-container" id="slidesContainer">
<!-- Title Slide -->
<div class="slide active">
<div class="slide-content">
<img src="/site/img/color-logo.svg" style="float:left;">
<h1>The Give Hub</h1>
<h2>Reimagining <span class="highlight">Charitable</span> Giving</h2>
<div class="box floating" style="background-color:transparent;border:0;box-shadow:0 0 0;">
<p style="font-size: 1.5rem; margin: 0;">Connecting remote communities with global donors through transparent, efficient blockchain technology</p>
</div>
</div>
</div>
<!-- Problem Slide -->
<div class="slide">
<div class="slide-content">
<h1>The Problem</h1>
<div class="grid">
<div class="box floating">
<h3>Access Gap</h3>
<p>2.5 billion people live in underserved regions with limited access to traditional funding</p>
</div>
<div class="box">
<h3>High Fees</h3>
<p>Traditional platforms charge 5-8% fees, reducing impact of donations</p>
</div>
<div class="box floating">
<h3>Lack of Transparency</h3>
<p>Donors hesitate due to limited visibility into impact</p>
</div>
</div>
</div>
</div>
<!-- Solution Slide -->
<div class="slide">
<div class="slide-content">
<h1>Our Solution</h1>
<div class="grid">
<div class="box">
<h3>Blockchain-Powered</h3>
<ul>
<li>Near-zero transaction fees</li>
<li>Real-time transparency</li>
<li>Instant cross-border transfers</li>
</ul>
</div>
<div class="box">
<h3>Focus Markets</h3>
<ul>
<li>Remote regions in Africa</li>
<li>Underserved areas in South America</li>
<li>Direct local partnerships</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Traction Slide -->
<div class="slide">
<div class="slide-content">
<h1>Notable Backing</h1>
<div class="grid">
<div class="box">
<h3>Government Support</h3>
<p>Backed by Colombian Senator, providing strategic guidance on regional expansion</p>
</div>
<div class="box">
<h3>Celebrity Ambassador</h3>
<p>Fast Freddie Rodriguez, Professional Cyclist, serving as Brand Ambassador</p>
</div>
</div>
</div>
</div>
<!-- Technology Slide -->
<div class="slide">
<div class="slide-content">
<h1>Technology Stack</h1>
<div class="grid">
<div class="box">
<h3>Blockchain</h3>
<ul>
<li>Built on Stellar network</li>
<li>Soroban smart contracts</li>
<li>Transparent transactions</li>
</ul>
</div>
<div class="box">
<h3>Backend</h3>
<ul>
<li>Node.js server</li>
<li>MySQL database</li>
<li>RESTful API</li>
</ul>
</div>
<div class="box">
<h3>Frontend</h3>
<ul>
<li>React.js</li>
<li>Mobile-first design</li>
<li>Real-time updates</li>
</ul>
</div>
</div>
</div>
</div>
<div class="slide">
<div class="slide-content">
<h1>Operating Model</h1>
<div class="grid">
<div class="box floating">
<h3>Sustainable Operations</h3>
<ul>
<li>501(c)(3) non-profit organization</li>
<li>1.5% operational fee from donations</li>
<li>100% transparency in fund allocation</li>
</ul>
</div>
<div class="box">
<h3>Impact Metrics</h3>
<ul>
<li>Number of communities served</li>
<li>Project completion rate</li>
<li>Donor engagement metrics</li>
</ul>
</div>
<div class="box floating">
<h3>3-Year Goals</h3>
<ul>
<li>50M+ in processed donations</li>
<li>100+ communities served</li>
<li>1,000+ completed projects</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Funding Requirements Slide (replaces Investment Opportunity slide) -->
<div class="slide">
<div class="slide-content">
<h1>Initial Funding Requirements</h1>
<div class="grid">
<div class="box floating">
<h3>Seed Funding Needed</h3>
<p style="font-size: 2rem; margin: 0;">$2.5M Grant Funding</p>
<p>To establish operations and develop platform</p>
</div>
<div class="box">
<h3>Fund Allocation</h3>
<ul>
<li>40% Technology Development
<ul style="font-size: 0.9em; color: #666;">
<li>Blockchain infrastructure</li>
<li>Security audits</li>
<li>User platforms</li>
</ul>
</li>
<li>25% Community Partnerships
<ul style="font-size: 0.9em; color: #666;">
<li>Kenya operations</li>
<li>Colombia operations</li>
<li>Local team building</li>
</ul>
</li>
<li>20% Operating Expenses
<ul style="font-size: 0.9em; color: #666;">
<li>US-based team</li>
<li>Legal compliance</li>
<li>Administrative costs</li>
</ul>
</li>
<li>15% Reserve Fund
<ul style="font-size: 0.9em; color: #666;">
<li>Emergency operations</li>
<li>Opportunity fund</li>
</ul>
</li>
</ul>
</div>
</div>
<div class="box" style="margin-top: 2rem;">
<h3>Sustainability Plan</h3>
<p>After initial funding, The Give Hub will be self-sustaining through:</p>
<ul>
<li>1.5% operational fee from donations</li>
<li>Institutional grants and partnerships</li>
<li>Corporate social responsibility programs</li>
</ul>
</div>
</div>
</div>
<div class="controls">
<button onclick="previousSlide()">Previous</button>
<button onclick="nextSlide()">Next</button>
</div>
<script>
let currentSlide = 0;
const slides = document.querySelectorAll('.slide');
const progressBar = document.getElementById('progressBar');
function updateSlides() {
slides.forEach((slide, index) => {
slide.classList.remove('active', 'previous');
if (index < currentSlide) {
slide.classList.add('previous');
}
});
slides[currentSlide].classList.add('active');
const progress = ((currentSlide + 1) / slides.length) * 100;
progressBar.style.width = `${progress}%`;
}
function nextSlide() {
if (currentSlide < slides.length - 1) {
currentSlide++;
updateSlides();
}
}
function previousSlide() {
if (currentSlide > 0) {
currentSlide--;
updateSlides();
}
}
document.addEventListener('keydown', (e) => {
if (e.key === 'ArrowRight') nextSlide();
if (e.key === 'ArrowLeft') previousSlide();
});
// Add touch support for mobile devices
let touchStartX = 0;
let touchEndX = 0;
document.addEventListener('touchstart', e => {
touchStartX = e.changedTouches[0].screenX;
});
document.addEventListener('touchend', e => {
touchEndX = e.changedTouches[0].screenX;
handleSwipe();
});
function handleSwipe() {
const swipeThreshold = 50;
const swipeLength = touchEndX - touchStartX;
if (Math.abs(swipeLength) > swipeThreshold) {
if (swipeLength > 0) {
previousSlide();
} else {
nextSlide();
}
}
}
</script>
</body>
</html>