-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
428 lines (426 loc) · 16.2 KB
/
index.html
File metadata and controls
428 lines (426 loc) · 16.2 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Anek+Telugu:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
<title>Swipe - Payments Platform for Everyone</title>
</head>
<body>
<!-- Navbar Section -->
<nav class="navbar">
<img src="assets/logo-white.svg" alt="Swipe, inc." />
<ul class="menu">
<li><a href="#">Products</a></li>
<li><a href="#">Solutions</a></li>
<li><a href="#">Developers</a></li>
<li><a href="#">Resources</a></li>
<li><a href="#">Pricing</a></li>
</ul>
<!-- Hamburger menu for Tablet/Mobile size -->
<div class="hamburger-button">
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
</div>
<button class="primary-button navbar-button">Sign In</button>
</nav>
<!-- Navbar section for Tablet/Mobile size -->
<div class="mobile-nav-container">
<nav class="mobile-navbar">
<div class="logo-and-button">
<div class="logo">
<img src="assets/logo-dark.svg" alt="Swipe, inc." />
</div>
<div class="close-button">
<div class="bar1"></div>
<div class="bar2"></div>
</div>
</div>
<div class="mobile-links">
<ul>
<li><a href="#">Products</a></li>
<li><a href="#">Solutions</a></li>
<li><a href="#">Developers</a></li>
<li><a href="#">Resources</a></li>
<li><a href="#">Pricing</a></li>
</ul>
</div>
<div class="sign-in-button">
<button class="primary-button with-icon">
Sign In
<img src="assets/arrow-right-light.svg" alt="" />
</button>
</div>
</nav>
</div>
<main>
<!-- Gradient Background -->
<canvas id="gradient-canvas"></canvas>
<!-- Hero Section -->
<div class="hero">
<div class="section-container two-column">
<div class="col-left">
<h1>Payments infrastructure for the world</h1>
<p>
Tons of companies all over the world use Swipe's seamless platform
to manage their business' entire financial transaction
infrastructure online
</p>
<div class="button-container">
<button class="primary-button with-icon">
Start now
<img src="assets/arrow-right-light.svg" alt="" />
</button>
<button class="secondary-button with-icon">
Contact sales
<img src="assets/arrow-right-purple.svg" alt="" />
</button>
</div>
</div>
<div class="col-right hero-phone-container">
<img class="hero-phone" src="assets/hero-phone.png" alt="" />
</div>
</div>
</div>
<!-- Partners Section -->
<div class="partners-section">
<div class="section-container">
<div class="partners-grid">
<img src="assets/instacart.png" alt="Instacart" />
<img src="assets/salesforce.png" alt="Salesforce" />
<img src="assets/amazon.png" alt="Amazon" />
<img src="assets/slack.png" alt="Slack" />
<img src="assets/shopify.png" alt="Shopify" />
<img src="assets/google.png" alt="Google" />
<img src="assets/lyft.png" alt="Lyft" />
<img src="assets/zoom.png" alt="Zoom" />
</div>
</div>
</div>
<!-- Unified Platform -->
<div class="unified-platform-section">
<div class="section-container">
<p class="subtitle">Unified Platform</p>
<h2>All the payment products you'll ever need</h2>
<div class="two-column">
<div class="col-left">
<p>
We've got everything you'll need and more to build website and
apps that handle payments, payouts, and much more. Swipe's
products power payments for
<a href="#">all kinds of retailers</a>,
<a href="#">all kinds of businesses</a>,
<a href="#">software platforms & marketplaces</a>, and
everything in between.
</p>
</div>
<div class="col-right">
<p>
We also help companies <a href="#">tackle fraud</a>,
<a href="#">issue invoices</a>,
<a href="#">send virtual and physical cards</a>,
<a href="#">manage financing</a>,
<a href="#">wrangle business spend</a>, and much more
</p>
</div>
</div>
<button class="primary-button with-icon">
Start now
<img src="assets/arrow-right-light.svg" alt="" />
</button>
</div>
</div>
<!-- Graphic Section -->
<div class="graphic-section">
<div class="section-container">
<div class="graphic-grid">
<img src="assets/credit-card.png" alt="" id="credit-card" />
<img src="assets/slack-invoice.png" alt="" id="slack-invoice" />
<img src="assets/phone.png" alt="" id="phone-image" />
<img src="assets/dash.png" alt="" id="dashboard" />
</div>
</div>
</div>
<!-- Integration Section -->
<div class="integration-section">
<div class="section-container two-column">
<div class="col-left">
<p class="subtitle2">Designed For Engineers</p>
<h2>The world's best and most intuitive APIs</h2>
<p>
We abstract the hard stuff away so your teams can focus on
building good technology, instead of spending time and money
reinventing the wheel.
</p>
<button class="primary-button with-icon">
Start now
<img src="assets/arrow-right-dark.svg" alt="" />
</button>
<div class="card-container">
<div class="card">
<img src="assets/tools-icon.png" alt="" class="icon" />
<h3>Tools for all stacks</h3>
<p class="secondary-text">
We offer front end and back end libraries in some of the most
widely used technologies, old and new
</p>
<button class="secondary-button with-icon">
See libraries
<img src="assets/arrow-right-blue.svg" alt="" />
</button>
</div>
<div class="card">
<img src="assets/cube-icon.png" alt="" class="icon" />
<h3>Custom integrations</h3>
<p class="secondary-text">
Use integrations for system like Shopify, WooCommerce,
Instacart, NetSuite, and more.
</p>
<button class="secondary-button with-icon">
Explore partners
<img src="assets/arrow-right-blue.svg" alt="" />
</button>
</div>
</div>
</div>
<div class="col-right">
<img src="assets/code.png" alt="" id="api-code" />
<img src="assets/terminal-code.png" alt="" id="terminal-code" />
</div>
</div>
</div>
<!-- Why Swipe Section -->
<div class="why-swipe-section">
<div class="section-container">
<p class="subtitle">Why Swipe</p>
<h2>A tech-first approach to finance</h2>
<div class="card-container">
<div class="card">
<img src="assets/cloud-icon.png" alt="" class="icon" />
<h3>Efficient always</h3>
<p class="secondary-text">
We've optimized every level of the finance stack, from
integrations to prebuilt checkout flows - no detail has been
spared.
</p>
</div>
<div class="card">
<img src="assets/cycle-icon.png" alt="" class="icon" />
<h3>Fast-improving</h3>
<p class="secondary-text">
We make constant updates and improvements to help you stay on
the cutting edge of your industry, deploying to production
around 20X per day!
</p>
</div>
<div class="card">
<img src="assets/shield-icon.png" alt="" class="icon" />
<h3>Tried and true</h3>
<p class="secondary-text">
Our systems operate with 100% uptime, with scalability and
uptime as a guarantee. Swipe is super duper certified so don't
worry.
</p>
</div>
<div class="card">
<img src="assets/bars-icon.png" alt="" class="icon" />
<h3>Crazy optimized</h3>
<p class="secondary-text">
We use machine learning trained on billions of data points to
help optimize all products, from fraud to revenue recovery and
more.
</p>
</div>
</div>
</div>
</div>
<!-- Global Section -->
<div class="global-section">
<div class="section-container">
<div class="two-column">
<div class="col-left">
<p class="subtitle2">Global scale</p>
<h2>A structure for global businesses</h2>
<p>
Swipe makes moving money simple, borderless, and programmable -
just like the rest of the internet. We have teams all over the
world and we process billions and billions of dollars yearly for
<a href="#">Startups, Fortune 500s, and everything in between</a
>.
</p>
</div>
<div class="col-right">
<img src="assets/global-graphic.png" alt="" id="globe" />
</div>
</div>
<div class="card-container">
<div class="card">
<h3>250M+</h3>
<p class="secondary-text">
API requests each day, peaking at 15,000 requests a second.
</p>
</div>
<div class="card">
<h3>97%</h3>
<p class="secondary-text">
of US adults have bought from businesses that use Swipe.
</p>
</div>
<div class="card">
<h3>135+</h3>
<p class="secondary-text">
currencies and payment methods supported.
</p>
</div>
<div class="card">
<h3>35+</h3>
<p class="secondary-text">
countried with local acquiring, optimzing acceptance rates.
</p>
</div>
</div>
</div>
</div>
<!-- Virtual Events Section -->
<div class="virtual-events-section">
<div class="section-container two-column">
<div class="col-left">
<p class="subtitle">Virtual events</p>
<h2>Check out Sessions now!</h2>
<p>
Swipe Sessions is our annual conference - it's now available to
watch on demand! Check it out and become an "internet economy"
genius, and see how Swipe can trasform the way you do business
online.
</p>
<button class="primary-button with-icon">
Start now
<img src="assets/arrow-right-light.svg" alt="" />
</button>
</div>
<div class="col-right">
<div class="swipe-sessions-card">
<div class="card-top">
<img
src="assets/swipe-sessions.png"
alt=""
id="sessions-logo"
/>
<div class="avatars">
<img src="assets/avatar1.png" alt="" />
<img src="assets/avatar2.png" alt="" />
</div>
</div>
<div class="card-bottom">
<div class="card-content">
<p class="subtitle">Keynote</p>
<p class="secondary-text">
Everything you need to know about the internet economy
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Getting Started Section -->
<div class="getting-started-section">
<div class="section-container two-column">
<div class="col-left">
<h2>What are you waiting for?</h2>
<p>
Explore <a href="#">Swipe</a> now, or create an account and start
accepting payments today! If you need a custom package for your
business, let's chat today.
</p>
<button class="primary-button with-icon">
Start Now
<img src="assets/arrow-right-light.svg" alt="" />
</button>
</div>
<div class="col-right">
<div class="card">
<img src="assets/shield-icon.png" alt="" class="icon" />
<h3>Always know what you pay</h3>
<p class="secondary-text">
Integrated per-transaction pricing with no hidden fees.
</p>
<button class="secondary-button with-icon">
Pricing details
<img src="assets/arrow-right-purple.svg" alt="" />
</button>
</div>
<div class="card">
<img src="assets/bars-icon.png" alt="" class="icon" />
<h3>Start your integration</h3>
<p class="secondary-text">
Get up and running with Stripe in as little as 10 minutes.
</p>
<button class="secondary-button with-icon">
API reference
<img src="assets/arrow-right-purple.svg" alt="" />
</button>
</div>
</div>
</div>
</div>
<footer class="footer">
<div class="section-container">
<div class="col">
<img src="assets/logo-dark.svg" alt="" id="footer-logo" />
<div class="icon-link">
<img src="assets/location-icon.png" alt="" />
<a href="#">India</a>
</div>
<div class="icon-link">
<img src="assets/comment-icon.png" alt="" />
<a href="#">English (India)</a>
</div>
</div>
<div class="col">
<h3>Products</h3>
<ul>
<li><a href="#">Atlas</a></li>
<li><a href="#">Billing</a></li>
<li><a href="#">Invoicing</a></li>
<li><a href="#">Payments</a></li>
<li><a href="#">Checkout</a></li>
<li><a href="#">Identity</a></li>
</ul>
</div>
<div class="col">
<h3>Use Cases</h3>
<ul>
<li><a href="#">eCommerce</a></li>
<li><a href="#">SaaS</a></li>
<li><a href="#">Marketplaces</a></li>
<li><a href="#">Embedded Finance</a></li>
<li><a href="#">Crypto</a></li>
<li><a href="#">Creator Economy</a></li>
</ul>
</div>
<div class="col">
<h3>Resources</h3>
<ul>
<li><a href="#">Support Center</a></li>
<li><a href="#">Guides</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Licenses</a></li>
<li><a href="#">Privacy & Terms</a></li>
<li><a href="#">Cookie Settings</a></li>
</ul>
</div>
</div>
</footer>
</main>
<script src="gradient.js"></script>
<script src="script.js"></script>
</body>
</html>