@birdapi/velinstyle 1.2.1 → 1.3.0

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.
Files changed (156) hide show
  1. package/README.de.md +148 -11
  2. package/README.md +174 -16
  3. package/cli/__fixtures__/atelier-library/showcases/01-login/app.css +1 -0
  4. package/cli/__fixtures__/atelier-library/showcases/01-login/app.js +2 -0
  5. package/cli/__fixtures__/atelier-library/showcases/01-login/index.html +5 -0
  6. package/cli/__fixtures__/atelier-library/showcases/04-pricing/app.css +1 -0
  7. package/cli/__fixtures__/atelier-library/showcases/04-pricing/app.js +2 -0
  8. package/cli/__fixtures__/atelier-library/showcases/04-pricing/index.html +5 -0
  9. package/cli/__fixtures__/atelier-library/showcases/36-calendar/app.css +1 -0
  10. package/cli/__fixtures__/atelier-library/showcases/36-calendar/app.js +2 -0
  11. package/cli/__fixtures__/atelier-library/showcases/36-calendar/index.html +5 -0
  12. package/cli/atelier-catalog.json +1267 -0
  13. package/cli/atelier-formats.js +159 -0
  14. package/cli/atelier.js +382 -0
  15. package/cli/blueprints/empty-state.html +3 -5
  16. package/cli/cli-manifest.json +441 -161
  17. package/cli/docgen/extract-cli.js +2 -1
  18. package/cli/docs-generate.js +9 -0
  19. package/cli/experience.js +173 -0
  20. package/cli/index.js +1384 -361
  21. package/cli/motion.js +738 -0
  22. package/cli/production/component-graph.json +166 -0
  23. package/cli/production/explain.js +52 -0
  24. package/cli/production/extract.js +278 -0
  25. package/cli/production/graph.js +102 -0
  26. package/cli/production/report.js +168 -0
  27. package/cli/production/run.js +355 -0
  28. package/cli/production/trim-css.js +177 -0
  29. package/cli/production/trim-fonts.js +23 -0
  30. package/cli/production/trim-icons.js +38 -0
  31. package/cli/production/trim-js.js +48 -0
  32. package/cli/production/trim-motion.js +22 -0
  33. package/cli/production/trim-themes.js +50 -0
  34. package/cli/production/watch.js +38 -0
  35. package/cli/review.js +48 -1
  36. package/cli/scripts/write-atelier-fixtures.mjs +33 -0
  37. package/cli/security.js +190 -0
  38. package/cli/skills.js +53 -10
  39. package/cli/transparency.js +140 -41
  40. package/cli/workflow.js +32 -17
  41. package/components/index.js +3 -0
  42. package/components/runtime/component-loaders.js +3 -0
  43. package/components/velin-drawer.js +43 -4
  44. package/components/velin-empty-state.js +83 -0
  45. package/components/velin-modal.js +76 -15
  46. package/components/velin-otp-input.js +220 -0
  47. package/components/velin-password-strength.js +147 -0
  48. package/components/velin-sheet.js +49 -4
  49. package/components/velin-theme-toggle.js +15 -1
  50. package/core/a11y/component-contracts.json +391 -255
  51. package/core/attributes/registry.js +1 -1
  52. package/core/meta/knowledge/components.json +75 -3
  53. package/core/motion/analyze.js +38 -0
  54. package/core/motion/blueprint.js +51 -0
  55. package/core/motion/composer.js +114 -0
  56. package/core/motion/data/registry.json +352 -0
  57. package/core/motion/effects.js +17 -1
  58. package/core/motion/index.js +112 -9
  59. package/core/motion/optimize.js +44 -0
  60. package/core/motion/policy.js +77 -0
  61. package/core/motion/registry.js +131 -0
  62. package/core/motion/review.js +59 -0
  63. package/core/motion/scan.js +150 -0
  64. package/core/motion/timeline.js +68 -0
  65. package/core/motion/transitions.js +49 -0
  66. package/core/motion/triggers.js +168 -0
  67. package/core/security/checks/fs.js +92 -0
  68. package/core/security/detect.js +35 -0
  69. package/core/security/engine.js +116 -0
  70. package/core/security/index.js +18 -0
  71. package/core/security/registry.js +85 -0
  72. package/core/security/report/report.js +113 -0
  73. package/core/security/rules/ci/index.js +146 -0
  74. package/core/security/rules/consumer/index.js +174 -0
  75. package/core/security/rules/deps/index.js +182 -0
  76. package/core/security/rules/index.js +24 -0
  77. package/core/security/rules/publish/index.js +230 -0
  78. package/core/security/rules/repo/index.js +143 -0
  79. package/core/security/rules/secrets/index.js +133 -0
  80. package/core/security/score/dependency-health.js +53 -0
  81. package/core/security/score/release-health.js +66 -0
  82. package/core/security/score/score.js +102 -0
  83. package/core/security/timeline/timeline.js +76 -0
  84. package/dist/chunks/attributes-2ORR27KA.js +404 -0
  85. package/dist/chunks/attributes-HK7VIOLA.js +1080 -0
  86. package/dist/chunks/attributes-VRHHVNDO.js +1080 -0
  87. package/dist/chunks/chunk-MYKUI364.js +116 -0
  88. package/dist/chunks/chunk-NEVBPD5T.js +116 -0
  89. package/dist/chunks/chunk-Y6HN7HWX.js +116 -0
  90. package/dist/chunks/runtime-entry.js +1 -1
  91. package/dist/chunks/velin-drawer-A7Q7EBOS.js +162 -0
  92. package/dist/chunks/velin-empty-state-3NTUH2RF.js +81 -0
  93. package/dist/chunks/velin-modal-3MV4FYBK.js +231 -0
  94. package/dist/chunks/velin-otp-input-PSK42MM6.js +207 -0
  95. package/dist/chunks/velin-password-strength-TAXMLSED.js +136 -0
  96. package/dist/chunks/velin-sheet-N2VVYXFP.js +157 -0
  97. package/dist/chunks/velin-theme-toggle-J2NHC7IM.js +304 -0
  98. package/dist/llms.txt +4 -4
  99. package/dist/search-index.json +232 -5
  100. package/dist/velin-agent.json +433 -46
  101. package/dist/velinstyle-components.iife.js +3695 -2272
  102. package/dist/velinstyle-components.js +3698 -2271
  103. package/dist/velinstyle-components.min.js +262 -120
  104. package/dist/velinstyle.css +96 -13
  105. package/dist/velinstyle.d.ts +3 -0
  106. package/dist/velinstyle.min.css +1 -1
  107. package/package.json +19 -4
  108. package/packages/velinstyle-cli-core/package.json +11 -0
  109. package/packages/velinstyle-cli-core/src/config.js +84 -0
  110. package/packages/velinstyle-cli-core/src/contract.js +56 -0
  111. package/packages/velinstyle-cli-core/src/event-bus.js +50 -0
  112. package/packages/velinstyle-cli-core/src/index.js +18 -0
  113. package/packages/velinstyle-cli-core/src/lifecycle.js +33 -0
  114. package/packages/velinstyle-cli-core/src/runner.js +129 -0
  115. package/packages/velinstyle-cli-registry/data/commands.json +1216 -0
  116. package/packages/velinstyle-cli-registry/data/layouts.json +33 -0
  117. package/packages/velinstyle-cli-registry/data/widgets.json +35 -0
  118. package/packages/velinstyle-cli-registry/package.json +13 -0
  119. package/packages/velinstyle-cli-registry/src/index.js +88 -0
  120. package/packages/velinstyle-cli-renderer/package.json +8 -0
  121. package/packages/velinstyle-cli-renderer/src/index.js +286 -0
  122. package/packages/velinstyle-cli-theme/package.json +8 -0
  123. package/packages/velinstyle-cli-theme/src/index.js +84 -0
  124. package/packages/velinstyle-cli-ui/package.json +8 -0
  125. package/packages/velinstyle-cli-ui/src/index.js +34 -0
  126. package/packages/velinstyle-motion/README.md +81 -0
  127. package/packages/velinstyle-motion/package.json +37 -0
  128. package/packages/velinstyle-motion/src/ai/mini-prompt.js +119 -0
  129. package/packages/velinstyle-motion/src/ai/provider.js +59 -0
  130. package/packages/velinstyle-motion/src/ai/providers/pixverse-setup.js +402 -0
  131. package/packages/velinstyle-motion/src/ai/providers/pixverse.js +245 -0
  132. package/packages/velinstyle-motion/src/config.js +257 -0
  133. package/packages/velinstyle-motion/src/export/html-clip.js +141 -0
  134. package/packages/velinstyle-motion/src/index.js +304 -0
  135. package/packages/velinstyle-motion/src/jobs/cache.js +30 -0
  136. package/packages/velinstyle-motion/src/jobs/queue.js +69 -0
  137. package/packages/velinstyle-motion/src/jobs/usage.js +53 -0
  138. package/packages/velinstyle-motion/src/local/effects.js +139 -0
  139. package/packages/velinstyle-motion/src/local/engine.js +96 -0
  140. package/packages/velinstyle-motion/src/providers-catalog.js +44 -0
  141. package/packages/velinstyle-motion/src/registry/presets.js +25 -0
  142. package/packages/velinstyle-motion/src/registry/presets.json +85 -0
  143. package/packages/velinstyle-motion/src/ux/cost-gate.js +37 -0
  144. package/packages/velinstyle-motion/src/ux/pixverse-gate.js +153 -0
  145. package/packages/velinstyle-motion/src/ux/wizard.js +171 -0
  146. package/packages/velinstyle-motion/src/validate-image.js +91 -0
  147. package/packages/velinstyle-skills/catalog.json +1 -1
  148. package/packages/velinstyle-skills/registry.json +1 -142
  149. package/packages/velinstyle-skills/skills/velin-motion-reduced-safe/SKILL.md +1 -1
  150. package/packages/velinstyle-skills/skills/velin-motion-reveal-feedback/SKILL.md +1 -1
  151. package/src/components/data-table.css +19 -0
  152. package/src/components/empty-auth.css +33 -0
  153. package/src/components/table.css +16 -6
  154. package/src/tokens/motion.css +7 -0
  155. package/src/utilities/scroll-animation.css +66 -0
  156. package/src/velinstyle.css +1 -0
