-
Notifications
You must be signed in to change notification settings - Fork 47
/
index.html
393 lines (344 loc) · 11.4 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
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
<!DOCTYPE html>
<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, viewport-fit=cover">
<link rel="icon" href="favicon.ico">
<title>Uplus Application</title>
<meta name="description"
content="The Uplus application showcases how a web application can be integrated with the Pega Platform around Mashup, Web-Embed, Co-Browse, Pega chat and Knowledge Management as well as with Customer Decision Hub for offers and realtime streams." />
<meta name="author" content="Pega Front-end Team" />
<meta itemprop="name" content="Uplus Application" />
<meta itemprop="image" content="https://pegasystems.github.io/uplus-wss/img/uplus-view.png" />
<meta property="og:title" content="Uplus Application" />
<meta property="og:description"
content="The Uplus application showcases how a web application can be integrated with the Pega Platform around Mashup, Web-Embed, Co-Browse, Pega chat and Knowledge Management as well as with Customer Decision Hub for offers and realtime streams." />
<meta property="og:url" content="https://pegasystems.github.io/uplus-wss/" />
<meta property="og:image" content="https://pegasystems.github.io/uplus-wss/img/uplus-view.png" />
<meta property="og:site_name" content="Uplus Application" />
<meta property="og:type" content="article" />
<style>
@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 300 700;
font-display: swap;
src: url('./fonts/Inter-Normal.woff2') format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
*,
:after,
:before {
box-sizing: border-box;
}
body {
font: 16px/1.2 'Inter', sans-serif;
padding: 14px;
}
h1 {
text-align: center;
}
.card-grid {
list-style: none;
padding: 0;
display: grid;
grid-gap: 24px;
}
li {
background: #FFF;
position: relative;
}
a {
text-decoration: none;
}
.card-grid a:after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
border-radius: 20px;
border: 3px solid rgba(0, 0, 0, .2);
box-shadow: 3px 3px 8px rgba(0, 0, 0, .2);
}
a:focus,
a:hover,
a:active {
outline: none;
}
.card-grid a:focus:after,
.card-grid a:hover:after,
.card-grid a:active:after {
box-shadow: none;
border-color: #295ed9;
}
p {
color: #050505;
font-size: 18px;
padding: 14px;
margin: 0;
text-align: center;
}
img {
margin: 14px 14px 7px 14px;
height: 26px;
}
.image>div {
flex: 1;
}
@media (min-width: 650px) and (max-width: 1300px) {
.card-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (min-width: 1300px) and (max-width: 1950px) {
.card-grid {
grid-template-columns: repeat(4, 1fr);
}
}
@media (min-width: 1950px) and (max-width: 2600px) {
.card-grid {
grid-template-columns: repeat(6, 1fr);
}
}
@media (min-width: 2600px) {
.card-grid {
grid-template-columns: repeat(8, 1fr);
}
}
.card-1 {
background: url('./retail_bank/img/hero-1.svg') 100% 0 no-repeat;
}
.card-1>div {
background: url('./retail_bank/img/Hero.webp') 100% 100% / contain no-repeat;
}
.card-2 {
background: url('./commercial_bank/img/hero-1.svg') 100% 0 no-repeat;
}
.card-2>div {
background: url('./commercial_bank/img/Hero.webp') 100% 100% / contain no-repeat;
}
.card-3 {
background: url('./comms/img/hero-1.svg') 100% 0 no-repeat;
}
.card-3>div {
background: url('./comms/img/Hero.webp') 100% 100% / contain no-repeat;
}
.card-4 {
background: url('./insurance/img/hero-1.svg') 100% 0 no-repeat;
}
.card-4>div {
background: url('./insurance/img/Hero.webp') 100% 100% / contain no-repeat;
}
.card-5 {
background: url('./health_payer/img/hero-1.svg') 100% 0 no-repeat;
}
.card-5>div {
background: url('./health_payer/img/Hero.webp') 100% 100% / contain no-repeat;
}
.card-6 {
background: url('./health_provider/img/hero-1.svg') 100% 0 no-repeat;
}
.card-6>div {
background: url('./health_provider/img/Hero.webp') 100% 100% / contain no-repeat;
}
.card-7 {
background: url('./health_care/img/hero-1.svg') 100% 0 no-repeat;
}
.card-7>div {
background: url('./health_care/img/Hero.webp') 100% 100% / contain no-repeat;
}
.card-8 {
background: url('./health_pharma/img/hero-1.svg') 100% 0 no-repeat;
}
.card-8>div {
background: url('./health_pharma/img/Hero.webp') 100% 100% / contain no-repeat;
}
.card-9 {
background: url('./gov/img/hero-1.svg') 100% 0 no-repeat;
}
.card-9>div {
background: url('./gov/img/Hero.webp') 100% 100% / contain no-repeat;
}
.card-10 {
background: url('./manufacturing/img/hero-1.svg') 100% 0 no-repeat;
}
.card-10>div {
background: url('./manufacturing/img/Hero.webp') 100% 100% / contain no-repeat;
}
.card-11 {
background: url('./auto/img/hero-1.svg') 100% 0 no-repeat;
}
.card-11>div {
background: url('./auto/img/Hero.webp') 100% 100% / contain no-repeat;
}
.card-12 {
background: url('./wealth/img/hero-1.svg') 100% 0 no-repeat;
}
.card-12>div {
background: url('./wealth/img/Hero.webp') 100% 100% / contain no-repeat;
}
.card-13 {
background: url('./travel/img/hero-1.svg') 100% 0 no-repeat;
}
.card-13>div {
background: url('./travel/img/Hero.webp') 100% 100% / contain no-repeat;
}
.card-14 {
background: url('./energy/img/hero-1.svg') 100% 0 no-repeat;
}
.card-14>div {
background: url('./energy/img/Hero.webp') 100% 100% / contain no-repeat;
}
.image {
min-height: 200px;
display: flex;
justify-items: center;
flex-flow: column;
background-size: contain;
}
</style>
</head>
<body>
<main>
<h1>Uplus Application</h1>
<p class='description'>The Uplus application is a typical web application built as a Progressive Web Application
(PWA) with one of the latest framework (Vue.js). It showcases how a Single Page Application (SPA) can be
integrated with the Pega Platform around Mashup, Web-Embed, Co-Browse, Pega chat and Knowledge Management as well
as with
Customer Decision Hub for offers and realtime streams. It demonstrates how these technologies can be integrated
with a typical consumer grade web application to provide a seamingless experience and interaction. The source code
is available on <a href='https://github.com/pegasystems/uplus-wss'>github</a>.</p>
<ul class="card-grid">
<li>
<a aria-label="Retail banking" aria-describedby="card-1" href="./retail_bank/index.html">
<img alt='' src='./retail_bank/img/u+-logo.svg' />
<div class='image card-1'>
<div></div>
</div>
<p id='card-1'>Retail Banking</p>
</a>
</li>
<li>
<a aria-label="Commercial Banking" aria-describedby="card-2" href="./commercial_bank/index.html">
<img alt='' src='./commercial_bank/img/u+-logo.svg' />
<div class='image card-2'>
<div></div>
</div>
<p id='card-2'>Commercial Banking</p>
</a>
</li>
<li>
<a aria-label="Communications" aria-describedby="card-3" href="./comms/index.html">
<img alt='' src='./comms/img/u+-logo.svg' />
<div class='image card-3'>
<div></div>
</div>
<p id='card-3'>Communications</p>
</a>
</li>
<li>
<a aria-label="Insurance" aria-describedby="card-4" href="./insurance/index.html">
<img alt='' src='./insurance/img/u+-logo.svg' />
<div class='image card-4'>
<div></div>
</div>
<p id='card-4'>Insurance</p>
</a>
</li>
<li>
<a aria-label="U+ Health for members" aria-describedby="card-5" href="./health_payer/index.html">
<img alt='' src='./health_payer/img/u+-logo.svg' />
<div class='image card-5'>
<div></div>
</div>
<p id='card-5'>Health plans for members</p>
</a>
</li>
<li>
<a aria-label="U+ Health for providers" aria-describedby="card-6" href="./health_provider/index.html">
<img alt='' src='./health_provider/img/u+-logo.svg' />
<div class='image card-6'>
<div></div>
</div>
<p id='card-6'>Health plans for providers</p>
</a>
</li>
<li>
<a aria-label="Health systems for patients" aria-describedby="card-7" href="./health_care/index.html">
<img alt='' src='./health_care/img/u+-logo.svg' />
<div class='image card-7'>
<div></div>
</div>
<p id='card-7'>Health systems for patients</p>
</a>
</li>
<li>
<a aria-label="Life science for patients" aria-describedby="card-8" href="./health_pharma/index.html">
<img alt='' src='./health_pharma/img/u+-logo.svg' />
<div class='image card-8'>
<div></div>
</div>
<p id='card-8'>Life science for patients</p>
</a>
</li>
<li>
<a aria-label="Government for constituants" aria-describedby="card-9" href="./gov/index.html">
<img alt='' src='./gov/img/u+-logo.svg' />
<div class='image card-9'>
<div></div>
</div>
<p id='card-9'>Government for constituants</p>
</a>
</li>
<li>
<a aria-label="Manufacturing and technology" aria-describedby="card-10" href="./manufacturing/index.html">
<img alt='' src='./manufacturing/img/u+-logo.svg' />
<div class='image card-10'>
<div></div>
</div>
<p id='card-10'>Manufacturing and technology</p>
</a>
</li>
<li>
<a aria-label="Auto" aria-describedby="card-11" href="./auto/index.html">
<img alt='' src='./auto/img/u+-logo.svg' />
<div class='image card-11'>
<div></div>
</div>
<p id='card-11'>Auto</p>
</a>
</li>
<li>
<a aria-label="Wealth Manager" aria-describedby="card-12" href="./wealth/index.html">
<img alt='' src='./wealth/img/u+-logo.svg' />
<div class='image card-12'>
<div></div>
</div>
<p id='card-12'>Wealth Management</p>
</a>
</li>
<li>
<a aria-label="Travel" aria-describedby="card-13" href="./travel/index.html">
<img alt='' src='./travel/img/u+-logo.svg' />
<div class='image card-13'>
<div></div>
</div>
<p id='card-13'>Travel services</p>
</a>
</li>
<li>
<a aria-label="Energy" aria-describedby="card-14" href="./energy/index.html">
<img alt='' src='./energy/img/u+-logo.svg' />
<div class='image card-14'>
<div></div>
</div>
<p id='card-14'>Energy services</p>
</a>
</li>
</ul>
</main>
</body>
</html>