capivara-solidaria-ts-sdk 1.0.1 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/enums/index.d.mts +357 -611
- package/dist/enums/index.d.ts +357 -611
- package/dist/enums/index.js.map +1 -1
- package/dist/enums/index.mjs.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/enums/index.d.mts
CHANGED
|
@@ -152,210 +152,161 @@ declare const isOngCategory: (value: unknown) => value is OngCategory;
|
|
|
152
152
|
declare const HUBSPOT_ONG_VALUES: readonly ["Animais", "Meio Ambiente", "Educação", "Saúde", "Direitos Humanos", "Combate à Fome", "Crianças e Adolescentes", "Idosos", "Pessoas com Deficiência", "Moradores de Rua", "Igualdade de Gênero", "Refugiados e Imigrantes", "Proteção Animal", "Desenvolvimento Comunitário", "Cultura e Arte", "Esporte e Inclusão", "Voluntariado e Doações", "Tecnologia Social", "Direitos das Mulheres", "Outros"];
|
|
153
153
|
type HubspotOngValue = (typeof HUBSPOT_ONG_VALUES)[number];
|
|
154
154
|
declare const isHubspotOngValue: (value: unknown) => value is HubspotOngValue;
|
|
155
|
-
declare const ONG_CATEGORY_TO_HUBSPOT:
|
|
155
|
+
declare const ONG_CATEGORY_TO_HUBSPOT: {
|
|
156
|
+
readonly animais: "Animais";
|
|
157
|
+
readonly meioAmbiente: "Meio Ambiente";
|
|
158
|
+
readonly educacao: "Educação";
|
|
159
|
+
readonly saude: "Saúde";
|
|
160
|
+
readonly direitosHumanos: "Direitos Humanos";
|
|
161
|
+
readonly combateAFome: "Combate à Fome";
|
|
162
|
+
readonly criancasEAdolescentes: "Crianças e Adolescentes";
|
|
163
|
+
readonly idosos: "Idosos";
|
|
164
|
+
readonly pessoasComDeficiencia: "Pessoas com Deficiência";
|
|
165
|
+
readonly moradoresDeRua: "Moradores de Rua";
|
|
166
|
+
readonly igualdadeDeGenero: "Igualdade de Gênero";
|
|
167
|
+
readonly refugiadosEImigrantes: "Refugiados e Imigrantes";
|
|
168
|
+
readonly protecaoAnimal: "Proteção Animal";
|
|
169
|
+
readonly desenvolvimentoComunitario: "Desenvolvimento Comunitário";
|
|
170
|
+
readonly culturaEArte: "Cultura e Arte";
|
|
171
|
+
readonly esporteEInclusao: "Esporte e Inclusão";
|
|
172
|
+
readonly voluntariadoEDoacoes: "Voluntariado e Doações";
|
|
173
|
+
readonly tecnologiaSocial: "Tecnologia Social";
|
|
174
|
+
readonly direitosDasMulheres: "Direitos das Mulheres";
|
|
175
|
+
readonly outros: "Outros";
|
|
176
|
+
};
|
|
156
177
|
declare const toOngCategory: (value: string) => OngCategory | undefined;
|
|
157
178
|
declare const toHubspotOngValue: (value: OngCategory) => HubspotOngValue;
|
|
158
179
|
|
|
159
|
-
declare const MAX_STREAM_DURATION
|
|
180
|
+
declare const MAX_STREAM_DURATION = 30;
|
|
160
181
|
|
|
161
182
|
declare const TEMPLATE_TYPES: readonly ["primary", "secondary", "tertiary", "quarternary"];
|
|
162
183
|
type TemplateType = (typeof TEMPLATE_TYPES)[number];
|
|
163
184
|
|
|
164
|
-
declare const DEFAULT_TEMPLATE_COLORS:
|
|
185
|
+
declare const DEFAULT_TEMPLATE_COLORS: {
|
|
186
|
+
primary: string;
|
|
187
|
+
secondary: string;
|
|
188
|
+
tertiary: string;
|
|
189
|
+
quarternary: string;
|
|
190
|
+
};
|
|
165
191
|
declare const DEFAULT_TEMPLATE_COLOR_PALLETES: Record<TemplateType, any>;
|
|
166
192
|
|
|
167
193
|
declare const DEFAULT_TEMPLATES_ORDER: {
|
|
168
|
-
readonly primary:
|
|
169
|
-
readonly secondary:
|
|
170
|
-
readonly tertiary:
|
|
171
|
-
readonly quarternary:
|
|
194
|
+
readonly primary: readonly ["header", "details", "moreInfoAbout", "ourMission", "depoiments", "faq"];
|
|
195
|
+
readonly secondary: readonly ["header", "howItWorks", "moreInfoAbout", "aboutUs", "faq"];
|
|
196
|
+
readonly tertiary: readonly ["header", "howItWorks", "testimonials", "moreInfoAbout", "initiatives", "aboutUs", "faq"];
|
|
197
|
+
readonly quarternary: readonly ["header", "causes", "timeline", "getInvolved", "faq"];
|
|
172
198
|
};
|
|
173
199
|
|
|
174
200
|
declare const PRIMARY_TEMPLATE_DEFAULT_COPIES: {
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
};
|
|
183
|
-
|
|
201
|
+
header: {
|
|
202
|
+
span: string;
|
|
203
|
+
title: string;
|
|
204
|
+
description: string;
|
|
205
|
+
anchor: {
|
|
206
|
+
label: string;
|
|
207
|
+
href: string;
|
|
208
|
+
};
|
|
209
|
+
heroImage: string;
|
|
184
210
|
};
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
}
|
|
193
|
-
readonly title: "+25 KG";
|
|
194
|
-
readonly description: "De alimentos arrecadados";
|
|
195
|
-
}, {
|
|
196
|
-
readonly title: "+2";
|
|
197
|
-
readonly description: "Abrigos disponibilizados";
|
|
198
|
-
}];
|
|
211
|
+
ourMission: {
|
|
212
|
+
subtitle: string;
|
|
213
|
+
title: string;
|
|
214
|
+
description: string;
|
|
215
|
+
tabs: {
|
|
216
|
+
title: string;
|
|
217
|
+
description: string;
|
|
218
|
+
}[];
|
|
199
219
|
};
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
}
|
|
208
|
-
readonly icon: "people-group";
|
|
209
|
-
readonly title: "Transparência total";
|
|
210
|
-
readonly description: "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy";
|
|
211
|
-
}, {
|
|
212
|
-
readonly icon: "people-group";
|
|
213
|
-
readonly title: "Impacto real";
|
|
214
|
-
readonly description: "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy";
|
|
215
|
-
}];
|
|
220
|
+
details: {
|
|
221
|
+
label: string;
|
|
222
|
+
title: string;
|
|
223
|
+
tabs: {
|
|
224
|
+
icon: string;
|
|
225
|
+
title: string;
|
|
226
|
+
description: string;
|
|
227
|
+
}[];
|
|
216
228
|
};
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
229
|
+
imagesGrid: {
|
|
230
|
+
title: string;
|
|
231
|
+
description: string;
|
|
220
232
|
};
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
233
|
+
moreInfoAbout: {
|
|
234
|
+
title: string;
|
|
235
|
+
description: string;
|
|
236
|
+
heroImage: string;
|
|
225
237
|
};
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
};
|
|
236
|
-
}, {
|
|
237
|
-
readonly content: "Obrigado por tudo que fizeram por mim e minha família.";
|
|
238
|
-
readonly author: {
|
|
239
|
-
readonly image: "https://sb.kaleidousercontent.com/67418/1920x1545/c5f15ac173/samuel-raita-ridxdghg7pw-unsplash.jpg";
|
|
240
|
-
readonly name: "Getulio Aparecido dos Santos";
|
|
241
|
-
readonly city: "Capivari, SP";
|
|
242
|
-
};
|
|
243
|
-
}, {
|
|
244
|
-
readonly content: "Obrigado por tudo que fizeram por mim e minha família.";
|
|
245
|
-
readonly author: {
|
|
246
|
-
readonly image: "https://sb.kaleidousercontent.com/67418/1920x1545/c5f15ac173/samuel-raita-ridxdghg7pw-unsplash.jpg";
|
|
247
|
-
readonly name: "Getulio Aparecido dos Santos";
|
|
248
|
-
readonly city: "Capivari, SP";
|
|
238
|
+
depoiments: {
|
|
239
|
+
title: string;
|
|
240
|
+
description: string;
|
|
241
|
+
cards: {
|
|
242
|
+
content: string;
|
|
243
|
+
author: {
|
|
244
|
+
image: string;
|
|
245
|
+
name: string;
|
|
246
|
+
city: string;
|
|
249
247
|
};
|
|
250
|
-
}];
|
|
248
|
+
}[];
|
|
251
249
|
};
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
};
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
}
|
|
261
|
-
readonly title: "Posso acompanhar o impacto da minha contribuição?";
|
|
262
|
-
readonly description: "Sim! Enviamos atualizações periódicas por e-mail e também compartilhamos relatórios e histórias reais das pessoas beneficiadas nos nossos canais oficiais.";
|
|
263
|
-
}, {
|
|
264
|
-
readonly title: "Como posso me voluntariar?";
|
|
265
|
-
readonly description: "Você pode preencher nosso formulário de voluntariado disponível no site. Após isso, nossa equipe entrará em contato para alinhar sua disponibilidade e forma de atuação.";
|
|
266
|
-
}, {
|
|
267
|
-
readonly title: "A ONG é registrada e regulamentada?";
|
|
268
|
-
readonly description: "Sim, somos uma instituição oficializada e seguimos todas as diretrizes legais e contábeis necessárias para garantir credibilidade e responsabilidade.";
|
|
269
|
-
}, {
|
|
270
|
-
readonly title: "Além de doar, como posso ajudar?";
|
|
271
|
-
readonly description: "Você pode divulgar nosso trabalho, participar de campanhas, voluntariar seu tempo, ou até apoiar com serviços profissionais. Toda ajuda faz diferença!";
|
|
272
|
-
}];
|
|
250
|
+
faq: {
|
|
251
|
+
anchor: {
|
|
252
|
+
label: string;
|
|
253
|
+
href: string;
|
|
254
|
+
};
|
|
255
|
+
questions: {
|
|
256
|
+
title: string;
|
|
257
|
+
description: string;
|
|
258
|
+
}[];
|
|
273
259
|
};
|
|
274
260
|
};
|
|
275
261
|
declare const SECONDARY_TEMPLATE_DEFAULT_COPIES: {
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
};
|
|
284
|
-
|
|
262
|
+
header: {
|
|
263
|
+
span: string;
|
|
264
|
+
title: string;
|
|
265
|
+
description: string;
|
|
266
|
+
anchor: {
|
|
267
|
+
label: string;
|
|
268
|
+
href: string;
|
|
269
|
+
};
|
|
270
|
+
button: string;
|
|
285
271
|
};
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
}
|
|
293
|
-
readonly icon: "heart";
|
|
294
|
-
readonly title: "Cuidado";
|
|
295
|
-
readonly description: "Cada pessoa atendida recebe suporte humano e emocional, porque acreditamos que cuidar vai além do material.";
|
|
296
|
-
}, {
|
|
297
|
-
readonly icon: "graduation-cap";
|
|
298
|
-
readonly title: "Educação";
|
|
299
|
-
readonly description: "Oferecemos programas educacionais e de capacitação profissional para jovens e adultos em situação de vulnerabilidade.";
|
|
300
|
-
}, {
|
|
301
|
-
readonly icon: "hand-holding-heart";
|
|
302
|
-
readonly title: "Transparência";
|
|
303
|
-
readonly description: "Todas as doações são gerenciadas com responsabilidade e prestação de contas pública, garantindo confiança e credibilidade.";
|
|
304
|
-
}];
|
|
272
|
+
aboutUs: {
|
|
273
|
+
title: string;
|
|
274
|
+
cards: {
|
|
275
|
+
icon: string;
|
|
276
|
+
title: string;
|
|
277
|
+
description: string;
|
|
278
|
+
}[];
|
|
305
279
|
};
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
280
|
+
howItWorks: {
|
|
281
|
+
span: string;
|
|
282
|
+
title: string;
|
|
283
|
+
description: string;
|
|
284
|
+
heroImage: string;
|
|
285
|
+
anchor: {
|
|
286
|
+
label: string;
|
|
287
|
+
href: string;
|
|
314
288
|
};
|
|
315
289
|
};
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
290
|
+
imagesGrid: {
|
|
291
|
+
title: string;
|
|
292
|
+
description: string;
|
|
319
293
|
};
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
}
|
|
326
|
-
readonly title: "Voluntariado que transforma quem ajuda e quem recebe";
|
|
327
|
-
readonly description: "Acreditamos que o voluntariado é uma via de mão dupla. Ao ajudar o próximo, você também cresce, aprende e se conecta com propósito.";
|
|
328
|
-
readonly image: "https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?w=1200&q=80";
|
|
329
|
-
}, {
|
|
330
|
-
readonly title: "Transparência em cada centavo doado";
|
|
331
|
-
readonly description: "Publicamos relatórios periódicos com o uso detalhado dos recursos. Porque quem doa merece saber exatamente onde sua contribuição chegou.";
|
|
332
|
-
readonly image: "https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1200&q=80";
|
|
333
|
-
}];
|
|
294
|
+
moreInfoAbout: {
|
|
295
|
+
cards: {
|
|
296
|
+
title: string;
|
|
297
|
+
description: string;
|
|
298
|
+
image: string;
|
|
299
|
+
}[];
|
|
334
300
|
};
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
};
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
}
|
|
344
|
-
readonly title: "Posso acompanhar o impacto da minha doação?";
|
|
345
|
-
readonly description: "Sim! Você receberá atualizações por e-mail e terá acesso a relatórios públicos com histórias reais e dados de impacto dos projetos que você apoiou.";
|
|
346
|
-
}, {
|
|
347
|
-
readonly title: "Como me tornar voluntário?";
|
|
348
|
-
readonly description: "Basta preencher o formulário de voluntariado no site. Nossa equipe entrará em contato para entender seu perfil e indicar a melhor forma de contribuição.";
|
|
349
|
-
}, {
|
|
350
|
-
readonly title: "A organização é oficialmente registrada?";
|
|
351
|
-
readonly description: "Sim, somos uma instituição devidamente registrada, seguindo todas as exigências legais e contábeis para garantir seriedade e credibilidade nas nossas ações.";
|
|
352
|
-
}, {
|
|
353
|
-
readonly title: "Existe valor mínimo para doações?";
|
|
354
|
-
readonly description: "Não há valor mínimo. Qualquer contribuição, por menor que seja, faz diferença real na vida das pessoas que atendemos.";
|
|
355
|
-
}, {
|
|
356
|
-
readonly title: "Como posso ajudar além de doações financeiras?";
|
|
357
|
-
readonly description: "Você pode divulgar nossos projetos, doar alimentos ou roupas, oferecer serviços profissionais pro bono ou simplesmente engajar nas nossas campanhas nas redes sociais.";
|
|
358
|
-
}];
|
|
301
|
+
faq: {
|
|
302
|
+
anchor: {
|
|
303
|
+
label: string;
|
|
304
|
+
href: string;
|
|
305
|
+
};
|
|
306
|
+
questions: {
|
|
307
|
+
title: string;
|
|
308
|
+
description: string;
|
|
309
|
+
}[];
|
|
359
310
|
};
|
|
360
311
|
};
|
|
361
312
|
declare const TERTIARY_TEMPLATE_DEFAULT_COPIES: {
|
|
@@ -448,332 +399,192 @@ declare const TERTIARY_TEMPLATE_DEFAULT_COPIES: {
|
|
|
448
399
|
};
|
|
449
400
|
};
|
|
450
401
|
declare const QUATERNARY_TEMPLATE_DEFAULT_COPIES: {
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
};
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
};
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
}
|
|
470
|
-
readonly title: "80+";
|
|
471
|
-
readonly description: "Voluntários ativos";
|
|
472
|
-
}, {
|
|
473
|
-
readonly title: "12";
|
|
474
|
-
readonly description: "Cidades alcançadas";
|
|
475
|
-
}];
|
|
402
|
+
header: {
|
|
403
|
+
label: string;
|
|
404
|
+
title: string;
|
|
405
|
+
decoratedTitle: string;
|
|
406
|
+
description: string;
|
|
407
|
+
primaryAnchor: {
|
|
408
|
+
label: string;
|
|
409
|
+
href: string;
|
|
410
|
+
};
|
|
411
|
+
secondaryAnchor: {
|
|
412
|
+
label: string;
|
|
413
|
+
href: string;
|
|
414
|
+
};
|
|
415
|
+
button: string;
|
|
416
|
+
heroImage: string;
|
|
417
|
+
stats: {
|
|
418
|
+
title: string;
|
|
419
|
+
description: string;
|
|
420
|
+
}[];
|
|
476
421
|
};
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
}
|
|
487
|
-
readonly icon: "like-thumbs-up-sticker";
|
|
488
|
-
readonly title: "Educação de base";
|
|
489
|
-
readonly description: "Reforço escolar, alfabetização de adultos e acesso a material didático para crianças fora do ciclo regular.";
|
|
490
|
-
readonly label: "120 alunos ativos";
|
|
491
|
-
}, {
|
|
492
|
-
readonly icon: "like-thumbs-up-sticker";
|
|
493
|
-
readonly title: "Saúde preventiva";
|
|
494
|
-
readonly description: "Mutirões de saúde com médicos voluntários, distribuição de medicamentos e campanhas de vacinação em áreas remotas.";
|
|
495
|
-
readonly label: "8 mutirões realizados";
|
|
496
|
-
}, {
|
|
497
|
-
readonly icon: "like-thumbs-up-sticker";
|
|
498
|
-
readonly title: "Proteção e abrigo";
|
|
499
|
-
readonly description: "Suporte a famílias em situação de risco habitacional, com reformas emergenciais e encaminhamento para programas oficiais.";
|
|
500
|
-
readonly label: "18 famílias protegidas";
|
|
501
|
-
}];
|
|
422
|
+
causes: {
|
|
423
|
+
label: string;
|
|
424
|
+
title: string;
|
|
425
|
+
description: string;
|
|
426
|
+
cards: {
|
|
427
|
+
icon: string;
|
|
428
|
+
title: string;
|
|
429
|
+
description: string;
|
|
430
|
+
label: string;
|
|
431
|
+
}[];
|
|
502
432
|
};
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
}
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
readonly label: "2017";
|
|
518
|
-
readonly title: "Registro oficial";
|
|
519
|
-
readonly description: "Tornamo-nos uma ONG oficialmente registrada, abrindo portas para parcerias institucionais e captação estruturada de recursos.";
|
|
520
|
-
readonly span: "ONG registrada";
|
|
521
|
-
}, {
|
|
522
|
-
readonly label: "2020";
|
|
523
|
-
readonly title: "Resposta à pandemia";
|
|
524
|
-
readonly description: "Em 72 horas após o decreto de lockdown, mobilizamos 200 voluntários e distribuímos 1.800 cestas básicas em toda a região.";
|
|
525
|
-
readonly span: "1.800 cestas";
|
|
526
|
-
}, {
|
|
527
|
-
readonly label: "2024";
|
|
528
|
-
readonly title: "Presente";
|
|
529
|
-
readonly description: "Atuamos em 12 cidades, com mais de 80 voluntários fixos e impacto mensal direto em 500 famílias. A história continua.";
|
|
530
|
-
readonly span: "12 cidades";
|
|
531
|
-
}];
|
|
532
|
-
readonly anchor: {
|
|
533
|
-
readonly label: "Quero participar";
|
|
534
|
-
readonly href: "#";
|
|
535
|
-
};
|
|
536
|
-
readonly anchorTitle: "Fazer parte da história";
|
|
433
|
+
timeline: {
|
|
434
|
+
label: string;
|
|
435
|
+
title: string;
|
|
436
|
+
cards: {
|
|
437
|
+
label: string;
|
|
438
|
+
title: string;
|
|
439
|
+
description: string;
|
|
440
|
+
span: string;
|
|
441
|
+
}[];
|
|
442
|
+
anchor: {
|
|
443
|
+
label: string;
|
|
444
|
+
href: string;
|
|
445
|
+
};
|
|
446
|
+
anchorTitle: string;
|
|
537
447
|
};
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
}
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
readonly icon: "like-thumbs-up-sticker";
|
|
552
|
-
readonly title: "Doação recorrente";
|
|
553
|
-
readonly description: "Com R$30 por mês você garante alimentação de uma família por 30 dias. Qualquer valor, qualquer frequência, gera impacto real.";
|
|
554
|
-
}, {
|
|
555
|
-
readonly icon: "like-thumbs-up-sticker";
|
|
556
|
-
readonly title: "Pro bono profissional";
|
|
557
|
-
readonly description: "Advogados, médicos, designers, contadores — se você tem uma habilidade, temos uma causa que precisa dela. Ofereça seu tempo.";
|
|
558
|
-
}];
|
|
559
|
-
readonly anchorText: "Precisamos de 15 voluntários para o mutirão de saúde em abril.";
|
|
560
|
-
readonly anchor: {
|
|
561
|
-
readonly label: "Garantir minha vaga";
|
|
562
|
-
readonly href: "#";
|
|
448
|
+
getInvolved: {
|
|
449
|
+
label: string;
|
|
450
|
+
title: string;
|
|
451
|
+
description: string;
|
|
452
|
+
cards: {
|
|
453
|
+
icon: string;
|
|
454
|
+
title: string;
|
|
455
|
+
description: string;
|
|
456
|
+
}[];
|
|
457
|
+
anchorText: string;
|
|
458
|
+
anchor: {
|
|
459
|
+
label: string;
|
|
460
|
+
href: string;
|
|
563
461
|
};
|
|
564
462
|
};
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
};
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
}
|
|
574
|
-
readonly title: "Preciso ter experiência para ser voluntário?";
|
|
575
|
-
readonly description: "Não. Recebemos voluntários de todos os perfis e oferecemos orientação antes de cada ação. O que importa é a disposição de ajudar.";
|
|
576
|
-
}, {
|
|
577
|
-
readonly title: "Existe valor mínimo para doações?";
|
|
578
|
-
readonly description: "Não há valor mínimo. Qualquer contribuição, independente do montante, é aplicada diretamente nas comunidades atendidas.";
|
|
579
|
-
}, {
|
|
580
|
-
readonly title: "A organização é registrada oficialmente?";
|
|
581
|
-
readonly description: "Sim. Somos uma ONG devidamente registrada, com CNPJ ativo e auditoria contábil anual realizada por profissional independente.";
|
|
582
|
-
}, {
|
|
583
|
-
readonly title: "Como posso acompanhar o impacto da minha doação?";
|
|
584
|
-
readonly description: "Enviamos atualizações por e-mail a cada novo ciclo de ações e publicamos relatórios públicos no site com dados reais de cada projeto.";
|
|
585
|
-
}];
|
|
463
|
+
faq: {
|
|
464
|
+
anchor: {
|
|
465
|
+
label: string;
|
|
466
|
+
href: string;
|
|
467
|
+
};
|
|
468
|
+
questions: {
|
|
469
|
+
title: string;
|
|
470
|
+
description: string;
|
|
471
|
+
}[];
|
|
586
472
|
};
|
|
587
473
|
};
|
|
588
474
|
declare const PAGE_TEMPLATES: {
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
475
|
+
primary: {
|
|
476
|
+
header: {
|
|
477
|
+
span: string;
|
|
478
|
+
title: string;
|
|
479
|
+
description: string;
|
|
480
|
+
anchor: {
|
|
481
|
+
label: string;
|
|
482
|
+
href: string;
|
|
597
483
|
};
|
|
598
|
-
|
|
599
|
-
};
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
}
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
readonly moreInfoAbout: {
|
|
637
|
-
readonly title: "Historias reais de quem ajuda e de quem é ajudado";
|
|
638
|
-
readonly description: "Cada história aqui é de uma pessoa real, com nome, cidade e uma história que nos move a continuar todos os dias. ";
|
|
639
|
-
readonly heroImage: "https://images.ctfassets.net/kftzwdyauwt9/IPgFYDUMeUtWcg2ze2IsP/118ea87d54734ef3f49b432ee2a35b56/DALL_E_2024-07-17_16.25.57_-_Close-up_of_soft_pink_flower_petals_with_a_gentle_motion_blur_on_a_light_lavender_background__c.png?w=3840&q=90&fm=webp";
|
|
640
|
-
};
|
|
641
|
-
readonly depoiments: {
|
|
642
|
-
readonly title: "Depoimentos";
|
|
643
|
-
readonly description: "Veja o que as pessoas que ajudamos dizem sobre a gente:";
|
|
644
|
-
readonly cards: readonly [{
|
|
645
|
-
readonly content: "Obrigado por tudo que fizeram por mim e minha família.";
|
|
646
|
-
readonly author: {
|
|
647
|
-
readonly image: "https://sb.kaleidousercontent.com/67418/1920x1545/c5f15ac173/samuel-raita-ridxdghg7pw-unsplash.jpg";
|
|
648
|
-
readonly name: "Getulio dos Santos";
|
|
649
|
-
readonly city: "Capivari, SP";
|
|
650
|
-
};
|
|
651
|
-
}, {
|
|
652
|
-
readonly content: "Obrigado por tudo que fizeram por mim e minha família.";
|
|
653
|
-
readonly author: {
|
|
654
|
-
readonly image: "https://sb.kaleidousercontent.com/67418/1920x1545/c5f15ac173/samuel-raita-ridxdghg7pw-unsplash.jpg";
|
|
655
|
-
readonly name: "Getulio Aparecido dos Santos";
|
|
656
|
-
readonly city: "Capivari, SP";
|
|
657
|
-
};
|
|
658
|
-
}, {
|
|
659
|
-
readonly content: "Obrigado por tudo que fizeram por mim e minha família.";
|
|
660
|
-
readonly author: {
|
|
661
|
-
readonly image: "https://sb.kaleidousercontent.com/67418/1920x1545/c5f15ac173/samuel-raita-ridxdghg7pw-unsplash.jpg";
|
|
662
|
-
readonly name: "Getulio Aparecido dos Santos";
|
|
663
|
-
readonly city: "Capivari, SP";
|
|
484
|
+
heroImage: string;
|
|
485
|
+
};
|
|
486
|
+
ourMission: {
|
|
487
|
+
subtitle: string;
|
|
488
|
+
title: string;
|
|
489
|
+
description: string;
|
|
490
|
+
tabs: {
|
|
491
|
+
title: string;
|
|
492
|
+
description: string;
|
|
493
|
+
}[];
|
|
494
|
+
};
|
|
495
|
+
details: {
|
|
496
|
+
label: string;
|
|
497
|
+
title: string;
|
|
498
|
+
tabs: {
|
|
499
|
+
icon: string;
|
|
500
|
+
title: string;
|
|
501
|
+
description: string;
|
|
502
|
+
}[];
|
|
503
|
+
};
|
|
504
|
+
imagesGrid: {
|
|
505
|
+
title: string;
|
|
506
|
+
description: string;
|
|
507
|
+
};
|
|
508
|
+
moreInfoAbout: {
|
|
509
|
+
title: string;
|
|
510
|
+
description: string;
|
|
511
|
+
heroImage: string;
|
|
512
|
+
};
|
|
513
|
+
depoiments: {
|
|
514
|
+
title: string;
|
|
515
|
+
description: string;
|
|
516
|
+
cards: {
|
|
517
|
+
content: string;
|
|
518
|
+
author: {
|
|
519
|
+
image: string;
|
|
520
|
+
name: string;
|
|
521
|
+
city: string;
|
|
664
522
|
};
|
|
665
|
-
}];
|
|
523
|
+
}[];
|
|
666
524
|
};
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
525
|
+
faq: {
|
|
526
|
+
anchor: {
|
|
527
|
+
label: string;
|
|
528
|
+
href: string;
|
|
671
529
|
};
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
}
|
|
676
|
-
readonly title: "Posso acompanhar o impacto da minha contribuição?";
|
|
677
|
-
readonly description: "Sim! Enviamos atualizações periódicas por e-mail e também compartilhamos relatórios e histórias reais das pessoas beneficiadas nos nossos canais oficiais.";
|
|
678
|
-
}, {
|
|
679
|
-
readonly title: "Como posso me voluntariar?";
|
|
680
|
-
readonly description: "Você pode preencher nosso formulário de voluntariado disponível no site. Após isso, nossa equipe entrará em contato para alinhar sua disponibilidade e forma de atuação.";
|
|
681
|
-
}, {
|
|
682
|
-
readonly title: "A ONG é registrada e regulamentada?";
|
|
683
|
-
readonly description: "Sim, somos uma instituição oficializada e seguimos todas as diretrizes legais e contábeis necessárias para garantir credibilidade e responsabilidade.";
|
|
684
|
-
}, {
|
|
685
|
-
readonly title: "Além de doar, como posso ajudar?";
|
|
686
|
-
readonly description: "Você pode divulgar nosso trabalho, participar de campanhas, voluntariar seu tempo, ou até apoiar com serviços profissionais. Toda ajuda faz diferença!";
|
|
687
|
-
}];
|
|
530
|
+
questions: {
|
|
531
|
+
title: string;
|
|
532
|
+
description: string;
|
|
533
|
+
}[];
|
|
688
534
|
};
|
|
689
535
|
};
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
536
|
+
secondary: {
|
|
537
|
+
header: {
|
|
538
|
+
span: string;
|
|
539
|
+
title: string;
|
|
540
|
+
description: string;
|
|
541
|
+
anchor: {
|
|
542
|
+
label: string;
|
|
543
|
+
href: string;
|
|
698
544
|
};
|
|
699
|
-
|
|
700
|
-
};
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
}
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
readonly title: "Transparência";
|
|
718
|
-
readonly description: "Todas as doações são gerenciadas com responsabilidade e prestação de contas pública, garantindo confiança e credibilidade.";
|
|
719
|
-
}];
|
|
720
|
-
};
|
|
721
|
-
readonly howItWorks: {
|
|
722
|
-
readonly span: "Como funciona";
|
|
723
|
-
readonly title: "Veja como sua ajuda chega até quem mais precisa";
|
|
724
|
-
readonly description: "Nosso processo é simples e transparente: você doa, nós direcionamos os recursos para os projetos certos e você acompanha o impacto gerado em tempo real.";
|
|
725
|
-
readonly heroImage: "/templates/undraw_how-it-works.svg";
|
|
726
|
-
readonly anchor: {
|
|
727
|
-
readonly label: "Ver projetos ativos";
|
|
728
|
-
readonly href: "#";
|
|
545
|
+
button: string;
|
|
546
|
+
};
|
|
547
|
+
aboutUs: {
|
|
548
|
+
title: string;
|
|
549
|
+
cards: {
|
|
550
|
+
icon: string;
|
|
551
|
+
title: string;
|
|
552
|
+
description: string;
|
|
553
|
+
}[];
|
|
554
|
+
};
|
|
555
|
+
howItWorks: {
|
|
556
|
+
span: string;
|
|
557
|
+
title: string;
|
|
558
|
+
description: string;
|
|
559
|
+
heroImage: string;
|
|
560
|
+
anchor: {
|
|
561
|
+
label: string;
|
|
562
|
+
href: string;
|
|
729
563
|
};
|
|
730
564
|
};
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
};
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
}
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
readonly description: "Publicamos relatórios periódicos com o uso detalhado dos recursos. Porque quem doa merece saber exatamente onde sua contribuição chegou.";
|
|
747
|
-
readonly image: "https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1200&q=80";
|
|
748
|
-
}];
|
|
749
|
-
};
|
|
750
|
-
readonly faq: {
|
|
751
|
-
readonly anchor: {
|
|
752
|
-
readonly label: "Falar com a equipe";
|
|
753
|
-
readonly href: "#";
|
|
565
|
+
imagesGrid: {
|
|
566
|
+
title: string;
|
|
567
|
+
description: string;
|
|
568
|
+
};
|
|
569
|
+
moreInfoAbout: {
|
|
570
|
+
cards: {
|
|
571
|
+
title: string;
|
|
572
|
+
description: string;
|
|
573
|
+
image: string;
|
|
574
|
+
}[];
|
|
575
|
+
};
|
|
576
|
+
faq: {
|
|
577
|
+
anchor: {
|
|
578
|
+
label: string;
|
|
579
|
+
href: string;
|
|
754
580
|
};
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
}
|
|
759
|
-
readonly title: "Posso acompanhar o impacto da minha doação?";
|
|
760
|
-
readonly description: "Sim! Você receberá atualizações por e-mail e terá acesso a relatórios públicos com histórias reais e dados de impacto dos projetos que você apoiou.";
|
|
761
|
-
}, {
|
|
762
|
-
readonly title: "Como me tornar voluntário?";
|
|
763
|
-
readonly description: "Basta preencher o formulário de voluntariado no site. Nossa equipe entrará em contato para entender seu perfil e indicar a melhor forma de contribuição.";
|
|
764
|
-
}, {
|
|
765
|
-
readonly title: "A organização é oficialmente registrada?";
|
|
766
|
-
readonly description: "Sim, somos uma instituição devidamente registrada, seguindo todas as exigências legais e contábeis para garantir seriedade e credibilidade nas nossas ações.";
|
|
767
|
-
}, {
|
|
768
|
-
readonly title: "Existe valor mínimo para doações?";
|
|
769
|
-
readonly description: "Não há valor mínimo. Qualquer contribuição, por menor que seja, faz diferença real na vida das pessoas que atendemos.";
|
|
770
|
-
}, {
|
|
771
|
-
readonly title: "Como posso ajudar além de doações financeiras?";
|
|
772
|
-
readonly description: "Você pode divulgar nossos projetos, doar alimentos ou roupas, oferecer serviços profissionais pro bono ou simplesmente engajar nas nossas campanhas nas redes sociais.";
|
|
773
|
-
}];
|
|
581
|
+
questions: {
|
|
582
|
+
title: string;
|
|
583
|
+
description: string;
|
|
584
|
+
}[];
|
|
774
585
|
};
|
|
775
586
|
};
|
|
776
|
-
|
|
587
|
+
tertiary: {
|
|
777
588
|
header: {
|
|
778
589
|
span: string;
|
|
779
590
|
title: string;
|
|
@@ -862,142 +673,77 @@ declare const PAGE_TEMPLATES: {
|
|
|
862
673
|
}[];
|
|
863
674
|
};
|
|
864
675
|
};
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
676
|
+
quarternary: {
|
|
677
|
+
header: {
|
|
678
|
+
label: string;
|
|
679
|
+
title: string;
|
|
680
|
+
decoratedTitle: string;
|
|
681
|
+
description: string;
|
|
682
|
+
primaryAnchor: {
|
|
683
|
+
label: string;
|
|
684
|
+
href: string;
|
|
874
685
|
};
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
686
|
+
secondaryAnchor: {
|
|
687
|
+
label: string;
|
|
688
|
+
href: string;
|
|
878
689
|
};
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
}
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
readonly description: "Mutirões de saúde com médicos voluntários, distribuição de medicamentos e campanhas de vacinação em áreas remotas.";
|
|
910
|
-
readonly label: "8 mutirões realizados";
|
|
911
|
-
}, {
|
|
912
|
-
readonly icon: "like-thumbs-up-sticker";
|
|
913
|
-
readonly title: "Proteção e abrigo";
|
|
914
|
-
readonly description: "Suporte a famílias em situação de risco habitacional, com reformas emergenciais e encaminhamento para programas oficiais.";
|
|
915
|
-
readonly label: "18 famílias protegidas";
|
|
916
|
-
}];
|
|
917
|
-
};
|
|
918
|
-
readonly timeline: {
|
|
919
|
-
readonly label: "Nossa trajetória";
|
|
920
|
-
readonly title: "14 anos construídos um passo de cada vez.";
|
|
921
|
-
readonly cards: readonly [{
|
|
922
|
-
readonly label: "2010";
|
|
923
|
-
readonly title: "O começo";
|
|
924
|
-
readonly description: "Tudo começou com 5 voluntários e um carro lotado de mantimentos. Primeira distribuição no bairro Jardim das Flores, atendendo 12 famílias.";
|
|
925
|
-
readonly span: "12 famílias";
|
|
926
|
-
}, {
|
|
927
|
-
readonly label: "2013";
|
|
928
|
-
readonly title: "Expansão para saúde";
|
|
929
|
-
readonly description: "Parceria com médicos voluntários deu origem aos mutirões de saúde. Em seis meses, mais de 400 consultas realizadas gratuitamente.";
|
|
930
|
-
readonly span: "400+ consultas";
|
|
931
|
-
}, {
|
|
932
|
-
readonly label: "2017";
|
|
933
|
-
readonly title: "Registro oficial";
|
|
934
|
-
readonly description: "Tornamo-nos uma ONG oficialmente registrada, abrindo portas para parcerias institucionais e captação estruturada de recursos.";
|
|
935
|
-
readonly span: "ONG registrada";
|
|
936
|
-
}, {
|
|
937
|
-
readonly label: "2020";
|
|
938
|
-
readonly title: "Resposta à pandemia";
|
|
939
|
-
readonly description: "Em 72 horas após o decreto de lockdown, mobilizamos 200 voluntários e distribuímos 1.800 cestas básicas em toda a região.";
|
|
940
|
-
readonly span: "1.800 cestas";
|
|
941
|
-
}, {
|
|
942
|
-
readonly label: "2024";
|
|
943
|
-
readonly title: "Presente";
|
|
944
|
-
readonly description: "Atuamos em 12 cidades, com mais de 80 voluntários fixos e impacto mensal direto em 500 famílias. A história continua.";
|
|
945
|
-
readonly span: "12 cidades";
|
|
946
|
-
}];
|
|
947
|
-
readonly anchor: {
|
|
948
|
-
readonly label: "Quero participar";
|
|
949
|
-
readonly href: "#";
|
|
690
|
+
button: string;
|
|
691
|
+
heroImage: string;
|
|
692
|
+
stats: {
|
|
693
|
+
title: string;
|
|
694
|
+
description: string;
|
|
695
|
+
}[];
|
|
696
|
+
};
|
|
697
|
+
causes: {
|
|
698
|
+
label: string;
|
|
699
|
+
title: string;
|
|
700
|
+
description: string;
|
|
701
|
+
cards: {
|
|
702
|
+
icon: string;
|
|
703
|
+
title: string;
|
|
704
|
+
description: string;
|
|
705
|
+
label: string;
|
|
706
|
+
}[];
|
|
707
|
+
};
|
|
708
|
+
timeline: {
|
|
709
|
+
label: string;
|
|
710
|
+
title: string;
|
|
711
|
+
cards: {
|
|
712
|
+
label: string;
|
|
713
|
+
title: string;
|
|
714
|
+
description: string;
|
|
715
|
+
span: string;
|
|
716
|
+
}[];
|
|
717
|
+
anchor: {
|
|
718
|
+
label: string;
|
|
719
|
+
href: string;
|
|
950
720
|
};
|
|
951
|
-
|
|
952
|
-
};
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
}
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
readonly icon: "like-thumbs-up-sticker";
|
|
967
|
-
readonly title: "Doação recorrente";
|
|
968
|
-
readonly description: "Com R$30 por mês você garante alimentação de uma família por 30 dias. Qualquer valor, qualquer frequência, gera impacto real.";
|
|
969
|
-
}, {
|
|
970
|
-
readonly icon: "like-thumbs-up-sticker";
|
|
971
|
-
readonly title: "Pro bono profissional";
|
|
972
|
-
readonly description: "Advogados, médicos, designers, contadores — se você tem uma habilidade, temos uma causa que precisa dela. Ofereça seu tempo.";
|
|
973
|
-
}];
|
|
974
|
-
readonly anchorText: "Precisamos de 15 voluntários para o mutirão de saúde em abril.";
|
|
975
|
-
readonly anchor: {
|
|
976
|
-
readonly label: "Garantir minha vaga";
|
|
977
|
-
readonly href: "#";
|
|
721
|
+
anchorTitle: string;
|
|
722
|
+
};
|
|
723
|
+
getInvolved: {
|
|
724
|
+
label: string;
|
|
725
|
+
title: string;
|
|
726
|
+
description: string;
|
|
727
|
+
cards: {
|
|
728
|
+
icon: string;
|
|
729
|
+
title: string;
|
|
730
|
+
description: string;
|
|
731
|
+
}[];
|
|
732
|
+
anchorText: string;
|
|
733
|
+
anchor: {
|
|
734
|
+
label: string;
|
|
735
|
+
href: string;
|
|
978
736
|
};
|
|
979
737
|
};
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
738
|
+
faq: {
|
|
739
|
+
anchor: {
|
|
740
|
+
label: string;
|
|
741
|
+
href: string;
|
|
984
742
|
};
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
}
|
|
989
|
-
readonly title: "Preciso ter experiência para ser voluntário?";
|
|
990
|
-
readonly description: "Não. Recebemos voluntários de todos os perfis e oferecemos orientação antes de cada ação. O que importa é a disposição de ajudar.";
|
|
991
|
-
}, {
|
|
992
|
-
readonly title: "Existe valor mínimo para doações?";
|
|
993
|
-
readonly description: "Não há valor mínimo. Qualquer contribuição, independente do montante, é aplicada diretamente nas comunidades atendidas.";
|
|
994
|
-
}, {
|
|
995
|
-
readonly title: "A organização é registrada oficialmente?";
|
|
996
|
-
readonly description: "Sim. Somos uma ONG devidamente registrada, com CNPJ ativo e auditoria contábil anual realizada por profissional independente.";
|
|
997
|
-
}, {
|
|
998
|
-
readonly title: "Como posso acompanhar o impacto da minha doação?";
|
|
999
|
-
readonly description: "Enviamos atualizações por e-mail a cada novo ciclo de ações e publicamos relatórios públicos no site com dados reais de cada projeto.";
|
|
1000
|
-
}];
|
|
743
|
+
questions: {
|
|
744
|
+
title: string;
|
|
745
|
+
description: string;
|
|
746
|
+
}[];
|
|
1001
747
|
};
|
|
1002
748
|
};
|
|
1003
749
|
};
|