@@ -0,0 +1,1267 @@
1
+ {
2
+ "version": 1,
3
+ "basePath": "showcases",
4
+ "defaultBaseUrl": "https://velinstyle.info/atelier/library/",
5
+ "items": [
6
+ {
7
+ "num": "01",
8
+ "id": "01-login",
9
+ "title": "Premium Login",
10
+ "href": "showcases/01-login/index.html"
11
+ },
12
+ {
13
+ "num": "02",
14
+ "id": "02-registration",
15
+ "title": "User Registration",
16
+ "href": "showcases/02-registration/index.html"
17
+ },
18
+ {
19
+ "num": "03",
20
+ "id": "03-business-card",
21
+ "title": "Digital Business Card",
22
+ "href": "showcases/03-business-card/index.html"
23
+ },
24
+ {
25
+ "num": "04",
26
+ "id": "04-pricing",
27
+ "title": "Pricing Section",
28
+ "href": "showcases/04-pricing/index.html"
29
+ },
30
+ {
31
+ "num": "05",
32
+ "id": "05-contact",
33
+ "title": "Contact Center",
34
+ "href": "showcases/05-contact/index.html"
35
+ },
36
+ {
37
+ "num": "06",
38
+ "id": "06-404",
39
+ "title": "404 Experience",
40
+ "href": "showcases/06-404/index.html"
41
+ },
42
+ {
43
+ "num": "07",
44
+ "id": "07-newsletter",
45
+ "title": "Newsletter Landing",
46
+ "href": "showcases/07-newsletter/index.html"
47
+ },
48
+ {
49
+ "num": "08",
50
+ "id": "08-team",
51
+ "title": "Team Presentation",
52
+ "href": "showcases/08-team/index.html"
53
+ },
54
+ {
55
+ "num": "09",
56
+ "id": "09-roadmap",
57
+ "title": "Roadmap Timeline",
58
+ "href": "showcases/09-roadmap/index.html"
59
+ },
60
+ {
61
+ "num": "10",
62
+ "id": "10-downloads",
63
+ "title": "Developer Download Center",
64
+ "href": "showcases/10-downloads/index.html"
65
+ },
66
+ {
67
+ "num": "11",
68
+ "id": "11-password-forgot",
69
+ "title": "Forgot Password",
70
+ "href": "showcases/11-password-forgot/index.html"
71
+ },
72
+ {
73
+ "num": "12",
74
+ "id": "12-two-factor",
75
+ "title": "2FA / OTP",
76
+ "href": "showcases/12-two-factor/index.html"
77
+ },
78
+ {
79
+ "num": "13",
80
+ "id": "13-passkey-setup",
81
+ "title": "Passkey Setup",
82
+ "href": "showcases/13-passkey-setup/index.html"
83
+ },
84
+ {
85
+ "num": "14",
86
+ "id": "14-email-confirm",
87
+ "title": "Confirm Email",
88
+ "href": "showcases/14-email-confirm/index.html"
89
+ },
90
+ {
91
+ "num": "15",
92
+ "id": "15-account-locked",
93
+ "title": "Account Locked",
94
+ "href": "showcases/15-account-locked/index.html"
95
+ },
96
+ {
97
+ "num": "16",
98
+ "id": "16-accept-invite",
99
+ "title": "Accept Invite",
100
+ "href": "showcases/16-accept-invite/index.html"
101
+ },
102
+ {
103
+ "num": "17",
104
+ "id": "17-session-devices",
105
+ "title": "Sessions & Devices",
106
+ "href": "showcases/17-session-devices/index.html"
107
+ },
108
+ {
109
+ "num": "18",
110
+ "id": "18-landing",
111
+ "title": "Product Landing",
112
+ "href": "showcases/18-landing/index.html"
113
+ },
114
+ {
115
+ "num": "19",
116
+ "id": "19-features",
117
+ "title": "Features Grid",
118
+ "href": "showcases/19-features/index.html"
119
+ },
120
+ {
121
+ "num": "20",
122
+ "id": "20-faq",
123
+ "title": "FAQ Center",
124
+ "href": "showcases/20-faq/index.html"
125
+ },
126
+ {
127
+ "num": "21",
128
+ "id": "21-testimonials",
129
+ "title": "Testimonials",
130
+ "href": "showcases/21-testimonials/index.html"
131
+ },
132
+ {
133
+ "num": "22",
134
+ "id": "22-about",
135
+ "title": "About / Story",
136
+ "href": "showcases/22-about/index.html"
137
+ },
138
+ {
139
+ "num": "23",
140
+ "id": "23-changelog",
141
+ "title": "Public Changelog",
142
+ "href": "showcases/23-changelog/index.html"
143
+ },
144
+ {
145
+ "num": "24",
146
+ "id": "24-status",
147
+ "title": "Status Page",
148
+ "href": "showcases/24-status/index.html"
149
+ },
150
+ {
151
+ "num": "25",
152
+ "id": "25-onboarding-wizard",
153
+ "title": "Onboarding Wizard",
154
+ "href": "showcases/25-onboarding-wizard/index.html"
155
+ },
156
+ {
157
+ "num": "26",
158
+ "id": "26-empty-welcome",
159
+ "title": "Empty App Welcome",
160
+ "href": "showcases/26-empty-welcome/index.html"
161
+ },
162
+ {
163
+ "num": "27",
164
+ "id": "27-settings-hub",
165
+ "title": "Settings Hub",
166
+ "href": "showcases/27-settings-hub/index.html"
167
+ },
168
+ {
169
+ "num": "28",
170
+ "id": "28-notification-prefs",
171
+ "title": "Notification Preferences",
172
+ "href": "showcases/28-notification-prefs/index.html"
173
+ },
174
+ {
175
+ "num": "29",
176
+ "id": "29-analytics",
177
+ "title": "Analytics Dashboard",
178
+ "href": "showcases/29-analytics/index.html"
179
+ },
180
+ {
181
+ "num": "30",
182
+ "id": "30-crm-pipeline",
183
+ "title": "CRM Pipeline",
184
+ "href": "showcases/30-crm-pipeline/index.html"
185
+ },
186
+ {
187
+ "num": "31",
188
+ "id": "31-tickets",
189
+ "title": "Tickets Inbox",
190
+ "href": "showcases/31-tickets/index.html"
191
+ },
192
+ {
193
+ "num": "32",
194
+ "id": "32-monitoring",
195
+ "title": "Monitoring / Alerts",
196
+ "href": "showcases/32-monitoring/index.html"
197
+ },
198
+ {
199
+ "num": "33",
200
+ "id": "33-api-console",
201
+ "title": "API Console",
202
+ "href": "showcases/33-api-console/index.html"
203
+ },
204
+ {
205
+ "num": "34",
206
+ "id": "34-ai-chat",
207
+ "title": "AI Chat Workspace",
208
+ "href": "showcases/34-ai-chat/index.html"
209
+ },
210
+ {
211
+ "num": "35",
212
+ "id": "35-pm-board",
213
+ "title": "Project Board",
214
+ "href": "showcases/35-pm-board/index.html"
215
+ },
216
+ {
217
+ "num": "36",
218
+ "id": "36-calendar",
219
+ "title": "Calendar",
220
+ "href": "showcases/36-calendar/index.html"
221
+ },
222
+ {
223
+ "num": "37",
224
+ "id": "37-finance",
225
+ "title": "Finance / Invoices",
226
+ "href": "showcases/37-finance/index.html"
227
+ },
228
+ {
229
+ "num": "38",
230
+ "id": "38-erp",
231
+ "title": "ERP Overview",
232
+ "href": "showcases/38-erp/index.html"
233
+ },
234
+ {
235
+ "num": "39",
236
+ "id": "39-shop-catalog",
237
+ "title": "Shop Catalog",
238
+ "href": "showcases/39-shop-catalog/index.html"
239
+ },
240
+ {
241
+ "num": "40",
242
+ "id": "40-product-detail",
243
+ "title": "Product Detail",
244
+ "href": "showcases/40-product-detail/index.html"
245
+ },
246
+ {
247
+ "num": "41",
248
+ "id": "41-cart",
249
+ "title": "Shopping Cart",
250
+ "href": "showcases/41-cart/index.html"
251
+ },
252
+ {
253
+ "num": "42",
254
+ "id": "42-checkout",
255
+ "title": "Checkout",
256
+ "href": "showcases/42-checkout/index.html"
257
+ },
258
+ {
259
+ "num": "43",
260
+ "id": "43-orders",
261
+ "title": "Order Overview",
262
+ "href": "showcases/43-orders/index.html"
263
+ },
264
+ {
265
+ "num": "44",
266
+ "id": "44-wishlist",
267
+ "title": "Wishlist",
268
+ "href": "showcases/44-wishlist/index.html"
269
+ },
270
+ {
271
+ "num": "45",
272
+ "id": "45-reviews",
273
+ "title": "Reviews",
274
+ "href": "showcases/45-reviews/index.html"
275
+ },
276
+ {
277
+ "num": "46",
278
+ "id": "46-blog",
279
+ "title": "Blog Listing",
280
+ "href": "showcases/46-blog/index.html"
281
+ },
282
+ {
283
+ "num": "47",
284
+ "id": "47-comments",
285
+ "title": "Comment Thread",
286
+ "href": "showcases/47-comments/index.html"
287
+ },
288
+ {
289
+ "num": "48",
290
+ "id": "48-members",
291
+ "title": "Members Directory",
292
+ "href": "showcases/48-members/index.html"
293
+ },
294
+ {
295
+ "num": "49",
296
+ "id": "49-events",
297
+ "title": "Events Listing",
298
+ "href": "showcases/49-events/index.html"
299
+ },
300
+ {
301
+ "num": "50",
302
+ "id": "50-knowledge-base",
303
+ "title": "Knowledge Base",
304
+ "href": "showcases/50-knowledge-base/index.html"
305
+ },
306
+ {
307
+ "num": "51",
308
+ "id": "51-password-reset",
309
+ "title": "Password Reset",
310
+ "href": "showcases/51-password-reset/index.html"
311
+ },
312
+ {
313
+ "num": "52",
314
+ "id": "52-social-linking",
315
+ "title": "Social Account Linking",
316
+ "href": "showcases/52-social-linking/index.html"
317
+ },
318
+ {
319
+ "num": "53",
320
+ "id": "53-sso-start",
321
+ "title": "SSO / SAML Start",
322
+ "href": "showcases/53-sso-start/index.html"
323
+ },
324
+ {
325
+ "num": "54",
326
+ "id": "54-magic-link",
327
+ "title": "Passwordless Magic Link",
328
+ "href": "showcases/54-magic-link/index.html"
329
+ },
330
+ {
331
+ "num": "55",
332
+ "id": "55-consent-gdpr",
333
+ "title": "Consent / GDPR Preferences",
334
+ "href": "showcases/55-consent-gdpr/index.html"
335
+ },
336
+ {
337
+ "num": "56",
338
+ "id": "56-maintenance",
339
+ "title": "Maintenance Mode",
340
+ "href": "showcases/56-maintenance/index.html"
341
+ },
342
+ {
343
+ "num": "57",
344
+ "id": "57-coming-soon",
345
+ "title": "Coming Soon",
346
+ "href": "showcases/57-coming-soon/index.html"
347
+ },
348
+ {
349
+ "num": "58",
350
+ "id": "58-cookie-consent",
351
+ "title": "Cookie Consent Surface",
352
+ "href": "showcases/58-cookie-consent/index.html"
353
+ },
354
+ {
355
+ "num": "59",
356
+ "id": "59-offline-shell",
357
+ "title": "Offline / PWA Shell",
358
+ "href": "showcases/59-offline-shell/index.html"
359
+ },
360
+ {
361
+ "num": "60",
362
+ "id": "60-timeline",
363
+ "title": "Timeline",
364
+ "href": "showcases/60-timeline/index.html"
365
+ },
366
+ {
367
+ "num": "61",
368
+ "id": "61-comparison",
369
+ "title": "comparison",
370
+ "href": "showcases/61-comparison/index.html"
371
+ },
372
+ {
373
+ "num": "62",
374
+ "id": "62-partner-logos",
375
+ "title": "partner logos",
376
+ "href": "showcases/62-partner-logos/index.html"
377
+ },
378
+ {
379
+ "num": "63",
380
+ "id": "63-case-study",
381
+ "title": "case study",
382
+ "href": "showcases/63-case-study/index.html"
383
+ },
384
+ {
385
+ "num": "64",
386
+ "id": "64-waitlist",
387
+ "title": "waitlist",
388
+ "href": "showcases/64-waitlist/index.html"
389
+ },
390
+ {
391
+ "num": "65",
392
+ "id": "65-press-kit",
393
+ "title": "press kit",
394
+ "href": "showcases/65-press-kit/index.html"
395
+ },
396
+ {
397
+ "num": "66",
398
+ "id": "66-hero-variants",
399
+ "title": "hero variants",
400
+ "href": "showcases/66-hero-variants/index.html"
401
+ },
402
+ {
403
+ "num": "67",
404
+ "id": "67-agency-landing",
405
+ "title": "agency landing",
406
+ "href": "showcases/67-agency-landing/index.html"
407
+ },
408
+ {
409
+ "num": "68",
410
+ "id": "68-lawyer",
411
+ "title": "lawyer",
412
+ "href": "showcases/68-lawyer/index.html"
413
+ },
414
+ {
415
+ "num": "69",
416
+ "id": "69-restaurant",
417
+ "title": "restaurant",
418
+ "href": "showcases/69-restaurant/index.html"
419
+ },
420
+ {
421
+ "num": "70",
422
+ "id": "70-hotel",
423
+ "title": "hotel",
424
+ "href": "showcases/70-hotel/index.html"
425
+ },
426
+ {
427
+ "num": "71",
428
+ "id": "71-healthcare",
429
+ "title": "healthcare",
430
+ "href": "showcases/71-healthcare/index.html"
431
+ },
432
+ {
433
+ "num": "72",
434
+ "id": "72-startup-landing",
435
+ "title": "startup landing",
436
+ "href": "showcases/72-startup-landing/index.html"
437
+ },
438
+ {
439
+ "num": "73",
440
+ "id": "73-feature-grid-alt",
441
+ "title": "feature grid alt",
442
+ "href": "showcases/73-feature-grid-alt/index.html"
443
+ },
444
+ {
445
+ "num": "74",
446
+ "id": "74-pricing-compare",
447
+ "title": "pricing compare",
448
+ "href": "showcases/74-pricing-compare/index.html"
449
+ },
450
+ {
451
+ "num": "75",
452
+ "id": "75-brand-story",
453
+ "title": "brand story",
454
+ "href": "showcases/75-brand-story/index.html"
455
+ },
456
+ {
457
+ "num": "76",
458
+ "id": "76-customer-account",
459
+ "title": "customer account",
460
+ "href": "showcases/76-customer-account/index.html"
461
+ },
462
+ {
463
+ "num": "77",
464
+ "id": "77-returns-rma",
465
+ "title": "returns rma",
466
+ "href": "showcases/77-returns-rma/index.html"
467
+ },
468
+ {
469
+ "num": "78",
470
+ "id": "78-gift-cards",
471
+ "title": "gift cards",
472
+ "href": "showcases/78-gift-cards/index.html"
473
+ },
474
+ {
475
+ "num": "79",
476
+ "id": "79-store-locator",
477
+ "title": "store locator",
478
+ "href": "showcases/79-store-locator/index.html"
479
+ },
480
+ {
481
+ "num": "80",
482
+ "id": "80-subscription",
483
+ "title": "subscription",
484
+ "href": "showcases/80-subscription/index.html"
485
+ },
486
+ {
487
+ "num": "81",
488
+ "id": "81-forum-index",
489
+ "title": "forum index",
490
+ "href": "showcases/81-forum-index/index.html"
491
+ },
492
+ {
493
+ "num": "82",
494
+ "id": "82-public-profile",
495
+ "title": "public profile",
496
+ "href": "showcases/82-public-profile/index.html"
497
+ },
498
+ {
499
+ "num": "83",
500
+ "id": "83-direct-messages",
501
+ "title": "direct messages",
502
+ "href": "showcases/83-direct-messages/index.html"
503
+ },
504
+ {
505
+ "num": "84",
506
+ "id": "84-notif-feed",
507
+ "title": "notif feed",
508
+ "href": "showcases/84-notif-feed/index.html"
509
+ },
510
+ {
511
+ "num": "85",
512
+ "id": "85-mod-queue",
513
+ "title": "mod queue",
514
+ "href": "showcases/85-mod-queue/index.html"
515
+ },
516
+ {
517
+ "num": "86",
518
+ "id": "86-leaderboard",
519
+ "title": "leaderboard",
520
+ "href": "showcases/86-leaderboard/index.html"
521
+ },
522
+ {
523
+ "num": "87",
524
+ "id": "87-order-tracking",
525
+ "title": "order tracking",
526
+ "href": "showcases/87-order-tracking/index.html"
527
+ },
528
+ {
529
+ "num": "88",
530
+ "id": "88-invoice-portal",
531
+ "title": "invoice portal",
532
+ "href": "showcases/88-invoice-portal/index.html"
533
+ },
534
+ {
535
+ "num": "89",
536
+ "id": "89-community-guidelines",
537
+ "title": "community guidelines",
538
+ "href": "showcases/89-community-guidelines/index.html"
539
+ },
540
+ {
541
+ "num": "90",
542
+ "id": "90-saved-searches",
543
+ "title": "saved searches",
544
+ "href": "showcases/90-saved-searches/index.html"
545
+ },
546
+ {
547
+ "num": "91",
548
+ "id": "91-audit-log",
549
+ "title": "audit log",
550
+ "href": "showcases/91-audit-log/index.html"
551
+ },
552
+ {
553
+ "num": "92",
554
+ "id": "92-roles-permissions",
555
+ "title": "roles permissions",
556
+ "href": "showcases/92-roles-permissions/index.html"
557
+ },
558
+ {
559
+ "num": "93",
560
+ "id": "93-billing-manage",
561
+ "title": "billing manage",
562
+ "href": "showcases/93-billing-manage/index.html"
563
+ },
564
+ {
565
+ "num": "94",
566
+ "id": "94-feature-flags",
567
+ "title": "feature flags",
568
+ "href": "showcases/94-feature-flags/index.html"
569
+ },
570
+ {
571
+ "num": "95",
572
+ "id": "95-tenant-switcher",
573
+ "title": "tenant switcher",
574
+ "href": "showcases/95-tenant-switcher/index.html"
575
+ },
576
+ {
577
+ "num": "96",
578
+ "id": "96-webhooks",
579
+ "title": "webhooks",
580
+ "href": "showcases/96-webhooks/index.html"
581
+ },
582
+ {
583
+ "num": "97",
584
+ "id": "97-data-export",
585
+ "title": "data export",
586
+ "href": "showcases/97-data-export/index.html"
587
+ },
588
+ {
589
+ "num": "98",
590
+ "id": "98-api-keys-alt",
591
+ "title": "api keys alt",
592
+ "href": "showcases/98-api-keys-alt/index.html"
593
+ },
594
+ {
595
+ "num": "99",
596
+ "id": "99-onboarding-checklist",
597
+ "title": "onboarding checklist",
598
+ "href": "showcases/99-onboarding-checklist/index.html"
599
+ },
600
+ {
601
+ "num": "100",
602
+ "id": "100-integrations-hub",
603
+ "title": "integrations hub",
604
+ "href": "showcases/100-integrations-hub/index.html"
605
+ },
606
+ {
607
+ "num": "101",
608
+ "id": "101-header-marketing",
609
+ "title": "header marketing",
610
+ "href": "showcases/101-header-marketing/index.html"
611
+ },
612
+ {
613
+ "num": "102",
614
+ "id": "102-header-mega",
615
+ "title": "header mega",
616
+ "href": "showcases/102-header-mega/index.html"
617
+ },
618
+ {
619
+ "num": "103",
620
+ "id": "103-header-minimal",
621
+ "title": "header minimal",
622
+ "href": "showcases/103-header-minimal/index.html"
623
+ },
624
+ {
625
+ "num": "104",
626
+ "id": "104-header-search",
627
+ "title": "header search",
628
+ "href": "showcases/104-header-search/index.html"
629
+ },
630
+ {
631
+ "num": "105",
632
+ "id": "105-header-commerce",
633
+ "title": "header commerce",
634
+ "href": "showcases/105-header-commerce/index.html"
635
+ },
636
+ {
637
+ "num": "106",
638
+ "id": "106-header-app",
639
+ "title": "header app",
640
+ "href": "showcases/106-header-app/index.html"
641
+ },
642
+ {
643
+ "num": "107",
644
+ "id": "107-header-transparent",
645
+ "title": "header transparent",
646
+ "href": "showcases/107-header-transparent/index.html"
647
+ },
648
+ {
649
+ "num": "108",
650
+ "id": "108-header-sticky",
651
+ "title": "header sticky",
652
+ "href": "showcases/108-header-sticky/index.html"
653
+ },
654
+ {
655
+ "num": "109",
656
+ "id": "109-header-locale",
657
+ "title": "header locale",
658
+ "href": "showcases/109-header-locale/index.html"
659
+ },
660
+ {
661
+ "num": "110",
662
+ "id": "110-header-announce",
663
+ "title": "header announce",
664
+ "href": "showcases/110-header-announce/index.html"
665
+ },
666
+ {
667
+ "num": "111",
668
+ "id": "111-footer-columns",
669
+ "title": "footer columns",
670
+ "href": "showcases/111-footer-columns/index.html"
671
+ },
672
+ {
673
+ "num": "112",
674
+ "id": "112-footer-minimal",
675
+ "title": "footer minimal",
676
+ "href": "showcases/112-footer-minimal/index.html"
677
+ },
678
+ {
679
+ "num": "113",
680
+ "id": "113-footer-newsletter",
681
+ "title": "footer newsletter",
682
+ "href": "showcases/113-footer-newsletter/index.html"
683
+ },
684
+ {
685
+ "num": "114",
686
+ "id": "114-footer-sitemap",
687
+ "title": "footer sitemap",
688
+ "href": "showcases/114-footer-sitemap/index.html"
689
+ },
690
+ {
691
+ "num": "115",
692
+ "id": "115-footer-social",
693
+ "title": "footer social",
694
+ "href": "showcases/115-footer-social/index.html"
695
+ },
696
+ {
697
+ "num": "116",
698
+ "id": "116-footer-app-stores",
699
+ "title": "footer app stores",
700
+ "href": "showcases/116-footer-app-stores/index.html"
701
+ },
702
+ {
703
+ "num": "117",
704
+ "id": "117-footer-legal",
705
+ "title": "footer legal",
706
+ "href": "showcases/117-footer-legal/index.html"
707
+ },
708
+ {
709
+ "num": "118",
710
+ "id": "118-footer-cta",
711
+ "title": "footer cta",
712
+ "href": "showcases/118-footer-cta/index.html"
713
+ },
714
+ {
715
+ "num": "119",
716
+ "id": "119-footer-brand",
717
+ "title": "footer brand",
718
+ "href": "showcases/119-footer-brand/index.html"
719
+ },
720
+ {
721
+ "num": "120",
722
+ "id": "120-footer-contact",
723
+ "title": "footer contact",
724
+ "href": "showcases/120-footer-contact/index.html"
725
+ },
726
+ {
727
+ "num": "121",
728
+ "id": "121-menu-sidebar",
729
+ "title": "menu sidebar",
730
+ "href": "showcases/121-menu-sidebar/index.html"
731
+ },
732
+ {
733
+ "num": "122",
734
+ "id": "122-menu-tabs",
735
+ "title": "menu tabs",
736
+ "href": "showcases/122-menu-tabs/index.html"
737
+ },
738
+ {
739
+ "num": "123",
740
+ "id": "123-menu-dropdown",
741
+ "title": "menu dropdown",
742
+ "href": "showcases/123-menu-dropdown/index.html"
743
+ },
744
+ {
745
+ "num": "124",
746
+ "id": "124-menu-drawer",
747
+ "title": "menu drawer",
748
+ "href": "showcases/124-menu-drawer/index.html"
749
+ },
750
+ {
751
+ "num": "125",
752
+ "id": "125-menu-command",
753
+ "title": "menu command",
754
+ "href": "showcases/125-menu-command/index.html"
755
+ },
756
+ {
757
+ "num": "126",
758
+ "id": "126-menu-context",
759
+ "title": "menu context",
760
+ "href": "showcases/126-menu-context/index.html"
761
+ },
762
+ {
763
+ "num": "127",
764
+ "id": "127-menu-breadcrumb",
765
+ "title": "menu breadcrumb",
766
+ "href": "showcases/127-menu-breadcrumb/index.html"
767
+ },
768
+ {
769
+ "num": "128",
770
+ "id": "128-menu-account",
771
+ "title": "menu account",
772
+ "href": "showcases/128-menu-account/index.html"
773
+ },
774
+ {
775
+ "num": "129",
776
+ "id": "129-menu-filters",
777
+ "title": "menu filters",
778
+ "href": "showcases/129-menu-filters/index.html"
779
+ },
780
+ {
781
+ "num": "130",
782
+ "id": "130-menu-bottom-nav",
783
+ "title": "menu bottom nav",
784
+ "href": "showcases/130-menu-bottom-nav/index.html"
785
+ },
786
+ {
787
+ "num": "131",
788
+ "id": "131-slider-hero",
789
+ "title": "slider hero",
790
+ "href": "showcases/131-slider-hero/index.html"
791
+ },
792
+ {
793
+ "num": "132",
794
+ "id": "132-slider-product",
795
+ "title": "slider product",
796
+ "href": "showcases/132-slider-product/index.html"
797
+ },
798
+ {
799
+ "num": "133",
800
+ "id": "133-slider-testimonials",
801
+ "title": "slider testimonials",
802
+ "href": "showcases/133-slider-testimonials/index.html"
803
+ },
804
+ {
805
+ "num": "134",
806
+ "id": "134-slider-logos",
807
+ "title": "slider logos",
808
+ "href": "showcases/134-slider-logos/index.html"
809
+ },
810
+ {
811
+ "num": "135",
812
+ "id": "135-slider-cards",
813
+ "title": "slider cards",
814
+ "href": "showcases/135-slider-cards/index.html"
815
+ },
816
+ {
817
+ "num": "136",
818
+ "id": "136-slider-compare",
819
+ "title": "slider compare",
820
+ "href": "showcases/136-slider-compare/index.html"
821
+ },
822
+ {
823
+ "num": "137",
824
+ "id": "137-slider-vertical",
825
+ "title": "slider vertical",
826
+ "href": "showcases/137-slider-vertical/index.html"
827
+ },
828
+ {
829
+ "num": "138",
830
+ "id": "138-slider-thumbs",
831
+ "title": "slider thumbs",
832
+ "href": "showcases/138-slider-thumbs/index.html"
833
+ },
834
+ {
835
+ "num": "139",
836
+ "id": "139-slider-progress",
837
+ "title": "slider progress",
838
+ "href": "showcases/139-slider-progress/index.html"
839
+ },
840
+ {
841
+ "num": "140",
842
+ "id": "140-slider-gallery",
843
+ "title": "slider gallery",
844
+ "href": "showcases/140-slider-gallery/index.html"
845
+ },
846
+ {
847
+ "num": "141",
848
+ "id": "141-hero-launch",
849
+ "title": "hero launch",
850
+ "href": "showcases/141-hero-launch/index.html"
851
+ },
852
+ {
853
+ "num": "142",
854
+ "id": "142-hero-saas",
855
+ "title": "hero saas",
856
+ "href": "showcases/142-hero-saas/index.html"
857
+ },
858
+ {
859
+ "num": "143",
860
+ "id": "143-hero-split",
861
+ "title": "hero split",
862
+ "href": "showcases/143-hero-split/index.html"
863
+ },
864
+ {
865
+ "num": "144",
866
+ "id": "144-hero-video",
867
+ "title": "hero video",
868
+ "href": "showcases/144-hero-video/index.html"
869
+ },
870
+ {
871
+ "num": "145",
872
+ "id": "145-hero-centered",
873
+ "title": "hero centered",
874
+ "href": "showcases/145-hero-centered/index.html"
875
+ },
876
+ {
877
+ "num": "146",
878
+ "id": "146-hero-editorial",
879
+ "title": "hero editorial",
880
+ "href": "showcases/146-hero-editorial/index.html"
881
+ },
882
+ {
883
+ "num": "147",
884
+ "id": "147-hero-app",
885
+ "title": "hero app",
886
+ "href": "showcases/147-hero-app/index.html"
887
+ },
888
+ {
889
+ "num": "148",
890
+ "id": "148-hero-event",
891
+ "title": "hero event",
892
+ "href": "showcases/148-hero-event/index.html"
893
+ },
894
+ {
895
+ "num": "149",
896
+ "id": "149-hero-pricing",
897
+ "title": "hero pricing",
898
+ "href": "showcases/149-hero-pricing/index.html"
899
+ },
900
+ {
901
+ "num": "150",
902
+ "id": "150-hero-portfolio",
903
+ "title": "hero portfolio",
904
+ "href": "showcases/150-hero-portfolio/index.html"
905
+ },
906
+ {
907
+ "num": "151",
908
+ "id": "151-features-icon-grid",
909
+ "title": "features icon grid",
910
+ "href": "showcases/151-features-icon-grid/index.html"
911
+ },
912
+ {
913
+ "num": "152",
914
+ "id": "152-features-bento",
915
+ "title": "features bento",
916
+ "href": "showcases/152-features-bento/index.html"
917
+ },
918
+ {
919
+ "num": "153",
920
+ "id": "153-features-alternating",
921
+ "title": "features alternating",
922
+ "href": "showcases/153-features-alternating/index.html"
923
+ },
924
+ {
925
+ "num": "154",
926
+ "id": "154-features-tabs",
927
+ "title": "features tabs",
928
+ "href": "showcases/154-features-tabs/index.html"
929
+ },
930
+ {
931
+ "num": "155",
932
+ "id": "155-features-checklist",
933
+ "title": "features checklist",
934
+ "href": "showcases/155-features-checklist/index.html"
935
+ },
936
+ {
937
+ "num": "156",
938
+ "id": "156-services-cards",
939
+ "title": "services cards",
940
+ "href": "showcases/156-services-cards/index.html"
941
+ },
942
+ {
943
+ "num": "157",
944
+ "id": "157-services-process",
945
+ "title": "services process",
946
+ "href": "showcases/157-services-process/index.html"
947
+ },
948
+ {
949
+ "num": "158",
950
+ "id": "158-features-comparison",
951
+ "title": "features comparison",
952
+ "href": "showcases/158-features-comparison/index.html"
953
+ },
954
+ {
955
+ "num": "159",
956
+ "id": "159-features-spotlight",
957
+ "title": "features spotlight",
958
+ "href": "showcases/159-features-spotlight/index.html"
959
+ },
960
+ {
961
+ "num": "160",
962
+ "id": "160-services-industries",
963
+ "title": "services industries",
964
+ "href": "showcases/160-services-industries/index.html"
965
+ },
966
+ {
967
+ "num": "161",
968
+ "id": "161-proof-quote-grid",
969
+ "title": "proof quote grid",
970
+ "href": "showcases/161-proof-quote-grid/index.html"
971
+ },
972
+ {
973
+ "num": "162",
974
+ "id": "162-proof-featured",
975
+ "title": "proof featured",
976
+ "href": "showcases/162-proof-featured/index.html"
977
+ },
978
+ {
979
+ "num": "163",
980
+ "id": "163-proof-logo-wall",
981
+ "title": "proof logo wall",
982
+ "href": "showcases/163-proof-logo-wall/index.html"
983
+ },
984
+ {
985
+ "num": "164",
986
+ "id": "164-proof-stats-band",
987
+ "title": "proof stats band",
988
+ "href": "showcases/164-proof-stats-band/index.html"
989
+ },
990
+ {
991
+ "num": "165",
992
+ "id": "165-proof-case-cards",
993
+ "title": "proof case cards",
994
+ "href": "showcases/165-proof-case-cards/index.html"
995
+ },
996
+ {
997
+ "num": "166",
998
+ "id": "166-proof-video",
999
+ "title": "proof video",
1000
+ "href": "showcases/166-proof-video/index.html"
1001
+ },
1002
+ {
1003
+ "num": "167",
1004
+ "id": "167-proof-rating",
1005
+ "title": "proof rating",
1006
+ "href": "showcases/167-proof-rating/index.html"
1007
+ },
1008
+ {
1009
+ "num": "168",
1010
+ "id": "168-proof-tweet",
1011
+ "title": "proof tweet",
1012
+ "href": "showcases/168-proof-tweet/index.html"
1013
+ },
1014
+ {
1015
+ "num": "169",
1016
+ "id": "169-proof-before-after",
1017
+ "title": "proof before after",
1018
+ "href": "showcases/169-proof-before-after/index.html"
1019
+ },
1020
+ {
1021
+ "num": "170",
1022
+ "id": "170-proof-press",
1023
+ "title": "proof press",
1024
+ "href": "showcases/170-proof-press/index.html"
1025
+ },
1026
+ {
1027
+ "num": "171",
1028
+ "id": "171-pricing-three-tier",
1029
+ "title": "pricing three tier",
1030
+ "href": "showcases/171-pricing-three-tier/index.html"
1031
+ },
1032
+ {
1033
+ "num": "172",
1034
+ "id": "172-pricing-toggle",
1035
+ "title": "pricing toggle",
1036
+ "href": "showcases/172-pricing-toggle/index.html"
1037
+ },
1038
+ {
1039
+ "num": "173",
1040
+ "id": "173-pricing-table",
1041
+ "title": "pricing table",
1042
+ "href": "showcases/173-pricing-table/index.html"
1043
+ },
1044
+ {
1045
+ "num": "174",
1046
+ "id": "174-pricing-cards-highlight",
1047
+ "title": "pricing cards highlight",
1048
+ "href": "showcases/174-pricing-cards-highlight/index.html"
1049
+ },
1050
+ {
1051
+ "num": "175",
1052
+ "id": "175-pricing-usage",
1053
+ "title": "pricing usage",
1054
+ "href": "showcases/175-pricing-usage/index.html"
1055
+ },
1056
+ {
1057
+ "num": "176",
1058
+ "id": "176-pricing-freelancer",
1059
+ "title": "pricing freelancer",
1060
+ "href": "showcases/176-pricing-freelancer/index.html"
1061
+ },
1062
+ {
1063
+ "num": "177",
1064
+ "id": "177-pricing-nonprofit",
1065
+ "title": "pricing nonprofit",
1066
+ "href": "showcases/177-pricing-nonprofit/index.html"
1067
+ },
1068
+ {
1069
+ "num": "178",
1070
+ "id": "178-pricing-enterprise",
1071
+ "title": "pricing enterprise",
1072
+ "href": "showcases/178-pricing-enterprise/index.html"
1073
+ },
1074
+ {
1075
+ "num": "179",
1076
+ "id": "179-pricing-addons",
1077
+ "title": "pricing addons",
1078
+ "href": "showcases/179-pricing-addons/index.html"
1079
+ },
1080
+ {
1081
+ "num": "180",
1082
+ "id": "180-pricing-faq-band",
1083
+ "title": "pricing faq band",
1084
+ "href": "showcases/180-pricing-faq-band/index.html"
1085
+ },
1086
+ {
1087
+ "num": "181",
1088
+ "id": "181-cta-simple",
1089
+ "title": "cta simple",
1090
+ "href": "showcases/181-cta-simple/index.html"
1091
+ },
1092
+ {
1093
+ "num": "182",
1094
+ "id": "182-cta-dual",
1095
+ "title": "cta dual",
1096
+ "href": "showcases/182-cta-dual/index.html"
1097
+ },
1098
+ {
1099
+ "num": "183",
1100
+ "id": "183-cta-newsletter",
1101
+ "title": "cta newsletter",
1102
+ "href": "showcases/183-cta-newsletter/index.html"
1103
+ },
1104
+ {
1105
+ "num": "184",
1106
+ "id": "184-cta-split",
1107
+ "title": "cta split",
1108
+ "href": "showcases/184-cta-split/index.html"
1109
+ },
1110
+ {
1111
+ "num": "185",
1112
+ "id": "185-cta-banner",
1113
+ "title": "cta banner",
1114
+ "href": "showcases/185-cta-banner/index.html"
1115
+ },
1116
+ {
1117
+ "num": "186",
1118
+ "id": "186-cta-card",
1119
+ "title": "cta card",
1120
+ "href": "showcases/186-cta-card/index.html"
1121
+ },
1122
+ {
1123
+ "num": "187",
1124
+ "id": "187-cta-urgency",
1125
+ "title": "cta urgency",
1126
+ "href": "showcases/187-cta-urgency/index.html"
1127
+ },
1128
+ {
1129
+ "num": "188",
1130
+ "id": "188-cta-app-download",
1131
+ "title": "cta app download",
1132
+ "href": "showcases/188-cta-app-download/index.html"
1133
+ },
1134
+ {
1135
+ "num": "189",
1136
+ "id": "189-cta-trial",
1137
+ "title": "cta trial",
1138
+ "href": "showcases/189-cta-trial/index.html"
1139
+ },
1140
+ {
1141
+ "num": "190",
1142
+ "id": "190-cta-contact-sales",
1143
+ "title": "cta contact sales",
1144
+ "href": "showcases/190-cta-contact-sales/index.html"
1145
+ },
1146
+ {
1147
+ "num": "191",
1148
+ "id": "191-contact-simple",
1149
+ "title": "contact simple",
1150
+ "href": "showcases/191-contact-simple/index.html"
1151
+ },
1152
+ {
1153
+ "num": "192",
1154
+ "id": "192-contact-split",
1155
+ "title": "contact split",
1156
+ "href": "showcases/192-contact-split/index.html"
1157
+ },
1158
+ {
1159
+ "num": "193",
1160
+ "id": "193-contact-multi-topic",
1161
+ "title": "contact multi topic",
1162
+ "href": "showcases/193-contact-multi-topic/index.html"
1163
+ },
1164
+ {
1165
+ "num": "194",
1166
+ "id": "194-contact-support",
1167
+ "title": "contact support",
1168
+ "href": "showcases/194-contact-support/index.html"
1169
+ },
1170
+ {
1171
+ "num": "195",
1172
+ "id": "195-contact-sales",
1173
+ "title": "contact sales",
1174
+ "href": "showcases/195-contact-sales/index.html"
1175
+ },
1176
+ {
1177
+ "num": "196",
1178
+ "id": "196-contact-newsletter",
1179
+ "title": "contact newsletter",
1180
+ "href": "showcases/196-contact-newsletter/index.html"
1181
+ },
1182
+ {
1183
+ "num": "197",
1184
+ "id": "197-contact-booking",
1185
+ "title": "contact booking",
1186
+ "href": "showcases/197-contact-booking/index.html"
1187
+ },
1188
+ {
1189
+ "num": "198",
1190
+ "id": "198-contact-multi-step",
1191
+ "title": "contact multi step",
1192
+ "href": "showcases/198-contact-multi-step/index.html"
1193
+ },
1194
+ {
1195
+ "num": "199",
1196
+ "id": "199-contact-chat-prompt",
1197
+ "title": "contact chat prompt",
1198
+ "href": "showcases/199-contact-chat-prompt/index.html"
1199
+ },
1200
+ {
1201
+ "num": "200",
1202
+ "id": "200-contact-office",
1203
+ "title": "contact office",
1204
+ "href": "showcases/200-contact-office/index.html"
1205
+ },
1206
+ {
1207
+ "num": "201",
1208
+ "id": "201-faq-accordion",
1209
+ "title": "faq accordion",
1210
+ "href": "showcases/201-faq-accordion/index.html"
1211
+ },
1212
+ {
1213
+ "num": "202",
1214
+ "id": "202-faq-two-col",
1215
+ "title": "faq two col",
1216
+ "href": "showcases/202-faq-two-col/index.html"
1217
+ },
1218
+ {
1219
+ "num": "203",
1220
+ "id": "203-faq-search",
1221
+ "title": "faq search",
1222
+ "href": "showcases/203-faq-search/index.html"
1223
+ },
1224
+ {
1225
+ "num": "204",
1226
+ "id": "204-faq-categories",
1227
+ "title": "faq categories",
1228
+ "href": "showcases/204-faq-categories/index.html"
1229
+ },
1230
+ {
1231
+ "num": "205",
1232
+ "id": "205-faq-tabs",
1233
+ "title": "faq tabs",
1234
+ "href": "showcases/205-faq-tabs/index.html"
1235
+ },
1236
+ {
1237
+ "num": "206",
1238
+ "id": "206-faq-inline-help",
1239
+ "title": "faq inline help",
1240
+ "href": "showcases/206-faq-inline-help/index.html"
1241
+ },
1242
+ {
1243
+ "num": "207",
1244
+ "id": "207-faq-pricing",
1245
+ "title": "faq pricing",
1246
+ "href": "showcases/207-faq-pricing/index.html"
1247
+ },
1248
+ {
1249
+ "num": "208",
1250
+ "id": "208-faq-product",
1251
+ "title": "faq product",
1252
+ "href": "showcases/208-faq-product/index.html"
1253
+ },
1254
+ {
1255
+ "num": "209",
1256
+ "id": "209-faq-support",
1257
+ "title": "faq support",
1258
+ "href": "showcases/209-faq-support/index.html"
1259
+ },
1260
+ {
1261
+ "num": "210",
1262
+ "id": "210-faq-seo",
1263
+ "title": "faq seo",
1264
+ "href": "showcases/210-faq-seo/index.html"
1265
+ }
1266
+ ]
1267
+ }