@adia-ai/a2ui-corpus 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +101 -20
- package/catalog-a2ui_0_9.json +804 -41
- package/exemplars/_shell.css +88 -0
- package/exemplars/prose/auth-login/index.html +35 -26
- package/exemplars/prose/cta/a2ui.json +1 -1
- package/exemplars/prose/cta/chunks/prose-cta-card-1.json +1 -1
- package/exemplars/prose/cta/index.html +15 -33
- package/exemplars/prose/feature-grid/index.html +7 -17
- package/exemplars/prose/footer/index.html +8 -9
- package/exemplars/prose/hero/index.html +14 -24
- package/exemplars/prose/pricing/index.html +7 -17
- package/exemplars/prose/steps/index.html +8 -5
- package/exemplars/prose/testimonials/index.html +19 -16
- package/exemplars/ui/auth-login/index.html +27 -34
- package/package.json +1 -1
- package/patterns/_components.json +2 -2
- package/patterns/_index.json +131 -41
- package/patterns/data/chart-card-with-trend-footer.json +102 -0
- package/patterns/data/chart-card-with-trend-footer.yaml +56 -0
- package/patterns/data/chart-grid-with-kpis.json +314 -0
- package/patterns/data/chart-grid-with-kpis.yaml +63 -0
- package/patterns/data/chart-with-filter-pills.json +127 -0
- package/patterns/data/chart-with-filter-pills.yaml +76 -0
- package/patterns/data/stat-with-sparkline.json +67 -0
- package/patterns/data/stat-with-sparkline.yaml +51 -0
- package/fragments/content/chart-legend.json +0 -122
- package/fragments/form/rating-row.json +0 -31
- package/fragments/form/rating-row.yaml +0 -40
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Standalone-demo shell for AdiaUI corpus exemplars.
|
|
3
|
+
|
|
4
|
+
Each exemplar `index.html` loads this stylesheet so it can render
|
|
5
|
+
correctly when opened directly (out of the docs router shell). It
|
|
6
|
+
carries:
|
|
7
|
+
|
|
8
|
+
- body framing — flex-centered, padded, schemes set up via tokens
|
|
9
|
+
- section min-width — exemplar pages are intentionally desktop-shaped
|
|
10
|
+
- decoration classes — for the few pages that need a hero / split-
|
|
11
|
+
layout gradient that can't be expressed via component primitives
|
|
12
|
+
|
|
13
|
+
IMPORTANT — training-corpus contract: the exemplar HTML is harvested
|
|
14
|
+
for the gen-UI training pipeline. Per AGENTS.md, harvested files MUST
|
|
15
|
+
contain no `<style>` block and no `style="..."` attributes. Anything
|
|
16
|
+
in this stylesheet is allowed because it's loaded via `<link>`, not
|
|
17
|
+
inlined.
|
|
18
|
+
*/
|
|
19
|
+
|
|
20
|
+
body {
|
|
21
|
+
display: flex;
|
|
22
|
+
align-items: center;
|
|
23
|
+
justify-content: center;
|
|
24
|
+
padding: 2rem;
|
|
25
|
+
box-sizing: border-box;
|
|
26
|
+
}
|
|
27
|
+
body[data-anchor="bottom"] {
|
|
28
|
+
align-items: flex-end;
|
|
29
|
+
}
|
|
30
|
+
body > section,
|
|
31
|
+
body > footer {
|
|
32
|
+
min-width: 600px;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
/*
|
|
36
|
+
Footer-pattern link styling. footer-ui's own contract leaves <a>
|
|
37
|
+
unstyled (it doesn't slot links itself), so the prose/footer demo
|
|
38
|
+
legitimately needs a few tone + transition rules here. Defining
|
|
39
|
+
them in _shell.css keeps the harvested HTML from carrying any
|
|
40
|
+
inline style attributes for these.
|
|
41
|
+
*/
|
|
42
|
+
footer a {
|
|
43
|
+
color: var(--a-fg-subtle);
|
|
44
|
+
text-decoration: none;
|
|
45
|
+
font-size: var(--a-ui-md);
|
|
46
|
+
transition: color var(--a-duration-fast) var(--a-easing);
|
|
47
|
+
}
|
|
48
|
+
footer a:hover {
|
|
49
|
+
color: var(--a-fg);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
/*
|
|
53
|
+
Auth-login brand panel — split-screen hero with photographic
|
|
54
|
+
background + dark scrim. Used on the first card of
|
|
55
|
+
prose/auth-login. Class hook keeps the harvested HTML clean
|
|
56
|
+
while preserving the visual that motivates the pattern.
|
|
57
|
+
*/
|
|
58
|
+
.demo-brand-panel {
|
|
59
|
+
background:
|
|
60
|
+
linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.8)),
|
|
61
|
+
url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1200&q=80')
|
|
62
|
+
center/cover no-repeat;
|
|
63
|
+
min-height: 560px;
|
|
64
|
+
color: #fff;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
/*
|
|
68
|
+
Accent split-panel — used on the ui/auth-login split-layout card.
|
|
69
|
+
Lighter than the brand panel; just an accent-tinted surface with a
|
|
70
|
+
comfortable min-height so the form panel beside it doesn't collapse.
|
|
71
|
+
*/
|
|
72
|
+
.demo-accent-panel {
|
|
73
|
+
background: var(--a-accent-subtle);
|
|
74
|
+
min-height: 480px;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
/*
|
|
78
|
+
CTA hero card — photographic background with dark scrim. Used on
|
|
79
|
+
the centered CTA on prose/cta. Same shape as `.demo-brand-panel`
|
|
80
|
+
but with a different image; kept distinct so each page can be
|
|
81
|
+
retuned without leaking into the others.
|
|
82
|
+
*/
|
|
83
|
+
.demo-cta-hero {
|
|
84
|
+
background:
|
|
85
|
+
linear-gradient(to bottom right, rgba(0,0,0,0.7), rgba(0,0,0,0.85)),
|
|
86
|
+
url('https://images.unsplash.com/photo-1534972195531-d756b9bfa9f2?w=1200&q=80')
|
|
87
|
+
center/cover no-repeat;
|
|
88
|
+
}
|
|
@@ -4,9 +4,12 @@
|
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<title>Auth Login — AdiaUI Pattern</title>
|
|
7
|
-
<link rel="stylesheet" href="
|
|
8
|
-
<link rel="stylesheet" href="
|
|
9
|
-
<
|
|
7
|
+
<link rel="stylesheet" href="../../../../../web-components/styles/tokens.css" />
|
|
8
|
+
<link rel="stylesheet" href="../../../../../web-components/styles/themes.css" />
|
|
9
|
+
<link rel="stylesheet" href="../../../../../web-components/styles/resets.css" />
|
|
10
|
+
<link rel="stylesheet" href="../../../../../web-components/styles/components.css" />
|
|
11
|
+
<link rel="stylesheet" href="../../../../../web-components/styles/prose.css" />
|
|
12
|
+
<link rel="stylesheet" href="../../_shell.css" />
|
|
10
13
|
</head>
|
|
11
14
|
<body>
|
|
12
15
|
<section prose>
|
|
@@ -17,11 +20,11 @@
|
|
|
17
20
|
Full-width two-panel auth: brand story left, form right.
|
|
18
21
|
Inspired by Linear, Vercel, Stripe auth pages.
|
|
19
22
|
═══════════════════════════════════════════ -->
|
|
20
|
-
<card-ui
|
|
23
|
+
<card-ui>
|
|
21
24
|
<section bleed>
|
|
22
25
|
<grid-ui gap="0">
|
|
23
26
|
<!-- Brand panel -->
|
|
24
|
-
<col-ui data-scheme="dark" prose gap="6" justify="between"
|
|
27
|
+
<col-ui data-scheme="dark" prose gap="6" justify="between" class="demo-brand-panel">
|
|
25
28
|
<row-ui gap="1" align="center">
|
|
26
29
|
<icon-ui name="cube" size="md"></icon-ui>
|
|
27
30
|
<text-ui nomargin>Acme</text-ui>
|
|
@@ -52,7 +55,7 @@
|
|
|
52
55
|
</col-ui>
|
|
53
56
|
|
|
54
57
|
<!-- Form panel -->
|
|
55
|
-
<col-ui justify="center"
|
|
58
|
+
<col-ui justify="center">
|
|
56
59
|
<col-ui gap="2" align="center">
|
|
57
60
|
<h2 variant="title" nomargin>Welcome back</h2>
|
|
58
61
|
<p variant="body" color="subtle" nomargin>Sign in to your workspace to pick up where you left off.</p>
|
|
@@ -70,7 +73,9 @@
|
|
|
70
73
|
<input-ui label="Work email" placeholder="you@company.com" type="email"></input-ui>
|
|
71
74
|
<input-ui label="Password" placeholder="••••••••" type="password" suffix="eye-slash"></input-ui>
|
|
72
75
|
<row-ui justify="between" align="center" size="sm">
|
|
73
|
-
<
|
|
76
|
+
<field-ui inline label="Remember this device">
|
|
77
|
+
<check-ui name="remember"></check-ui>
|
|
78
|
+
</field-ui>
|
|
74
79
|
<a href="#">Forgot password?</a>
|
|
75
80
|
</row-ui>
|
|
76
81
|
<button-ui text="Sign in" variant="primary" stretch></button-ui>
|
|
@@ -101,7 +106,7 @@
|
|
|
101
106
|
Standalone registration with trust signals, feature
|
|
102
107
|
highlights, and embedded testimonial strip.
|
|
103
108
|
═══════════════════════════════════════════ -->
|
|
104
|
-
<col-ui gap="8" align="center"
|
|
109
|
+
<col-ui gap="8" align="center">
|
|
105
110
|
|
|
106
111
|
<!-- Hero copy -->
|
|
107
112
|
<header align="center" prose>
|
|
@@ -117,7 +122,7 @@
|
|
|
117
122
|
</header>
|
|
118
123
|
|
|
119
124
|
<!-- Form card -->
|
|
120
|
-
<card-ui elevation="2"
|
|
125
|
+
<card-ui elevation="2">
|
|
121
126
|
<section>
|
|
122
127
|
<col-ui gap="5">
|
|
123
128
|
<col-ui gap="2">
|
|
@@ -136,7 +141,9 @@
|
|
|
136
141
|
<input-ui label="Password" placeholder="Min. 8 characters" type="password"></input-ui>
|
|
137
142
|
</col-ui>
|
|
138
143
|
|
|
139
|
-
<
|
|
144
|
+
<field-ui inline label="I agree to the Terms of Service and Privacy Policy">
|
|
145
|
+
<check-ui size="sm" name="terms"></check-ui>
|
|
146
|
+
</field-ui>
|
|
140
147
|
|
|
141
148
|
<button-ui text="Create free account" variant="primary" stretch></button-ui>
|
|
142
149
|
|
|
@@ -182,7 +189,7 @@
|
|
|
182
189
|
When a teammate invites you — branded, contextual,
|
|
183
190
|
with workspace info and inviter details.
|
|
184
191
|
═══════════════════════════════════════════ -->
|
|
185
|
-
<col-ui gap="6" align="center"
|
|
192
|
+
<col-ui gap="6" align="center">
|
|
186
193
|
|
|
187
194
|
<header align="center" prose>
|
|
188
195
|
<col-ui gap="3">
|
|
@@ -194,7 +201,7 @@
|
|
|
194
201
|
</col-ui>
|
|
195
202
|
</header>
|
|
196
203
|
|
|
197
|
-
<card-ui elevation="1"
|
|
204
|
+
<card-ui elevation="1">
|
|
198
205
|
<section>
|
|
199
206
|
<col-ui gap="5">
|
|
200
207
|
<!-- Invitation context -->
|
|
@@ -248,7 +255,7 @@
|
|
|
248
255
|
Passwordless flow with rich email confirmation state,
|
|
249
256
|
resend controls, and alternative methods.
|
|
250
257
|
═══════════════════════════════════════════ -->
|
|
251
|
-
<col-ui gap="8" align="center"
|
|
258
|
+
<col-ui gap="8" align="center">
|
|
252
259
|
|
|
253
260
|
<header align="center" prose>
|
|
254
261
|
<col-ui gap="3">
|
|
@@ -262,7 +269,7 @@
|
|
|
262
269
|
</header>
|
|
263
270
|
|
|
264
271
|
<!-- Step 1: email entry -->
|
|
265
|
-
<card-ui
|
|
272
|
+
<card-ui>
|
|
266
273
|
<section>
|
|
267
274
|
<col-ui gap="4">
|
|
268
275
|
<input-ui label="Email address" placeholder="you@company.com" type="email"></input-ui>
|
|
@@ -276,7 +283,7 @@
|
|
|
276
283
|
</card-ui>
|
|
277
284
|
|
|
278
285
|
<!-- Step 2: check your email confirmation -->
|
|
279
|
-
<card-ui
|
|
286
|
+
<card-ui>
|
|
280
287
|
<section>
|
|
281
288
|
<col-ui gap="5" align="center">
|
|
282
289
|
<col-ui gap="1" align="center">
|
|
@@ -292,7 +299,7 @@
|
|
|
292
299
|
|
|
293
300
|
<divider-ui></divider-ui>
|
|
294
301
|
|
|
295
|
-
<col-ui gap="2"
|
|
302
|
+
<col-ui gap="2">
|
|
296
303
|
<button-ui text="Resend link" variant="outline" stretch icon="arrow-clockwise"></button-ui>
|
|
297
304
|
<button-ui text="Use a different email" variant="ghost" stretch icon="arrow-left"></button-ui>
|
|
298
305
|
</col-ui>
|
|
@@ -307,7 +314,7 @@
|
|
|
307
314
|
Three-stage flow: request → verify → success.
|
|
308
315
|
Rich feedback, contextual guidance, strength meter.
|
|
309
316
|
═══════════════════════════════════════════ -->
|
|
310
|
-
<col-ui gap="8" align="center"
|
|
317
|
+
<col-ui gap="8" align="center">
|
|
311
318
|
|
|
312
319
|
<header align="center" prose>
|
|
313
320
|
<col-ui gap="3">
|
|
@@ -320,7 +327,7 @@
|
|
|
320
327
|
</header>
|
|
321
328
|
|
|
322
329
|
<!-- Stage A: enter email -->
|
|
323
|
-
<card-ui
|
|
330
|
+
<card-ui>
|
|
324
331
|
<section>
|
|
325
332
|
<col-ui gap="4">
|
|
326
333
|
<col-ui gap="1">
|
|
@@ -335,7 +342,7 @@
|
|
|
335
342
|
</card-ui>
|
|
336
343
|
|
|
337
344
|
<!-- Stage B: enter code + new password -->
|
|
338
|
-
<card-ui
|
|
345
|
+
<card-ui>
|
|
339
346
|
<section>
|
|
340
347
|
<col-ui gap="4">
|
|
341
348
|
<col-ui gap="1">
|
|
@@ -376,7 +383,7 @@
|
|
|
376
383
|
</card-ui>
|
|
377
384
|
|
|
378
385
|
<!-- Stage C: success -->
|
|
379
|
-
<card-ui
|
|
386
|
+
<card-ui>
|
|
380
387
|
<section>
|
|
381
388
|
<col-ui gap="4" align="center">
|
|
382
389
|
<icon-ui name="check-circle" size="lg" color="success"></icon-ui>
|
|
@@ -396,7 +403,7 @@
|
|
|
396
403
|
Post-auth step: pick which workspace to enter.
|
|
397
404
|
Shows org info, role, last active timestamps.
|
|
398
405
|
═══════════════════════════════════════════ -->
|
|
399
|
-
<col-ui gap="6" align="center"
|
|
406
|
+
<col-ui gap="6" align="center">
|
|
400
407
|
|
|
401
408
|
<header align="center" prose>
|
|
402
409
|
<col-ui gap="3">
|
|
@@ -408,7 +415,7 @@
|
|
|
408
415
|
</col-ui>
|
|
409
416
|
</header>
|
|
410
417
|
|
|
411
|
-
<col-ui gap="3"
|
|
418
|
+
<col-ui gap="3">
|
|
412
419
|
<card-ui variant="outlined" interactive>
|
|
413
420
|
<section>
|
|
414
421
|
<row-ui gap="3" align="center" justify="between">
|
|
@@ -482,7 +489,7 @@
|
|
|
482
489
|
OTP entry with backup code option,
|
|
483
490
|
trusted device toggle, and session context.
|
|
484
491
|
═══════════════════════════════════════════ -->
|
|
485
|
-
<col-ui gap="6" align="center"
|
|
492
|
+
<col-ui gap="6" align="center">
|
|
486
493
|
|
|
487
494
|
<header align="center" prose>
|
|
488
495
|
<col-ui gap="3">
|
|
@@ -495,7 +502,7 @@
|
|
|
495
502
|
</col-ui>
|
|
496
503
|
</header>
|
|
497
504
|
|
|
498
|
-
<card-ui
|
|
505
|
+
<card-ui>
|
|
499
506
|
<section>
|
|
500
507
|
<col-ui gap="5">
|
|
501
508
|
<col-ui gap="3" align="center">
|
|
@@ -503,7 +510,9 @@
|
|
|
503
510
|
<otp-input-ui length="6" sixe="lg"></otp-input-ui>
|
|
504
511
|
</col-ui>
|
|
505
512
|
|
|
506
|
-
<
|
|
513
|
+
<field-ui inline label="Trust this device for 30 days">
|
|
514
|
+
<check-ui size="sm" name="trust_device"></check-ui>
|
|
515
|
+
</field-ui>
|
|
507
516
|
|
|
508
517
|
<button-ui text="Verify" variant="primary" stretch></button-ui>
|
|
509
518
|
|
|
@@ -533,7 +542,7 @@
|
|
|
533
542
|
</section>
|
|
534
543
|
|
|
535
544
|
<script type="module">
|
|
536
|
-
import "
|
|
545
|
+
import "../../../../../web-components/components/index.js";
|
|
537
546
|
</script>
|
|
538
547
|
</body>
|
|
539
548
|
</html>
|
|
@@ -4,49 +4,31 @@
|
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<title>Acme — CTA Patterns</title>
|
|
7
|
-
<link rel="stylesheet" href="
|
|
8
|
-
<link rel="stylesheet" href="
|
|
9
|
-
<
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
display: flex;
|
|
14
|
-
align-items: center;
|
|
15
|
-
justify-content: center;
|
|
16
|
-
padding: 2rem;
|
|
17
|
-
box-sizing: border-box;
|
|
18
|
-
font-family: var(--a-font-family);
|
|
19
|
-
background: var(--a-bg);
|
|
20
|
-
color: var(--a-fg);
|
|
21
|
-
}
|
|
22
|
-
body > section { min-width: 600px; }</style>
|
|
7
|
+
<link rel="stylesheet" href="../../../../../web-components/styles/tokens.css" />
|
|
8
|
+
<link rel="stylesheet" href="../../../../../web-components/styles/themes.css" />
|
|
9
|
+
<link rel="stylesheet" href="../../../../../web-components/styles/resets.css" />
|
|
10
|
+
<link rel="stylesheet" href="../../../../../web-components/styles/components.css" />
|
|
11
|
+
<link rel="stylesheet" href="../../../../../web-components/styles/prose.css" />
|
|
12
|
+
<link rel="stylesheet" href="../../_shell.css" />
|
|
23
13
|
</head>
|
|
24
14
|
<body>
|
|
25
15
|
<section prose>
|
|
26
16
|
<col-ui gap="16">
|
|
27
17
|
<!-- ━━━ CTA A: Centered CTA Card ━━━ -->
|
|
28
|
-
<card-ui
|
|
29
|
-
elevation="2"
|
|
30
|
-
data-scheme="dark"
|
|
31
|
-
style="
|
|
32
|
-
background:
|
|
33
|
-
linear-gradient(to bottom right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.85)),
|
|
34
|
-
url("https://images.unsplash.com/photo-1534972195531-d756b9bfa9f2?w=1200&q=80") center/cover no-repeat;
|
|
35
|
-
"
|
|
36
|
-
>
|
|
18
|
+
<card-ui elevation="2" data-scheme="dark" class="demo-cta-hero">
|
|
37
19
|
<header>
|
|
38
|
-
<col-ui align="center" gap="4"
|
|
39
|
-
<icon-ui name="
|
|
20
|
+
<col-ui align="center" gap="4">
|
|
21
|
+
<icon-ui name="hexagon"></icon-ui>
|
|
40
22
|
<text-ui variant="kicker">Ready to start?</text-ui>
|
|
41
23
|
<h2 variant="display" nomargin>Start building for free</h2>
|
|
42
|
-
<text-ui slot="description" variant="caption"
|
|
24
|
+
<text-ui slot="description" variant="caption">
|
|
43
25
|
Acme gives your team the tools to ship production-ready apps in days, not months. Start with our generous free tier and scale when you're
|
|
44
26
|
ready.
|
|
45
27
|
</text-ui>
|
|
46
28
|
</col-ui>
|
|
47
29
|
</header>
|
|
48
30
|
<section>
|
|
49
|
-
<col-ui align="center" gap="4"
|
|
31
|
+
<col-ui align="center" gap="4">
|
|
50
32
|
<row-ui gap="4" justify="center">
|
|
51
33
|
<button-ui text="Get Started Free" variant="primary" size="lg"></button-ui>
|
|
52
34
|
<button-ui text="Talk to Sales" variant="outline" size="lg"></button-ui>
|
|
@@ -73,7 +55,7 @@
|
|
|
73
55
|
<!-- ━━━ CTA B: Split CTA with Email Capture ━━━ -->
|
|
74
56
|
<col-ui gap="6">
|
|
75
57
|
<row-ui justify="between" align="center" gap="8" wrap>
|
|
76
|
-
<col-ui gap="3" grow basis="0"
|
|
58
|
+
<col-ui gap="3" grow basis="0">
|
|
77
59
|
<h2 variant="title" nomargin>Stay in the loop</h2>
|
|
78
60
|
<p variant="body" color="subtle" nomargin>Get weekly product updates, tips, and early access to new features.</p>
|
|
79
61
|
<row-ui gap="3">
|
|
@@ -106,7 +88,7 @@
|
|
|
106
88
|
<button-ui text="Start Free Trial" variant="primary" size="lg"></button-ui>
|
|
107
89
|
</col-ui>
|
|
108
90
|
</header>
|
|
109
|
-
<card-ui variant="outlined"
|
|
91
|
+
<card-ui variant="outlined">
|
|
110
92
|
<section>
|
|
111
93
|
<col-ui gap="4">
|
|
112
94
|
<icon-ui name="quotes" color="accent"></icon-ui>
|
|
@@ -130,14 +112,14 @@
|
|
|
130
112
|
<icon-ui name="star" weight="fill" color="warning"></icon-ui>
|
|
131
113
|
<icon-ui name="star" weight="fill" color="warning"></icon-ui>
|
|
132
114
|
<icon-ui name="star" weight="fill" color="warning"></icon-ui>
|
|
133
|
-
<span color="muted"
|
|
115
|
+
<span color="muted">4.9 average rating</span>
|
|
134
116
|
</row-ui>
|
|
135
117
|
</col-ui>
|
|
136
118
|
</col-ui>
|
|
137
119
|
</section>
|
|
138
120
|
|
|
139
121
|
<script type="module">
|
|
140
|
-
import "
|
|
122
|
+
import "../../../../../web-components/components/index.js";
|
|
141
123
|
</script>
|
|
142
124
|
</body>
|
|
143
125
|
</html>
|
|
@@ -4,22 +4,12 @@
|
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<title>AdiaUI Block — Feature Grid</title>
|
|
7
|
-
<link rel="stylesheet" href="
|
|
8
|
-
<link rel="stylesheet" href="
|
|
9
|
-
<
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
display: flex;
|
|
14
|
-
align-items: center;
|
|
15
|
-
justify-content: center;
|
|
16
|
-
padding: 2rem;
|
|
17
|
-
box-sizing: border-box;
|
|
18
|
-
font-family: var(--a-font-family);
|
|
19
|
-
background: var(--a-bg);
|
|
20
|
-
color: var(--a-fg);
|
|
21
|
-
}
|
|
22
|
-
body > section { min-width: 600px; }</style>
|
|
7
|
+
<link rel="stylesheet" href="../../../../../web-components/styles/tokens.css" />
|
|
8
|
+
<link rel="stylesheet" href="../../../../../web-components/styles/themes.css" />
|
|
9
|
+
<link rel="stylesheet" href="../../../../../web-components/styles/resets.css" />
|
|
10
|
+
<link rel="stylesheet" href="../../../../../web-components/styles/components.css" />
|
|
11
|
+
<link rel="stylesheet" href="../../../../../web-components/styles/prose.css" />
|
|
12
|
+
<link rel="stylesheet" href="../../_shell.css" />
|
|
23
13
|
</head>
|
|
24
14
|
<body>
|
|
25
15
|
<section prose>
|
|
@@ -97,7 +87,7 @@
|
|
|
97
87
|
</section>
|
|
98
88
|
|
|
99
89
|
<script type="module">
|
|
100
|
-
import "
|
|
90
|
+
import "../../../../../web-components/components/index.js";
|
|
101
91
|
</script>
|
|
102
92
|
</body>
|
|
103
93
|
</html>
|
|
@@ -4,15 +4,14 @@
|
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<title>AdiaUI Block — Footer</title>
|
|
7
|
-
<link rel="stylesheet" href="
|
|
8
|
-
<link rel="stylesheet" href="
|
|
9
|
-
<
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
body > section { min-width: 600px; }</style>
|
|
7
|
+
<link rel="stylesheet" href="../../../../../web-components/styles/tokens.css" />
|
|
8
|
+
<link rel="stylesheet" href="../../../../../web-components/styles/themes.css" />
|
|
9
|
+
<link rel="stylesheet" href="../../../../../web-components/styles/resets.css" />
|
|
10
|
+
<link rel="stylesheet" href="../../../../../web-components/styles/components.css" />
|
|
11
|
+
<link rel="stylesheet" href="../../../../../web-components/styles/prose.css" />
|
|
12
|
+
<link rel="stylesheet" href="../../_shell.css" />
|
|
14
13
|
</head>
|
|
15
|
-
<body>
|
|
14
|
+
<body data-anchor="bottom">
|
|
16
15
|
<footer prose>
|
|
17
16
|
<col-ui gap="8">
|
|
18
17
|
<!-- Top Section -->
|
|
@@ -104,7 +103,7 @@
|
|
|
104
103
|
</footer>
|
|
105
104
|
|
|
106
105
|
<script type="module">
|
|
107
|
-
import "
|
|
106
|
+
import "../../../../../web-components/components/index.js";
|
|
108
107
|
</script>
|
|
109
108
|
</body>
|
|
110
109
|
</html>
|
|
@@ -4,22 +4,12 @@
|
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<title>Prose — Hero</title>
|
|
7
|
-
<link rel="stylesheet" href="
|
|
8
|
-
<link rel="stylesheet" href="
|
|
9
|
-
<
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
display: flex;
|
|
14
|
-
align-items: center;
|
|
15
|
-
justify-content: center;
|
|
16
|
-
padding: 2rem;
|
|
17
|
-
box-sizing: border-box;
|
|
18
|
-
font-family: var(--a-font-family);
|
|
19
|
-
background: var(--a-bg);
|
|
20
|
-
color: var(--a-fg);
|
|
21
|
-
}
|
|
22
|
-
body > section { min-width: 600px; }</style>
|
|
7
|
+
<link rel="stylesheet" href="../../../../../web-components/styles/tokens.css" />
|
|
8
|
+
<link rel="stylesheet" href="../../../../../web-components/styles/themes.css" />
|
|
9
|
+
<link rel="stylesheet" href="../../../../../web-components/styles/resets.css" />
|
|
10
|
+
<link rel="stylesheet" href="../../../../../web-components/styles/components.css" />
|
|
11
|
+
<link rel="stylesheet" href="../../../../../web-components/styles/prose.css" />
|
|
12
|
+
<link rel="stylesheet" href="../../_shell.css" />
|
|
23
13
|
</head>
|
|
24
14
|
<body>
|
|
25
15
|
<section prose>
|
|
@@ -66,7 +56,7 @@
|
|
|
66
56
|
<!-- Product screenshot placeholder -->
|
|
67
57
|
<card-ui variant="outlined">
|
|
68
58
|
<section>
|
|
69
|
-
<col-ui align="center" justify="center" gap="2"
|
|
59
|
+
<col-ui align="center" justify="center" gap="2">
|
|
70
60
|
<icon-ui name="browser" size="lg" color="muted"></icon-ui>
|
|
71
61
|
<text-ui>Product screenshot</text-ui>
|
|
72
62
|
</col-ui>
|
|
@@ -101,11 +91,11 @@
|
|
|
101
91
|
<col-ui gap="3">
|
|
102
92
|
<row-ui gap="2" align="center">
|
|
103
93
|
<row-ui gap="-2" align="center">
|
|
104
|
-
<avatar-ui
|
|
105
|
-
<avatar-ui
|
|
106
|
-
<avatar-ui
|
|
107
|
-
<avatar-ui
|
|
108
|
-
<avatar-ui
|
|
94
|
+
<avatar-ui text="Alice Chen" size="sm"></avatar-ui>
|
|
95
|
+
<avatar-ui text="Bob Park" size="sm"></avatar-ui>
|
|
96
|
+
<avatar-ui text="Carol Diaz" size="sm"></avatar-ui>
|
|
97
|
+
<avatar-ui text="Dan Kumar" size="sm"></avatar-ui>
|
|
98
|
+
<avatar-ui text="Eva Novak" size="sm"></avatar-ui>
|
|
109
99
|
</row-ui>
|
|
110
100
|
<text-ui>12,000+ teams trust Acme</text-ui>
|
|
111
101
|
</row-ui>
|
|
@@ -116,7 +106,7 @@
|
|
|
116
106
|
<col-ui gap="4">
|
|
117
107
|
<card-ui elevation="2">
|
|
118
108
|
<section>
|
|
119
|
-
<col-ui align="center" justify="center" gap="2"
|
|
109
|
+
<col-ui align="center" justify="center" gap="2">
|
|
120
110
|
<icon-ui name="browser" size="lg" color="muted"></icon-ui>
|
|
121
111
|
<text-ui>Product screenshot</text-ui>
|
|
122
112
|
</col-ui>
|
|
@@ -221,7 +211,7 @@
|
|
|
221
211
|
</section>
|
|
222
212
|
|
|
223
213
|
<script type="module">
|
|
224
|
-
import "
|
|
214
|
+
import "../../../../../web-components/components/index.js";
|
|
225
215
|
</script>
|
|
226
216
|
</body>
|
|
227
217
|
</html>
|
|
@@ -4,22 +4,12 @@
|
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<title>AdiaUI Block — Pricing</title>
|
|
7
|
-
<link rel="stylesheet" href="
|
|
8
|
-
<link rel="stylesheet" href="
|
|
9
|
-
<
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
display: flex;
|
|
14
|
-
align-items: center;
|
|
15
|
-
justify-content: center;
|
|
16
|
-
padding: 2rem;
|
|
17
|
-
box-sizing: border-box;
|
|
18
|
-
font-family: var(--a-font-family);
|
|
19
|
-
background: var(--a-bg);
|
|
20
|
-
color: var(--a-fg);
|
|
21
|
-
}
|
|
22
|
-
body > section { min-width: 600px; }</style>
|
|
7
|
+
<link rel="stylesheet" href="../../../../../web-components/styles/tokens.css" />
|
|
8
|
+
<link rel="stylesheet" href="../../../../../web-components/styles/themes.css" />
|
|
9
|
+
<link rel="stylesheet" href="../../../../../web-components/styles/resets.css" />
|
|
10
|
+
<link rel="stylesheet" href="../../../../../web-components/styles/components.css" />
|
|
11
|
+
<link rel="stylesheet" href="../../../../../web-components/styles/prose.css" />
|
|
12
|
+
<link rel="stylesheet" href="../../_shell.css" />
|
|
23
13
|
</head>
|
|
24
14
|
<body>
|
|
25
15
|
<section prose>
|
|
@@ -302,7 +292,7 @@
|
|
|
302
292
|
</section>
|
|
303
293
|
|
|
304
294
|
<script type="module">
|
|
305
|
-
import "
|
|
295
|
+
import "../../../../../web-components/components/index.js";
|
|
306
296
|
</script>
|
|
307
297
|
</body>
|
|
308
298
|
</html>
|
|
@@ -4,13 +4,16 @@
|
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<title>AdiaUI Pattern — Steps</title>
|
|
7
|
-
<link rel="stylesheet" href="
|
|
8
|
-
<link rel="stylesheet" href="
|
|
9
|
-
<
|
|
7
|
+
<link rel="stylesheet" href="../../../../../web-components/styles/tokens.css" />
|
|
8
|
+
<link rel="stylesheet" href="../../../../../web-components/styles/themes.css" />
|
|
9
|
+
<link rel="stylesheet" href="../../../../../web-components/styles/resets.css" />
|
|
10
|
+
<link rel="stylesheet" href="../../../../../web-components/styles/components.css" />
|
|
11
|
+
<link rel="stylesheet" href="../../../../../web-components/styles/prose.css" />
|
|
12
|
+
<link rel="stylesheet" href="../../_shell.css" />
|
|
10
13
|
</head>
|
|
11
14
|
<body>
|
|
12
15
|
<section prose>
|
|
13
|
-
<col-ui gap="8"
|
|
16
|
+
<col-ui gap="8">
|
|
14
17
|
|
|
15
18
|
<!-- 1. Horizontal -->
|
|
16
19
|
<col-ui gap="3">
|
|
@@ -167,7 +170,7 @@
|
|
|
167
170
|
|
|
168
171
|
<script type="module" src="setup.js"></script>
|
|
169
172
|
<script type="module">
|
|
170
|
-
import "
|
|
173
|
+
import "../../../../../web-components/components/index.js";
|
|
171
174
|
</script>
|
|
172
175
|
</body>
|
|
173
176
|
</html>
|