-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
executable file
·147 lines (146 loc) · 5.03 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./assets/favicon-32x32.png"
/>
<link rel="stylesheet" href="css/index.css" />
<script src="js/index.js" async></script>
<title>PayAPI | About</title>
</head>
<body>
<section id="__payapi-about">
<header>
<div class="container">
<nav>
<div class="nav-wrapper">
<a href="index.html">
<div class="logo">
<img
src="./assets/shared/desktop/logo.svg"
alt="payapi-logo"
/>
</div>
</a>
<ul class="navigation">
<li><a class="nav-link" href="/pricing.html">Pricing</a></li>
<li><a class="nav-link" href="/about.html">About</a></li>
<li><a class="nav-link" href="/contact.html">Contact</a></li>
</ul>
</div>
<div class="schedule">
<button class="p-btn">Schedule a Demo</button>
</div>
</nav>
</div>
</header>
<div class="about-content">
<div class="container">
<h1>
We empower innovators by delivering access to the financial system
</h1>
<div class="our-values">
<h2>Our Vision</h2>
<p>
Our main goal is to build beautiful consumer experiences along
with developer-friendly infrastructure. The result is an
intelligent tool that gives everyone the ability to create amazing
products that solve big problems. We are deeply focused on
democratizing financial services through technology.
</p>
</div>
<div class="our-values">
<h2>Our Business</h2>
<p>
At the core of our platform is the technical infrastructure APIs
that connect consumers. Our innovative product provides key
insights for businesses and individuals, as well as robust
reporting for traditional financial institutions and developers.
</p>
</div>
</div>
<div class="showcase"></div>
<div class="container">
<div class="data-facts">
<div class="fact">
<h3>Team Members</h3>
<h4>300+</h4>
</div>
<div class="fact">
<h3>Offices in the US</h3>
<h4>3</h4>
</div>
<div class="fact">
<h3>Transactions analyzed</h3>
<h4>10M+</h4>
</div>
</div>
<div class="our-values">
<h2>The Culture</h2>
<p>
We strongly believe there's always an opportunity to learn from
each other outside of day-to-day work, whether it's company-wide
offsites, internal hackathons, or co-worker meetups. We always
value cross-team collaboration and diversity of thought, no matter
the job title.
</p>
</div>
<div class="our-values people">
<h2>The People</h2>
<p>
We're all passionate about building a more efficient and inclusive
financial infrastructure together. At PayAPI, we have diverse
backgrounds and ski
</p>
</div>
<div class="start">
<h2>Ready to start?</h2>
<form class="s-leads" id="leads">
<input
type="email"
class="s-leads-input"
placeholder="Enter email address"
/>
<button type="submit" class="p-btn">Schedule a Demo</button>
</form>
</div>
</div>
</div>
</section>
<footer id="__payapi-footer">
<div class="container">
<nav>
<div class="footer-wrapper">
<div class="nav-wrapper">
<div class="logo">
<img
src="./assets/shared/desktop/logo-white.svg"
alt="payapi-logo"
/>
</div>
<ul class="navigation">
<li>
<a class="footer-nav-link" href="/pricing.html">Pricing</a>
</li>
<li><a class="footer-nav-link" href="/about.html">About</a></li>
<li>
<a class="footer-nav-link" href="/contact.html">Contact</a>
</li>
</ul>
</div>
<div class="social-media">
<a class="facebook" href="https://www.facebook.com/"></a>
<a class="twitter" href="https://www.twitter.com/"></a>
<a class="linkedin" href="https://www.linkedin.com/"></a>
</div>
</div>
</nav>
</div>
</footer>
</body>
</html>