-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.js
215 lines (202 loc) · 5.3 KB
/
variables.js
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
const banner = {
username: "Outerbridge",
title: "Automate Web3 and Web2 applications",
subTitle: "Outerbridge is a low code/no code automation tool to connect on-chain (Web3) and off-chain (Web2) applications.",
};
const feature1 = {
title: "Smart Contracts Integration",
subTitle: "Import verified smart contracts on supported networks to monitor events, function changes and etc.",
img: "/feature1.png",
}
const feature2 = {
title: "Crypto Wallet",
subTitle: "Create hot wallet to be able to automate signing transactions on blockchain using private key.",
img: "/feature5.png",
}
const feature3 = {
title: "If Else Branching",
subTitle: "Enable spliting of flows based on specified conditions, allowing for more flexible workflows.",
img: "/feature2.png",
}
const feature4 = {
title: "NodeJS and Solidity Scripts",
subTitle: "Write custom code in NodeJS and Solidity to build more complicated workflows.",
img: "/feature3.png",
}
const feature5 = {
title: "Saved Executions",
subTitle: "Every execution data from deployed workflows are saved, along with attachments and HTML.",
img: "/feature4.png",
}
const integrations = [
{
id: "1",
name: "Alchemy",
img: "/alchemy.svg",
},
{
id: "2",
name: "Infura",
img: "/infura.svg",
},
{
id: "3",
name: "Binance",
img: "/binance-logo.svg",
},
{
id: "4",
name: "BSC",
img: "/bnb-bnb-logo.svg",
},
{
id: "4",
name: "Ethereum",
img: "/ethereum-eth-logo.svg",
},
{
id: "1",
name: "Polygon",
img: "/polygon-matic-logo.svg",
},
{
id: "1",
name: "IPFS",
img: "/ipfs.svg",
},
{
id: "1",
name: "Optimsm",
img: "/optimsm.svg",
},
{
id: "1",
name: "Arbitrium",
img: "/arb.png",
},
{
id: "1",
name: "Discord",
img: "/discord.svg",
},
{
id: "1",
name: "Teams",
img: "/teams.svg",
},
{
id: "1",
name: "Webhook",
img: "/webhook.svg",
},
]
const customer =
[
"/alchemy.svg",
"/binance-logo.svg",
"/discord.svg",
"/infura.svg",
"/slack.svg",
"/teams.svg",
"/webhook.svg",
]
const whyus = [
{
title: "Apache 2.0 License",
desc: "Open source & free to self-host for personal & commercial use.",
img: "/license.svg",
},
{
title: "Integrated Web3 libraries",
desc: "Built-in logic of interacting with smart contracts & blockchains.",
img: "/blockchain.svg",
},
{
title: "Extensible Apps Integration",
desc: "Create custom apps integration or extend their functionalities.",
img: "/appsintegration.svg",
},
];
const pricesSection = [
{
title: "Self-Hosted",
price: "0",
subtitle: "Full control",
actionName: 'Get Started',
actionLink: 'https://docs.outerbridge.io/get-started',
bulletpoints: [
{
title: "Unlimited workflows",
available: "true",
},
{
title: "Unlimited executions",
available: "true",
},
{
title: "Unlimited contracts",
available: "true",
},
{
title: "Unlimited wallets",
available: "true",
},
{
title: "You own the data",
available: "true",
},
{
title: "Easy Npm or Docker installation",
available: "true",
},
],
},
{
title: "Cloud Community",
price: "0",
subtitle: "Hosted solution by Outerbridge",
actionName: 'Sign Up For Free',
actionLink: 'https://app.outerbridge.io',
bulletpoints: [
{
title: "Single user",
available: "true",
},
{
title: "20 workflows",
available: "true",
},
{
title: "250 daily executions",
available: "true",
},
{
title: "10 contracts",
available: "true",
},
{
title: "3 wallets",
available: "true",
},
{
title: "Support through community forum",
available: "true",
},
],
},
];
const testimonial = [
{
name: "Lucas Delbel",
title: "Software Engineer at Wisefy",
desc: "Outerbridge was one of the best discoveries we had recently, and rapidly became one of the core components of our project setups. The tool is beautifully built, incredibly intuitive, easy to use, and provide amazing resources for dealing with web3 and web2 interfaces and interactions. I highly recommend it to everyone, and the potential for the near future is overwhelming. The support is excellent, the creators are very attentive, and they are actively and constantly improving the project",
img: "https://outerbridgepage.s3.eu-west-1.amazonaws.com/lucas_testimonial.png",
},
{
name: "Johnson Chang",
title: 'Managing Director at Sernsoft',
desc: "At Sernsoft we help clients build projects in Web3 and Web2 spaces. We needed a tool to talk to onchain data and consume blockchain info like blocks, transaction etc. That's where Outerbridge comes into play, fits perfectly into the niche. Outerbridge simple interface makes it easy to automate our repetitive workflows across our existing Web3 and Web2 tech stacks",
img: "https://outerbridgepage.s3.eu-west-1.amazonaws.com/sernsoft_johnson.jpg",
},
];
export { banner, whyus, feature1, feature2, feature3, feature4, feature5, customer, integrations, testimonial, pricesSection};