-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathfaq-data.ts
More file actions
85 lines (83 loc) · 2.99 KB
/
Copy pathfaq-data.ts
File metadata and controls
85 lines (83 loc) · 2.99 KB
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
export interface FaqItem {
question: string;
answer: string;
}
/** When the FAQ content was last reviewed; shown under the page title. */
export const FAQ_LAST_UPDATED = 'Last Updated June 2026';
export const FAQ_ITEMS: FaqItem[] = [
{
question: 'What types of opportunities are available?',
answer:
'Hackathons, grants, bounties, crowdfunding campaigns, and community initiatives.',
},
{
question: 'Can I launch my own program?',
answer:
'Yes. Organizations and communities can create funding programs, challenges, and campaigns.',
},
{
question: 'Do I need cryptocurrency to use Boundless?',
answer:
'No. Boundless is designed to help people discover and participate in opportunities regardless of their technical background.',
},
{
question: 'Who can use Boundless?',
answer:
'Developers, designers, researchers, founders, creators, students, nonprofits, and communities.',
},
{
question: 'What is Boundless?',
answer:
'Boundless is a platform where people can complete work, join hackathons, raise funds, and apply for grants—all from one account.',
},
{
question: 'How do I get paid?',
answer:
'Payments are released directly to your Boundless wallet once work or milestones are approved.',
},
{
question: 'What kind of work can I find on Boundless?',
answer:
'You can find opportunities in development, design, writing, research, marketing, community management, and more.',
},
{
question: 'How does escrow work?',
answer:
'Funds are locked before work begins and released only when agreed requirements are completed.',
},
{
question: 'Can teams use Boundless?',
answer:
'Yes. Teams and organizations can post opportunities, run hackathons, launch campaigns, and manage contributors.',
},
{
question: "What happens if there's a dispute?",
answer:
'A review process helps resolve disagreements fairly, using submitted work and project requirements as evidence.',
},
{
question: 'How does reputation work?',
answer:
'Your activity and completed work contribute to a reputation score that helps showcase your track record.',
},
{
question: 'Can I use Boundless from any country?',
answer:
'Boundless is designed for a global audience, though some features may vary depending on local regulations and availability.',
},
{
question: 'Is there a fee to join?',
answer:
'Creating an account and exploring the platform is free. Any applicable fees are clearly shown before transactions are made.',
},
{
question: 'How do I apply for a grant?',
answer:
'Browse available grant programs, review the requirements, and submit your proposal through the platform.',
},
{
question: 'What makes Boundless different?',
answer:
'Boundless combines opportunities, funding, accountability, and reputation into one platform, making it easier to discover, fund, and complete meaningful work.',
},
];