-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
221 lines (197 loc) · 7.99 KB
/
index.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
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
<!DOCTYPE html5>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65"
crossorigin="anonymous">
<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=Montserrat:wght@400;800&family=Unbounded:wght@400;900&display=swap" rel="stylesheet">
<title>VisualPT</title>
<style>
body {
font: "Roboto";
text-align: center;
background: linear-gradient(180deg, #0091DAFF, #0091DA00);
background-repeat:no-repeat;
}
.navbar-nav {
margin-left: auto;
}
h1, a, h4 {
font-family: 'Montserrat', sans-serif;
font-weight: 800;
}
h2, h3 {
font-family: 'Montserrat', sans-serif;
font-weight: 400;
}
.app {
width: 200px;
height: 200px;
border:2px solid #777;
box-shadow: -4px 4px 200px #fa0;
border-radius:25px;
}
.parent {
position: relative;
top: 0;
left: 0;
}
.image1 {
position: relative;
height: 500px;
top: 0;
left: 0;
}
.image2 {
position: absolute;
height: 500px;
top: 50px;
left: 350px;
}
ul.clients {
list-style-type: "\2705";
text-align: left;
}
li h4 {
position: relative;
left: 20px;
}
.solution{
text-align: right;
}
.bottom {
padding-top: 100px;
padding-bottom: 100px;
}
.column {
margin: auto;
padding: 5px;
}
/* Clear floats after image containers */
.row::after {
content: "";
clear: both;
display: table;
}
.team-container {
display: flex;
justify-content: center;
align-items: start;
}
.team-member {
display: flex;
flex-direction: column;
align-items: center;
padding: 10px;
text-align: center;
text-wrap: balance;
}
</style>
</head>
<body>
<nav class="p-3 navbar navbar-default navbar-expand-lg navbar-light" role="navigation">
<a class="navbar-brand" href="index.html"> <img height="40" src="assets/vpt-logo.png" alt="Brand Logo"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse"
data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup"
aria-expanded="true" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-item nav-link" href="gaitr.html">GaitR</a>
</li>
<li class="nav-item active">
<a class="nav-item nav-link" href="privacy.html">Privacy</a>
</li>
<li class="nav-item">
<a class="nav-item nav-link"
href="https://github.com/charlieforward9/gaiter_site/issues/new">Contact
</a>
</li>
</ul>
</div>
</nav>
<h1>Accelerate Clinical Assessments</h1>
<img height="500" src="assets/vpt_demoscreen_home.png" alt="Demo Home Screen of VisualPT">
<h2>with Artificial Intelligence</h2>
<div class="container text-center">
<div class="col mx-center my-auto p-0">
<div class="row">
<a class="btn btn-link disabled" href="#">
<img height="60" src="assets/download-badge.svg" alt="Download on App Store image">
</a>
</div>
<h6>Coming Soon!</h6>
</div>
<div class="p-4">
<h1>Our Mission</h1>
<div class="m-0 p-0">
<h2>Enhance patient diagnosis by</h2>
<h2>turning visual data into usable insight</h2>
</div>
</div>
<div class="p-4">
<h1>Our Vision</h1>
<div class="m-0 p-0">
<h2>We want to build the <a href="https://en.wikipedia.org/wiki/Tricorder" target="_blank">tricorder</a> of the outpatient clinic and use it to free physicians, physical therapists and nurses from the drudgery of documentation.</h2>
</div>
</div>
<div class="p-4">
<h1>Our Team</h1>
<div class="team-container m-0 p-0">
<div class="team-member">
<img src="assets/tim_headshot.jpeg" alt="Tim Richardson" width="100" height="100">
<strong>Tim Richardson</strong>
<p>CEO</p>
</div>
<div class="team-member">
<img src="assets/richardson_headshot.jpeg" alt="Charles Richardson" width="100" height="100">
<strong>Charles Richardson</strong>
<p>Lead Software Engineer and CTO</p>
</div>
<div class="team-member">
<img src="assets/fox_headshot.jpeg" alt="NickFox" width="100" height="100">
<strong>Nick Fox</strong>
<p>Lead Data Scientist and CDO</p>
</div>
</div>
</div>
<div class="p-4">
<h1>Our Values</h1>
<div class="m-0 p-0">
<ul>
<li>
<strong>Data-driven, analytical</strong> - Visual data is rich and untapped. Better tools are needed. The PT profession currently uses intuitive, manual methods to capture and record this data that are slow and difficult to retrieve.
We want to use new, data discovery methods to improve physical therapist decision making.
</li>
<li>
<strong>Empathic, not sympathetic</strong> - “Healthcare is broken” or “US healthcare is too expensive” - it would be easy to fall into existing tropes that judge and criticize (and frequently, politicize) healthcare spending in the United States.
Our team understands healthcare professionals face difficult decisions every day. We want to use data to help them make better decisions.
</li>
<li>
<strong>Hard on the process; easy on the person</strong> - We're a small team, figuring stuff out in a pretty significant whitespace. We have fun and we enjoy the process.
</li>
</ul>
</div>
</div>
<div class="p-4">
<h1>Our Timeline</h1>
<div class="m-0 p-0">
<h2>Currently Under Development</h2>
<h2>Demo available by request</h2>
<h2>Public demo on iOS App Store late-Q3 2023</h2>
<h2>Market ready by 2024</h2>
</div>
</div>
</body>
</html>