designkit-ai 1.0.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 (530) hide show
  1. package/AI-AGENT.md +51 -0
  2. package/LICENSE +21 -0
  3. package/README.md +517 -0
  4. package/bin/designkit.js +61 -0
  5. package/components/_index.md +81 -0
  6. package/components/app-mobile/README.md +117 -0
  7. package/components/app-mobile/badges/badge-count.html +9 -0
  8. package/components/app-mobile/badges/badge-dot.html +9 -0
  9. package/components/app-mobile/badges/badge-large.html +9 -0
  10. package/components/app-mobile/buttons/button-filled.html +9 -0
  11. package/components/app-mobile/buttons/button-icon.html +11 -0
  12. package/components/app-mobile/buttons/button-outlined.html +9 -0
  13. package/components/app-mobile/buttons/button-text.html +9 -0
  14. package/components/app-mobile/buttons/button-tonal.html +9 -0
  15. package/components/app-mobile/buttons/fab-extended.html +12 -0
  16. package/components/app-mobile/buttons/fab-small.html +11 -0
  17. package/components/app-mobile/buttons/fab.html +11 -0
  18. package/components/app-mobile/buttons/icon-button-filled.html +11 -0
  19. package/components/app-mobile/buttons/icon-button-tonal.html +11 -0
  20. package/components/app-mobile/buttons/segmented-button.html +13 -0
  21. package/components/app-mobile/cards/card-elevated.html +15 -0
  22. package/components/app-mobile/cards/card-filled.html +15 -0
  23. package/components/app-mobile/cards/card-outlined.html +15 -0
  24. package/components/app-mobile/charts/bar-chart.html +20 -0
  25. package/components/app-mobile/charts/donut-chart.html +20 -0
  26. package/components/app-mobile/charts/horizontal-bar.html +15 -0
  27. package/components/app-mobile/charts/line-chart.html +26 -0
  28. package/components/app-mobile/charts/progress-ring.html +17 -0
  29. package/components/app-mobile/charts/sparkline.html +11 -0
  30. package/components/app-mobile/charts/stat-card.html +18 -0
  31. package/components/app-mobile/chips/chip-assist.html +12 -0
  32. package/components/app-mobile/chips/chip-filter.html +12 -0
  33. package/components/app-mobile/chips/chip-input.html +14 -0
  34. package/components/app-mobile/chips/chip-suggestion.html +9 -0
  35. package/components/app-mobile/data-display/avatar-group.html +35 -0
  36. package/components/app-mobile/dialogs/dialog-basic.html +16 -0
  37. package/components/app-mobile/dialogs/dialog-fullscreen.html +18 -0
  38. package/components/app-mobile/dividers/divider-full.html +9 -0
  39. package/components/app-mobile/dividers/divider-inset.html +9 -0
  40. package/components/app-mobile/ecommerce/cart-item.html +29 -0
  41. package/components/app-mobile/ecommerce/cart-summary.html +31 -0
  42. package/components/app-mobile/ecommerce/color-selector.html +17 -0
  43. package/components/app-mobile/ecommerce/order-status.html +25 -0
  44. package/components/app-mobile/ecommerce/product-detail-hero.html +45 -0
  45. package/components/app-mobile/ecommerce/size-selector.html +17 -0
  46. package/components/app-mobile/ecommerce/wishlist-item.html +22 -0
  47. package/components/app-mobile/education/assignment-card.html +24 -0
  48. package/components/app-mobile/education/certificate.html +30 -0
  49. package/components/app-mobile/education/course-card.html +32 -0
  50. package/components/app-mobile/education/grade-report.html +53 -0
  51. package/components/app-mobile/education/lesson-progress.html +21 -0
  52. package/components/app-mobile/education/quiz-mcq.html +35 -0
  53. package/components/app-mobile/education/quiz-truefalse.html +26 -0
  54. package/components/app-mobile/education/student-dashboard.html +57 -0
  55. package/components/app-mobile/feedback/banner.html +13 -0
  56. package/components/app-mobile/feedback/progress-circular.html +14 -0
  57. package/components/app-mobile/feedback/progress-linear.html +11 -0
  58. package/components/app-mobile/feedback/skeleton.html +20 -0
  59. package/components/app-mobile/feedback/snackbar.html +15 -0
  60. package/components/app-mobile/feedback/tooltip.html +9 -0
  61. package/components/app-mobile/finance/bank-account-card.html +36 -0
  62. package/components/app-mobile/finance/budget-category.html +24 -0
  63. package/components/app-mobile/finance/credit-score.html +29 -0
  64. package/components/app-mobile/finance/investment-portfolio.html +52 -0
  65. package/components/app-mobile/finance/transaction-row.html +26 -0
  66. package/components/app-mobile/finance/transfer-form.html +42 -0
  67. package/components/app-mobile/fitness/body-metrics.html +41 -0
  68. package/components/app-mobile/fitness/calorie-tracker.html +48 -0
  69. package/components/app-mobile/fitness/exercise-timer.html +30 -0
  70. package/components/app-mobile/fitness/meal-plan.html +36 -0
  71. package/components/app-mobile/fitness/sleep-tracker.html +50 -0
  72. package/components/app-mobile/fitness/workout-card.html +37 -0
  73. package/components/app-mobile/food/cuisine-filter.html +39 -0
  74. package/components/app-mobile/food/menu-item.html +25 -0
  75. package/components/app-mobile/food/order-tracker.html +46 -0
  76. package/components/app-mobile/food/restaurant-card.html +34 -0
  77. package/components/app-mobile/food/review-card.html +35 -0
  78. package/components/app-mobile/food/table-reservation.html +42 -0
  79. package/components/app-mobile/forms/form-address.html +41 -0
  80. package/components/app-mobile/forms/form-payment.html +37 -0
  81. package/components/app-mobile/forms/form-profile.html +39 -0
  82. package/components/app-mobile/forms/time-picker.html +28 -0
  83. package/components/app-mobile/healthcare/appointment-card.html +26 -0
  84. package/components/app-mobile/healthcare/doctor-profile.html +32 -0
  85. package/components/app-mobile/healthcare/health-metric-chart.html +51 -0
  86. package/components/app-mobile/healthcare/insurance-card.html +35 -0
  87. package/components/app-mobile/healthcare/lab-results.html +23 -0
  88. package/components/app-mobile/healthcare/medication-reminder.html +24 -0
  89. package/components/app-mobile/healthcare/symptom-checker.html +42 -0
  90. package/components/app-mobile/healthcare/vitals-dashboard.html +56 -0
  91. package/components/app-mobile/inputs/date-picker.html +68 -0
  92. package/components/app-mobile/inputs/file-upload.html +13 -0
  93. package/components/app-mobile/inputs/otp-input.html +16 -0
  94. package/components/app-mobile/inputs/password-field.html +13 -0
  95. package/components/app-mobile/inputs/search-bar.html +17 -0
  96. package/components/app-mobile/inputs/select.html +17 -0
  97. package/components/app-mobile/inputs/text-field-filled.html +12 -0
  98. package/components/app-mobile/inputs/text-field-outlined.html +12 -0
  99. package/components/app-mobile/inputs/textarea.html +12 -0
  100. package/components/app-mobile/inputs/time-picker.html +33 -0
  101. package/components/app-mobile/job/application-status.html +18 -0
  102. package/components/app-mobile/job/interview-schedule.html +32 -0
  103. package/components/app-mobile/lists/list-item-1line.html +14 -0
  104. package/components/app-mobile/lists/list-item-2line.html +20 -0
  105. package/components/app-mobile/lists/list-item-3line.html +17 -0
  106. package/components/app-mobile/logistics/delivery-map.html +40 -0
  107. package/components/app-mobile/logistics/driver-card.html +25 -0
  108. package/components/app-mobile/logistics/package-tracker.html +42 -0
  109. package/components/app-mobile/logistics/shipment-row.html +20 -0
  110. package/components/app-mobile/media/audio-player.html +38 -0
  111. package/components/app-mobile/media/image-carousel.html +28 -0
  112. package/components/app-mobile/menus/menu-context.html +13 -0
  113. package/components/app-mobile/menus/menu-dropdown.html +14 -0
  114. package/components/app-mobile/native/gesture-nav-bar.html +11 -0
  115. package/components/app-mobile/native/ios-action-sheet.html +19 -0
  116. package/components/app-mobile/native/ios-alert.html +18 -0
  117. package/components/app-mobile/native/ios-home-indicator.html +11 -0
  118. package/components/app-mobile/native/ios-list-cell.html +14 -0
  119. package/components/app-mobile/native/ios-nav-bar.html +16 -0
  120. package/components/app-mobile/native/ios-page-sheet.html +17 -0
  121. package/components/app-mobile/native/ios-search-bar.html +15 -0
  122. package/components/app-mobile/native/ios-segmented-control.html +13 -0
  123. package/components/app-mobile/native/ios-status-bar.html +17 -0
  124. package/components/app-mobile/native/ios-tab-bar.html +31 -0
  125. package/components/app-mobile/native/ios-wheel-picker.html +34 -0
  126. package/components/app-mobile/native/notification-item.html +19 -0
  127. package/components/app-mobile/native/permission-dialog.html +18 -0
  128. package/components/app-mobile/native/status-bar.html +16 -0
  129. package/components/app-mobile/navbars/bottom-app-bar.html +19 -0
  130. package/components/app-mobile/navbars/bottom-nav-3.html +28 -0
  131. package/components/app-mobile/navbars/bottom-nav-4.html +26 -0
  132. package/components/app-mobile/navbars/bottom-nav-5.html +30 -0
  133. package/components/app-mobile/navbars/top-app-bar-center.html +17 -0
  134. package/components/app-mobile/navbars/top-app-bar-large.html +20 -0
  135. package/components/app-mobile/navbars/top-app-bar-medium.html +20 -0
  136. package/components/app-mobile/navbars/top-app-bar-small.html +22 -0
  137. package/components/app-mobile/navigation/back-header.html +32 -0
  138. package/components/app-mobile/navigation/segmented-control.html +19 -0
  139. package/components/app-mobile/navigation/stepper-vertical.html +65 -0
  140. package/components/app-mobile/patterns/accordion.html +20 -0
  141. package/components/app-mobile/patterns/activity-feed.html +26 -0
  142. package/components/app-mobile/patterns/audio-waveform.html +34 -0
  143. package/components/app-mobile/patterns/avatar-group.html +14 -0
  144. package/components/app-mobile/patterns/breadcrumb.html +15 -0
  145. package/components/app-mobile/patterns/calendar-month.html +56 -0
  146. package/components/app-mobile/patterns/camera-viewfinder.html +33 -0
  147. package/components/app-mobile/patterns/card-horizontal.html +15 -0
  148. package/components/app-mobile/patterns/cart-item.html +23 -0
  149. package/components/app-mobile/patterns/category-pills.html +15 -0
  150. package/components/app-mobile/patterns/chat-bubble-received.html +15 -0
  151. package/components/app-mobile/patterns/chat-bubble-sent.html +14 -0
  152. package/components/app-mobile/patterns/chat-conversation.html +27 -0
  153. package/components/app-mobile/patterns/chat-input-bar.html +13 -0
  154. package/components/app-mobile/patterns/code-editor.html +29 -0
  155. package/components/app-mobile/patterns/comment-item.html +15 -0
  156. package/components/app-mobile/patterns/contact-card.html +19 -0
  157. package/components/app-mobile/patterns/data-table.html +25 -0
  158. package/components/app-mobile/patterns/empty-state.html +19 -0
  159. package/components/app-mobile/patterns/error-screen.html +14 -0
  160. package/components/app-mobile/patterns/event-card.html +22 -0
  161. package/components/app-mobile/patterns/image-editor.html +34 -0
  162. package/components/app-mobile/patterns/image-grid.html +16 -0
  163. package/components/app-mobile/patterns/login-form.html +22 -0
  164. package/components/app-mobile/patterns/map-card.html +19 -0
  165. package/components/app-mobile/patterns/media-player.html +26 -0
  166. package/components/app-mobile/patterns/notification-list.html +25 -0
  167. package/components/app-mobile/patterns/onboarding-slide.html +24 -0
  168. package/components/app-mobile/patterns/order-summary.html +16 -0
  169. package/components/app-mobile/patterns/order-tracker.html +27 -0
  170. package/components/app-mobile/patterns/pagination.html +17 -0
  171. package/components/app-mobile/patterns/post-card.html +28 -0
  172. package/components/app-mobile/patterns/product-card.html +26 -0
  173. package/components/app-mobile/patterns/profile-header.html +18 -0
  174. package/components/app-mobile/patterns/rating-stars.html +15 -0
  175. package/components/app-mobile/patterns/review-card.html +22 -0
  176. package/components/app-mobile/patterns/search-results.html +35 -0
  177. package/components/app-mobile/patterns/settings-group.html +30 -0
  178. package/components/app-mobile/patterns/stepper-horizontal.html +24 -0
  179. package/components/app-mobile/patterns/story-circle.html +16 -0
  180. package/components/app-mobile/patterns/swipe-action.html +19 -0
  181. package/components/app-mobile/patterns/tag-pills.html +14 -0
  182. package/components/app-mobile/patterns/timeline-item.html +19 -0
  183. package/components/app-mobile/patterns/todo-item.html +18 -0
  184. package/components/app-mobile/patterns/video-editor-timeline.html +36 -0
  185. package/components/app-mobile/patterns/video-player.html +33 -0
  186. package/components/app-mobile/patterns/wallet-card.html +18 -0
  187. package/components/app-mobile/sliders/slider-continuous.html +14 -0
  188. package/components/app-mobile/sliders/slider-discrete.html +21 -0
  189. package/components/app-mobile/social/chat-bubble-received.html +15 -0
  190. package/components/app-mobile/social/chat-bubble-sent.html +16 -0
  191. package/components/app-mobile/social/notification-item.html +17 -0
  192. package/components/app-mobile/social/post-card.html +46 -0
  193. package/components/app-mobile/social/reaction-bar.html +29 -0
  194. package/components/app-mobile/social/story-circle.html +15 -0
  195. package/components/app-mobile/social/user-profile-card.html +29 -0
  196. package/components/app-mobile/surfaces/bottom-sheet.html +23 -0
  197. package/components/app-mobile/surfaces/nav-drawer.html +20 -0
  198. package/components/app-mobile/surfaces/nav-rail.html +14 -0
  199. package/components/app-mobile/surfaces/side-sheet.html +17 -0
  200. package/components/app-mobile/tabs/tabs-primary.html +13 -0
  201. package/components/app-mobile/tabs/tabs-secondary.html +13 -0
  202. package/components/app-mobile/toggles/checkbox.html +14 -0
  203. package/components/app-mobile/toggles/radio.html +14 -0
  204. package/components/app-mobile/toggles/switch.html +11 -0
  205. package/components/app-mobile/travel/booking-summary.html +51 -0
  206. package/components/app-mobile/travel/flight-card.html +41 -0
  207. package/components/app-mobile/travel/hotel-card.html +35 -0
  208. package/components/app-mobile/travel/itinerary-item.html +29 -0
  209. package/components/app-mobile/travel/map-pins.html +42 -0
  210. package/components/app-mobile/travel/travel-date-picker.html +72 -0
  211. package/components/common/decorations/abstract-lines.html +30 -0
  212. package/components/common/decorations/circle-rings.html +26 -0
  213. package/components/common/decorations/corner-decoration.html +27 -0
  214. package/components/common/decorations/dots-pattern.html +51 -0
  215. package/components/common/decorations/gradient-blob.html +19 -0
  216. package/components/common/decorations/mesh-gradient.html +32 -0
  217. package/components/common/decorations/sparkle-burst.html +35 -0
  218. package/components/common/decorations/wave-divider.html +17 -0
  219. package/components/common/illustrations/empty-cart.html +27 -0
  220. package/components/common/illustrations/empty-inbox.html +28 -0
  221. package/components/common/illustrations/empty-search.html +26 -0
  222. package/components/common/illustrations/error-404.html +29 -0
  223. package/components/common/illustrations/no-data.html +31 -0
  224. package/components/common/illustrations/success-check.html +33 -0
  225. package/components/common/illustrations/upload-cloud.html +23 -0
  226. package/components/common/illustrations/welcome.html +31 -0
  227. package/components/common/mockup-elements/avatar-placeholder.html +17 -0
  228. package/components/common/mockup-elements/browser-chrome.html +37 -0
  229. package/components/common/mockup-elements/chart-bar.html +42 -0
  230. package/components/common/mockup-elements/image-placeholder.html +27 -0
  231. package/components/common/mockup-elements/laptop-frame.html +32 -0
  232. package/components/common/mockup-elements/map-placeholder.html +39 -0
  233. package/components/common/mockup-elements/phone-frame.html +29 -0
  234. package/components/common/mockup-elements/status-bar-android.html +30 -0
  235. package/components/common/mockup-elements/status-bar-ios.html +26 -0
  236. package/components/common/mockup-elements/video-placeholder.html +29 -0
  237. package/components/common/ui-icons/icon-add-circle.html +12 -0
  238. package/components/common/ui-icons/icon-airdrop.html +10 -0
  239. package/components/common/ui-icons/icon-airplay.html +10 -0
  240. package/components/common/ui-icons/icon-apple-logo.html +10 -0
  241. package/components/common/ui-icons/icon-arrow-back.html +11 -0
  242. package/components/common/ui-icons/icon-arrow-down.html +10 -0
  243. package/components/common/ui-icons/icon-arrow-right.html +10 -0
  244. package/components/common/ui-icons/icon-arrow-up.html +10 -0
  245. package/components/common/ui-icons/icon-bag.html +10 -0
  246. package/components/common/ui-icons/icon-battery.html +10 -0
  247. package/components/common/ui-icons/icon-bluetooth.html +10 -0
  248. package/components/common/ui-icons/icon-bolt.html +10 -0
  249. package/components/common/ui-icons/icon-bookmark-fill.html +10 -0
  250. package/components/common/ui-icons/icon-bookmark.html +10 -0
  251. package/components/common/ui-icons/icon-bubble-left.html +10 -0
  252. package/components/common/ui-icons/icon-calendar.html +19 -0
  253. package/components/common/ui-icons/icon-camera.html +11 -0
  254. package/components/common/ui-icons/icon-cart.html +10 -0
  255. package/components/common/ui-icons/icon-checkmark.html +10 -0
  256. package/components/common/ui-icons/icon-chevron-down.html +10 -0
  257. package/components/common/ui-icons/icon-chevron-left.html +10 -0
  258. package/components/common/ui-icons/icon-chevron-right.html +10 -0
  259. package/components/common/ui-icons/icon-chevron-up.html +10 -0
  260. package/components/common/ui-icons/icon-clock.html +10 -0
  261. package/components/common/ui-icons/icon-creditcard.html +10 -0
  262. package/components/common/ui-icons/icon-doc.html +10 -0
  263. package/components/common/ui-icons/icon-download.html +10 -0
  264. package/components/common/ui-icons/icon-ellipsis-vertical.html +10 -0
  265. package/components/common/ui-icons/icon-ellipsis.html +10 -0
  266. package/components/common/ui-icons/icon-envelope.html +10 -0
  267. package/components/common/ui-icons/icon-eye-slash.html +10 -0
  268. package/components/common/ui-icons/icon-eye.html +10 -0
  269. package/components/common/ui-icons/icon-faceid.html +10 -0
  270. package/components/common/ui-icons/icon-favorite.html +10 -0
  271. package/components/common/ui-icons/icon-folder.html +10 -0
  272. package/components/common/ui-icons/icon-globe.html +10 -0
  273. package/components/common/ui-icons/icon-heart-fill.html +10 -0
  274. package/components/common/ui-icons/icon-heart.html +10 -0
  275. package/components/common/ui-icons/icon-home.html +10 -0
  276. package/components/common/ui-icons/icon-link.html +10 -0
  277. package/components/common/ui-icons/icon-list-bullet.html +10 -0
  278. package/components/common/ui-icons/icon-location.html +11 -0
  279. package/components/common/ui-icons/icon-lock.html +10 -0
  280. package/components/common/ui-icons/icon-magnifying-glass.html +10 -0
  281. package/components/common/ui-icons/icon-map.html +10 -0
  282. package/components/common/ui-icons/icon-menu-hamburger.html +12 -0
  283. package/components/common/ui-icons/icon-mic.html +10 -0
  284. package/components/common/ui-icons/icon-minus.html +10 -0
  285. package/components/common/ui-icons/icon-notification.html +11 -0
  286. package/components/common/ui-icons/icon-paperplane.html +10 -0
  287. package/components/common/ui-icons/icon-pause.html +10 -0
  288. package/components/common/ui-icons/icon-pencil.html +10 -0
  289. package/components/common/ui-icons/icon-person-2.html +10 -0
  290. package/components/common/ui-icons/icon-person-crop-circle.html +10 -0
  291. package/components/common/ui-icons/icon-phone-fill.html +10 -0
  292. package/components/common/ui-icons/icon-photo.html +10 -0
  293. package/components/common/ui-icons/icon-play-fill.html +10 -0
  294. package/components/common/ui-icons/icon-plus.html +10 -0
  295. package/components/common/ui-icons/icon-profile.html +11 -0
  296. package/components/common/ui-icons/icon-qrcode.html +10 -0
  297. package/components/common/ui-icons/icon-settings.html +11 -0
  298. package/components/common/ui-icons/icon-share.html +14 -0
  299. package/components/common/ui-icons/icon-slider-horizontal.html +10 -0
  300. package/components/common/ui-icons/icon-square-grid.html +10 -0
  301. package/components/common/ui-icons/icon-star-fill.html +10 -0
  302. package/components/common/ui-icons/icon-star.html +10 -0
  303. package/components/common/ui-icons/icon-touchid.html +10 -0
  304. package/components/common/ui-icons/icon-trash.html +10 -0
  305. package/components/common/ui-icons/icon-upload.html +10 -0
  306. package/components/common/ui-icons/icon-video.html +10 -0
  307. package/components/common/ui-icons/icon-wifi.html +10 -0
  308. package/components/common/ui-icons/icon-xmark.html +10 -0
  309. package/components/componentmap-app-mobile.md +210 -0
  310. package/components/componentmap-web.md +206 -0
  311. package/components/web/README.md +110 -0
  312. package/components/web/account/payment-method.html +13 -0
  313. package/components/web/account/profile-card.html +18 -0
  314. package/components/web/account/subscription-card.html +21 -0
  315. package/components/web/badges/badge-set.html +14 -0
  316. package/components/web/buttons/button-danger.html +10 -0
  317. package/components/web/buttons/button-ghost.html +10 -0
  318. package/components/web/buttons/button-group.html +12 -0
  319. package/components/web/buttons/button-icon.html +10 -0
  320. package/components/web/buttons/button-primary.html +11 -0
  321. package/components/web/buttons/button-secondary.html +10 -0
  322. package/components/web/cards/card-basic.html +11 -0
  323. package/components/web/cards/card-feature.html +12 -0
  324. package/components/web/cards/card-image.html +16 -0
  325. package/components/web/cards/card-pricing.html +21 -0
  326. package/components/web/cards/card-stat.html +15 -0
  327. package/components/web/cards/card-testimonial.html +21 -0
  328. package/components/web/cart/cart-page.html +30 -0
  329. package/components/web/cart/checkout-form.html +27 -0
  330. package/components/web/cart/order-confirmation.html +24 -0
  331. package/components/web/charts/chart-area.html +25 -0
  332. package/components/web/charts/chart-bar.html +19 -0
  333. package/components/web/charts/chart-donut.html +27 -0
  334. package/components/web/content/author-card.html +15 -0
  335. package/components/web/content/blog-card-horizontal.html +16 -0
  336. package/components/web/cta/cta-centered.html +15 -0
  337. package/components/web/cta/cta-newsletter.html +16 -0
  338. package/components/web/cta/cta-with-image.html +17 -0
  339. package/components/web/data-display/accordion.html +45 -0
  340. package/components/web/data-display/grid-view.html +21 -0
  341. package/components/web/data-display/list-view.html +27 -0
  342. package/components/web/data-display/progress-steps.html +39 -0
  343. package/components/web/data-display/rating-stars.html +38 -0
  344. package/components/web/data-display/stat-card-compact.html +32 -0
  345. package/components/web/data-display/stat-card-large.html +34 -0
  346. package/components/web/data-display/table-selectable.html +127 -0
  347. package/components/web/data-display/table-sortable.html +120 -0
  348. package/components/web/data-display/tag-group.html +25 -0
  349. package/components/web/data-display/timeline-horizontal.html +55 -0
  350. package/components/web/data-display/timeline-vertical.html +76 -0
  351. package/components/web/data-display/tree-view.html +86 -0
  352. package/components/web/dividers/divider-text.html +8 -0
  353. package/components/web/ecommerce/coupon-input.html +11 -0
  354. package/components/web/ecommerce/product-card-grid.html +29 -0
  355. package/components/web/ecommerce/product-card-list.html +32 -0
  356. package/components/web/features/features-alternating.html +35 -0
  357. package/components/web/features/features-bento.html +43 -0
  358. package/components/web/features/features-icon-list.html +44 -0
  359. package/components/web/feedback/alert-banner.html +12 -0
  360. package/components/web/feedback/empty-state-error.html +18 -0
  361. package/components/web/feedback/empty-state-no-data.html +18 -0
  362. package/components/web/feedback/empty-state-no-search.html +15 -0
  363. package/components/web/feedback/empty-state.html +16 -0
  364. package/components/web/feedback/loading-spinner.html +14 -0
  365. package/components/web/feedback/progress-bar.html +11 -0
  366. package/components/web/feedback/skeleton-card.html +17 -0
  367. package/components/web/feedback/skeleton-list.html +45 -0
  368. package/components/web/feedback/skeleton.html +16 -0
  369. package/components/web/feedback/toast-error.html +12 -0
  370. package/components/web/feedback/toast-info.html +12 -0
  371. package/components/web/feedback/toast-success.html +12 -0
  372. package/components/web/feedback/tooltip.html +8 -0
  373. package/components/web/forms/date-picker.html +67 -0
  374. package/components/web/forms/file-upload.html +16 -0
  375. package/components/web/forms/form-contact.html +35 -0
  376. package/components/web/forms/form-login.html +29 -0
  377. package/components/web/forms/form-search-filters.html +57 -0
  378. package/components/web/forms/form-signup.html +35 -0
  379. package/components/web/heroes/hero-gradient.html +20 -0
  380. package/components/web/heroes/hero-image-bg.html +21 -0
  381. package/components/web/heroes/hero-video.html +17 -0
  382. package/components/web/inputs/checkbox.html +11 -0
  383. package/components/web/inputs/date-input.html +15 -0
  384. package/components/web/inputs/file-upload.html +12 -0
  385. package/components/web/inputs/radio-group.html +15 -0
  386. package/components/web/inputs/search-command.html +12 -0
  387. package/components/web/inputs/select.html +14 -0
  388. package/components/web/inputs/tag-input.html +15 -0
  389. package/components/web/inputs/text-input.html +11 -0
  390. package/components/web/inputs/textarea.html +11 -0
  391. package/components/web/inputs/toggle.html +11 -0
  392. package/components/web/job/candidate-profile.html +47 -0
  393. package/components/web/job/job-listing.html +44 -0
  394. package/components/web/job/resume-section.html +41 -0
  395. package/components/web/job/salary-range.html +19 -0
  396. package/components/web/layout/cta-banner.html +15 -0
  397. package/components/web/layout/features-grid.html +31 -0
  398. package/components/web/layout/hero-centered.html +19 -0
  399. package/components/web/layout/hero-split.html +21 -0
  400. package/components/web/layout/pricing-section.html +37 -0
  401. package/components/web/layout/stats-row.html +13 -0
  402. package/components/web/logos/logo-grid.html +20 -0
  403. package/components/web/logos/logo-ticker.html +19 -0
  404. package/components/web/marketing/cta-simple.html +18 -0
  405. package/components/web/marketing/cta-split.html +20 -0
  406. package/components/web/marketing/faq-accordion.html +55 -0
  407. package/components/web/marketing/feature-centered.html +35 -0
  408. package/components/web/marketing/feature-grid-2col.html +58 -0
  409. package/components/web/marketing/feature-grid-3col.html +44 -0
  410. package/components/web/marketing/footer-complex.html +86 -0
  411. package/components/web/marketing/footer-simple.html +59 -0
  412. package/components/web/marketing/hero-centered.html +44 -0
  413. package/components/web/marketing/hero-split-left.html +41 -0
  414. package/components/web/marketing/hero-split-right.html +35 -0
  415. package/components/web/marketing/logo-cloud.html +18 -0
  416. package/components/web/marketing/newsletter-signup.html +25 -0
  417. package/components/web/marketing/pricing-3tier.html +72 -0
  418. package/components/web/marketing/pricing-toggle.html +85 -0
  419. package/components/web/marketing/social-proof-bar.html +32 -0
  420. package/components/web/marketing/stats-row.html +45 -0
  421. package/components/web/marketing/team-grid.html +65 -0
  422. package/components/web/marketing/testimonial-carousel.html +45 -0
  423. package/components/web/marketing/testimonial-grid.html +75 -0
  424. package/components/web/media/blog-post-card.html +24 -0
  425. package/components/web/media/comment-single.html +26 -0
  426. package/components/web/media/image-gallery-grid.html +18 -0
  427. package/components/web/media/rich-text-block.html +20 -0
  428. package/components/web/media/testimonial-quote.html +20 -0
  429. package/components/web/media/video-player.html +44 -0
  430. package/components/web/menus/dropdown-menu.html +14 -0
  431. package/components/web/metrics/kpi-row.html +13 -0
  432. package/components/web/modals/modal-basic.html +21 -0
  433. package/components/web/modals/modal-form.html +22 -0
  434. package/components/web/navbars/breadcrumb.html +14 -0
  435. package/components/web/navbars/footer.html +35 -0
  436. package/components/web/navbars/sidebar-dark.html +21 -0
  437. package/components/web/navbars/sidebar.html +23 -0
  438. package/components/web/navbars/topnav-search.html +25 -0
  439. package/components/web/navbars/topnav.html +20 -0
  440. package/components/web/navigation/mega-menu.html +92 -0
  441. package/components/web/navigation/pagination.html +43 -0
  442. package/components/web/navigation/sidebar-collapsed.html +93 -0
  443. package/components/web/navigation/sidebar-expanded.html +121 -0
  444. package/components/web/navigation/stepper-horizontal.html +51 -0
  445. package/components/web/patterns/accordion.html +19 -0
  446. package/components/web/patterns/activity-feed.html +25 -0
  447. package/components/web/patterns/auth-login.html +24 -0
  448. package/components/web/patterns/avatar-group.html +13 -0
  449. package/components/web/patterns/calendar-month.html +44 -0
  450. package/components/web/patterns/category-pills.html +15 -0
  451. package/components/web/patterns/chat-web.html +24 -0
  452. package/components/web/patterns/code-editor.html +34 -0
  453. package/components/web/patterns/comparison-table.html +39 -0
  454. package/components/web/patterns/cookie-banner.html +14 -0
  455. package/components/web/patterns/error-page.html +16 -0
  456. package/components/web/patterns/file-list.html +24 -0
  457. package/components/web/patterns/filter-toolbar.html +14 -0
  458. package/components/web/patterns/kanban-column.html +27 -0
  459. package/components/web/patterns/notification-list.html +26 -0
  460. package/components/web/patterns/order-tracker.html +16 -0
  461. package/components/web/patterns/pagination.html +16 -0
  462. package/components/web/patterns/product-card-web.html +23 -0
  463. package/components/web/patterns/settings-form.html +24 -0
  464. package/components/web/patterns/stepper.html +16 -0
  465. package/components/web/patterns/user-table-row.html +15 -0
  466. package/components/web/patterns/video-player.html +26 -0
  467. package/components/web/presentation/slide-content.html +17 -0
  468. package/components/web/presentation/slide-title.html +13 -0
  469. package/components/web/pricing/pricing-table.html +51 -0
  470. package/components/web/pricing/pricing-toggle.html +62 -0
  471. package/components/web/print/business-card.html +20 -0
  472. package/components/web/products/product-card-horizontal.html +19 -0
  473. package/components/web/products/product-detail.html +39 -0
  474. package/components/web/products/product-grid.html +13 -0
  475. package/components/web/products/review-section.html +29 -0
  476. package/components/web/promotions/coupon-card.html +17 -0
  477. package/components/web/promotions/promo-banner.html +24 -0
  478. package/components/web/real-estate/agent-contact.html +32 -0
  479. package/components/web/real-estate/listing-detail-hero.html +44 -0
  480. package/components/web/real-estate/price-range-slider.html +20 -0
  481. package/components/web/real-estate/property-card.html +38 -0
  482. package/components/web/real-estate/property-map-pin.html +19 -0
  483. package/components/web/real-estate/virtual-tour-button.html +17 -0
  484. package/components/web/saas/api-key-row.html +31 -0
  485. package/components/web/saas/audit-log-row.html +21 -0
  486. package/components/web/saas/billing-plan.html +50 -0
  487. package/components/web/saas/kpi-row.html +61 -0
  488. package/components/web/saas/team-member-row.html +30 -0
  489. package/components/web/saas/webhook-config.html +44 -0
  490. package/components/web/screenshots/app-screenshot.html +32 -0
  491. package/components/web/screenshots/screenshot-gallery.html +45 -0
  492. package/components/web/social/comment-thread.html +75 -0
  493. package/components/web/social-media/instagram-post.html +17 -0
  494. package/components/web/social-proof/logo-cloud.html +18 -0
  495. package/components/web/social-proof/testimonial-carousel.html +30 -0
  496. package/components/web/surfaces/slide-over.html +20 -0
  497. package/components/web/tables/data-table.html +41 -0
  498. package/components/web/tables/table-simple.html +13 -0
  499. package/components/web/tabs/tabs-pills.html +12 -0
  500. package/components/web/tabs/tabs-underline.html +13 -0
  501. package/components/web/toggles/toggle-dark-mode.html +19 -0
  502. package/components/web/toggles/toggle-group.html +38 -0
  503. package/components/web/toggles/toggle-switch.html +14 -0
  504. package/components/web/widgets/api-key-row.html +16 -0
  505. package/components/web/widgets/billing-card.html +14 -0
  506. package/components/web/widgets/changelog-item.html +15 -0
  507. package/components/web/widgets/integration-card.html +15 -0
  508. package/components/web/widgets/onboarding-checklist.html +18 -0
  509. package/components/web/widgets/pricing-toggle.html +13 -0
  510. package/components/web/widgets/team-member-row.html +13 -0
  511. package/components/web/widgets/usage-meter.html +12 -0
  512. package/package.json +46 -0
  513. package/skills/README.md +35 -0
  514. package/skills/contribute.md +267 -0
  515. package/skills/design.md +470 -0
  516. package/skills/flutter.md +156 -0
  517. package/skills/nextjs.md +143 -0
  518. package/skills/react-native.md +258 -0
  519. package/skills/react.md +171 -0
  520. package/skills/svelte.md +95 -0
  521. package/skills/swiftui.md +171 -0
  522. package/skills/tailwind.md +108 -0
  523. package/skills/vue.md +111 -0
  524. package/src/commands/add.js +51 -0
  525. package/src/commands/convert.js +120 -0
  526. package/src/commands/design.js +89 -0
  527. package/src/commands/init.js +136 -0
  528. package/src/commands/list.js +52 -0
  529. package/src/commands/search.js +40 -0
  530. package/src/lib/index.js +100 -0
@@ -0,0 +1,206 @@
1
+ # Component Map — web
2
+
3
+ > 200 HTML components. Auto-generated by `gen-previews.ts`.
4
+
5
+ | # | Ref | Name | Category | Size | Tags |
6
+ |---|-----|------|----------|------|------|
7
+ | 1 | `web/account/payment-method` | Payment Method — Card | account | 400×72 | payment, card, billing, account, method |
8
+ | 2 | `web/account/profile-card` | Profile Card — User Account | account | 360×180 | profile, user, account, avatar, settings |
9
+ | 3 | `web/account/subscription-card` | Subscription Card — Plan Details | account | 400×200 | subscription, plan, billing, account, pricing |
10
+ | 4 | `web/badges/badge-set` | Badge Set — Status Variants | badges | 400×28 | badge, status, tag, label, pill |
11
+ | 5 | `web/buttons/button-danger` | Danger Button | buttons | 200×40 | button, danger, destructive, delete, error |
12
+ | 6 | `web/buttons/button-ghost` | Ghost Button | buttons | 160×40 | button, ghost, text, minimal, subtle |
13
+ | 7 | `web/buttons/button-group` | Button Group — 3 Joined | buttons | 300×36 | button, group, segmented, toggle |
14
+ | 8 | `web/buttons/button-icon` | Icon Button | buttons | 36×36 | button, icon, circle, round, compact |
15
+ | 9 | `web/buttons/button-primary` | Primary Button | buttons | 320×40 | button, primary, cta, action, icon |
16
+ | 10 | `web/buttons/button-secondary` | Secondary Button | buttons | 200×40 | button, secondary, outline, border |
17
+ | 11 | `web/cards/card-basic` | Card — Basic | cards | 360×160 | card, basic, border, container |
18
+ | 12 | `web/cards/card-feature` | Card — Feature | cards | 320×200 | card, feature, icon, grid, landing |
19
+ | 13 | `web/cards/card-image` | Card — with Image | cards | 360×340 | card, image, article, blog, content |
20
+ | 14 | `web/cards/card-pricing` | Card — Pricing Tier | cards | 320×480 | card, pricing, plan, subscription, features |
21
+ | 15 | `web/cards/card-stat` | Card — Stat / KPI | cards | 280×130 | card, stat, kpi, metric, dashboard, number |
22
+ | 16 | `web/cards/card-testimonial` | Card — Testimonial | cards | 360×240 | card, testimonial, review, quote, social-proof |
23
+ | 17 | `web/cart/cart-page` | Cart Page — Items + Summary | cart | 1200×500 | cart, page, shopping, checkout, ecommerce |
24
+ | 18 | `web/cart/checkout-form` | Checkout Form — Shipping + Payment | cart | 640×600 | checkout, form, shipping, payment, ecommerce |
25
+ | 19 | `web/cart/order-confirmation` | Order Confirmation — Success | cart | 560×440 | order, confirmation, success, receipt, ecommerce |
26
+ | 20 | `web/charts/chart-area` | Area Chart — with Gradient | charts | 560×280 | chart, area, line, trend, data, visualization |
27
+ | 21 | `web/charts/chart-bar` | Bar Chart — Vertical | charts | 560×280 | chart, bar, vertical, data, visualization |
28
+ | 22 | `web/charts/chart-donut` | Donut Chart — with Legend | charts | 320×300 | chart, donut, pie, data, visualization, legend |
29
+ | 23 | `web/content/author-card` | Author Card — Bio | content | 640×100 | author, bio, card, content, blog |
30
+ | 24 | `web/content/blog-card-horizontal` | Blog Card — Horizontal | content | 640×160 | blog, card, article, horizontal, content |
31
+ | 25 | `web/cta/cta-centered` | CTA — Centered | cta | 1440×320 | cta, call-to-action, centered, buttons, conversion |
32
+ | 26 | `web/cta/cta-newsletter` | CTA — Newsletter Signup | cta | 1440×280 | cta, newsletter, email, signup, subscribe, form |
33
+ | 27 | `web/cta/cta-with-image` | CTA — Split with Image | cta | 1440×400 | cta, call-to-action, split, image, two-column |
34
+ | 28 | `web/data-display/accordion` | Accordion | data-display | 500×300 | accordion, expandable, faq, collapse |
35
+ | 29 | `web/data-display/grid-view` | Grid View — Responsive Cards | data-display | 800×400 | grid, view, cards, responsive, gallery |
36
+ | 30 | `web/data-display/list-view` | List View — Rows | data-display | 640×280 | list, view, rows, vertical, items |
37
+ | 31 | `web/data-display/progress-steps` | Progress Steps | data-display | 400×50 | progress, steps, indicator, flow |
38
+ | 32 | `web/data-display/rating-stars` | Rating Stars | data-display | 180×24 | rating, stars, review, score |
39
+ | 33 | `web/data-display/stat-card-compact` | Stat Card — Compact | data-display | 200×80 | stat, metric, kpi, compact |
40
+ | 34 | `web/data-display/stat-card-large` | Stat Card — Large | data-display | 300×160 | stat, metric, kpi, dashboard, card |
41
+ | 35 | `web/data-display/table-selectable` | Data Table — Selectable | data-display | 800×360 | table, data, selectable, checkbox |
42
+ | 36 | `web/data-display/table-sortable` | Data Table — Sortable | data-display | 800×360 | table, data, sortable, list |
43
+ | 37 | `web/data-display/tag-group` | Tag Group | data-display | 360×36 | tag, chip, group, labels, filter |
44
+ | 38 | `web/data-display/timeline-horizontal` | Timeline — Horizontal | data-display | 600×120 | timeline, horizontal, steps, progress |
45
+ | 39 | `web/data-display/timeline-vertical` | Timeline — Vertical | data-display | 400×400 | timeline, vertical, events, history |
46
+ | 40 | `web/data-display/tree-view` | Tree View | data-display | 280×350 | tree, hierarchy, nested, folders |
47
+ | 41 | `web/dividers/divider-text` | Divider — with Text | dividers | 400×20 | divider, separator, or, text |
48
+ | 42 | `web/ecommerce/coupon-input` | Coupon Input | ecommerce | 360×48 | coupon, promo, discount, input, ecommerce |
49
+ | 43 | `web/ecommerce/product-card-grid` | Product Card — Grid | ecommerce | 240×340 | product, card, grid, shop, ecommerce |
50
+ | 44 | `web/ecommerce/product-card-list` | Product Card — List | ecommerce | 500×140 | product, card, list, horizontal, ecommerce |
51
+ | 45 | `web/features/features-alternating` | Features — Alternating Rows | features | 1440×600 | features, alternating, zigzag, image, section, landing |
52
+ | 46 | `web/features/features-bento` | Features — Bento Grid | features | 1440×520 | features, bento, grid, cards, section, landing |
53
+ | 47 | `web/features/features-icon-list` | Features — Icon List | features | 1440×520 | features, list, icons, vertical, section, landing |
54
+ | 48 | `web/feedback/alert-banner` | Alert Banner — Inline | feedback | 600×52 | alert, banner, info, warning, inline, message |
55
+ | 49 | `web/feedback/empty-state-error` | Empty State — Error | feedback | 360×280 | empty, state, error, retry |
56
+ | 50 | `web/feedback/empty-state-no-data` | Empty State — No Data | feedback | 360×280 | empty, state, no data, placeholder |
57
+ | 51 | `web/feedback/empty-state-no-search` | Empty State — No Results | feedback | 360×280 | empty, state, search, no results |
58
+ | 52 | `web/feedback/empty-state` | Empty State — No Data | feedback | 480×320 | empty, state, no-data, placeholder, illustration |
59
+ | 53 | `web/feedback/loading-spinner` | Loading Spinner — Centered | feedback | 200×200 | loading, spinner, progress, wait, feedback |
60
+ | 54 | `web/feedback/progress-bar` | Progress Bar — with Label | feedback | 400×36 | progress, bar, loading, percentage |
61
+ | 55 | `web/feedback/skeleton-card` | Skeleton — Card | feedback | 320×200 | skeleton, loading, placeholder, card |
62
+ | 56 | `web/feedback/skeleton-list` | Skeleton — List | feedback | 360×300 | skeleton, loading, placeholder, list |
63
+ | 57 | `web/feedback/skeleton` | Skeleton Loading | feedback | 360×120 | skeleton, loading, placeholder |
64
+ | 58 | `web/feedback/toast-error` | Toast — Error | feedback | 360×56 | toast, error, notification, alert |
65
+ | 59 | `web/feedback/toast-info` | Toast — Info | feedback | 360×56 | toast, info, notification, alert |
66
+ | 60 | `web/feedback/toast-success` | Toast — Success | feedback | 360×56 | toast, success, notification, alert |
67
+ | 61 | `web/feedback/tooltip` | Tooltip | feedback | 180×36 | tooltip, hint, help, popup |
68
+ | 62 | `web/forms/date-picker` | Date Picker | forms | 320×340 | date, picker, calendar, input |
69
+ | 63 | `web/forms/file-upload` | File Upload Zone | forms | 400×200 | file, upload, drag, drop, input |
70
+ | 64 | `web/forms/form-contact` | Form — Contact | forms | 500×420 | form, contact, message, email |
71
+ | 65 | `web/forms/form-login` | Form — Login | forms | 400×380 | form, login, auth, signin |
72
+ | 66 | `web/forms/form-search-filters` | Form — Search Filters | forms | 280×420 | form, filter, search, sidebar |
73
+ | 67 | `web/forms/form-signup` | Form — Sign Up | forms | 400×480 | form, signup, register, auth |
74
+ | 68 | `web/heroes/hero-gradient` | Hero — Gradient Background | heroes | 1440×560 | hero, gradient, landing, dark, cta |
75
+ | 69 | `web/heroes/hero-image-bg` | Hero — Full Image Background | heroes | 1440×560 | hero, image, background, overlay, landing |
76
+ | 70 | `web/heroes/hero-video` | Hero — with Video Preview | heroes | 1440×640 | hero, video, preview, landing, saas |
77
+ | 71 | `web/inputs/checkbox` | Checkbox — with Label | inputs | 200×24 | checkbox, input, form, toggle |
78
+ | 72 | `web/inputs/date-input` | Date Input — with Calendar Icon | inputs | 240×68 | date, input, calendar, picker, form |
79
+ | 73 | `web/inputs/file-upload` | File Upload Area | inputs | 400×140 | file, upload, drop, area, form |
80
+ | 74 | `web/inputs/radio-group` | Radio Group — Vertical | inputs | 300×140 | radio, group, options, form, select |
81
+ | 75 | `web/inputs/search-command` | Search Input — with Shortcut | inputs | 400×40 | search, input, command, shortcut |
82
+ | 76 | `web/inputs/select` | Select Dropdown | inputs | 360×68 | select, dropdown, form, option |
83
+ | 77 | `web/inputs/tag-input` | Tag Input — Multi Select Chips | inputs | 360×68 | tag, input, multi-select, chips, form |
84
+ | 78 | `web/inputs/text-input` | Text Input — with Label | inputs | 360×68 | input, text, field, form, label |
85
+ | 79 | `web/inputs/textarea` | Textarea — Multi-line | inputs | 360×140 | textarea, input, multiline, form |
86
+ | 80 | `web/inputs/toggle` | Toggle Switch — with Label | inputs | 200×24 | toggle, switch, setting, form |
87
+ | 81 | `web/job/candidate-profile` | Candidate Profile | job | 400×280 | candidate, profile, applicant, hiring |
88
+ | 82 | `web/job/job-listing` | Job Listing Card | job | 600×180 | job, listing, career, hiring |
89
+ | 83 | `web/job/resume-section` | Resume Section | job | 600×200 | resume, cv, experience, job |
90
+ | 84 | `web/job/salary-range` | Salary Range | job | 400×50 | salary, range, compensation, job |
91
+ | 85 | `web/layout/cta-banner` | CTA Banner — Newsletter | layout | 1440×280 | cta, banner, newsletter, subscribe, email |
92
+ | 86 | `web/layout/features-grid` | Features Grid — 3 Column | layout | 1440×480 | features, grid, landing, section, responsive |
93
+ | 87 | `web/layout/hero-centered` | Hero Section — Centered | layout | 1440×560 | hero, landing, centered, cta, headline |
94
+ | 88 | `web/layout/hero-split` | Hero Section — Split (Text + Image) | layout | 1440×560 | hero, landing, split, image, two-column |
95
+ | 89 | `web/layout/pricing-section` | Pricing Section — 3 Tiers | layout | 1440×640 | pricing, plans, section, landing, subscription |
96
+ | 90 | `web/layout/stats-row` | Stats Row — 4 Numbers | layout | 1440×160 | stats, numbers, metrics, social-proof, landing |
97
+ | 91 | `web/logos/logo-grid` | Logo Grid — 4x2 Trusted By | logos | 1440×240 | logo, grid, trusted, brands, partners, social-proof |
98
+ | 92 | `web/logos/logo-ticker` | Logo Ticker — Horizontal Marquee | logos | 1440×120 | logo, ticker, marquee, brands, scroll, social-proof |
99
+ | 93 | `web/marketing/cta-simple` | CTA — Simple | marketing | 1200×200 | cta, call to action, banner, marketing |
100
+ | 94 | `web/marketing/cta-split` | CTA — Split | marketing | 1200×200 | cta, newsletter, email, marketing |
101
+ | 95 | `web/marketing/faq-accordion` | FAQ Accordion | marketing | 800×400 | faq, accordion, questions, answers |
102
+ | 96 | `web/marketing/feature-centered` | Feature — Centered | marketing | 1200×450 | feature, centered, showcase, marketing |
103
+ | 97 | `web/marketing/feature-grid-2col` | Feature Grid — 2 Column | marketing | 1200×500 | features, alternating, marketing |
104
+ | 98 | `web/marketing/feature-grid-3col` | Feature Grid — 3 Column | marketing | 1200×400 | features, grid, columns, marketing |
105
+ | 99 | `web/marketing/footer-complex` | Footer — Complex | marketing | 1200×350 | footer, newsletter, links, columns |
106
+ | 100 | `web/marketing/footer-simple` | Footer — Simple | marketing | 1200×180 | footer, links, copyright, navigation |
107
+ | 101 | `web/marketing/hero-centered` | Hero — Centered | marketing | 1200×550 | hero, centered, landing, marketing |
108
+ | 102 | `web/marketing/hero-split-left` | Hero — Split (Image Left) | marketing | 1200×500 | hero, split, image, landing |
109
+ | 103 | `web/marketing/hero-split-right` | Hero — Split (Image Right) | marketing | 1200×500 | hero, split, image, landing |
110
+ | 104 | `web/marketing/logo-cloud` | Logo Cloud | marketing | 1200×120 | logos, partners, trusted, brands |
111
+ | 105 | `web/marketing/newsletter-signup` | Newsletter Signup | marketing | 600×140 | newsletter, email, signup, subscribe |
112
+ | 106 | `web/marketing/pricing-3tier` | Pricing Table — 3 Tier | marketing | 1200×550 | pricing, plans, tier, marketing |
113
+ | 107 | `web/marketing/pricing-toggle` | Pricing Table — Toggle | marketing | 1200×550 | pricing, toggle, monthly, yearly |
114
+ | 108 | `web/marketing/social-proof-bar` | Social Proof Bar | marketing | 1200×60 | social proof, trust, banner |
115
+ | 109 | `web/marketing/stats-row` | Stats Row | marketing | 1200×120 | stats, numbers, metrics, social proof |
116
+ | 110 | `web/marketing/team-grid` | Team Grid | marketing | 1200×400 | team, grid, people, about |
117
+ | 111 | `web/marketing/testimonial-carousel` | Testimonial — Carousel | marketing | 1200×300 | testimonial, carousel, review, social proof |
118
+ | 112 | `web/marketing/testimonial-grid` | Testimonial — Grid | marketing | 1200×450 | testimonial, grid, reviews, social proof |
119
+ | 113 | `web/media/blog-post-card` | Blog Post Card | media | 360×340 | blog, post, card, article, content |
120
+ | 114 | `web/media/comment-single` | Comment — Single | media | 500×120 | comment, single, review, feedback |
121
+ | 115 | `web/media/image-gallery-grid` | Image Gallery — Grid | media | 500×340 | gallery, grid, images, photos |
122
+ | 116 | `web/media/rich-text-block` | Rich Text Block | media | 600×350 | rich text, content, article, typography |
123
+ | 117 | `web/media/testimonial-quote` | Testimonial — Quote | media | 400×200 | testimonial, quote, review, social proof |
124
+ | 118 | `web/media/video-player` | Video Player | media | 500×300 | video, player, media, embed |
125
+ | 119 | `web/menus/dropdown-menu` | Dropdown Menu | menus | 220×240 | menu, dropdown, popup, context, actions |
126
+ | 120 | `web/metrics/kpi-row` | KPI Row — 4 Metric Cards | metrics | 1200×130 | kpi, metrics, dashboard, stats, saas |
127
+ | 121 | `web/modals/modal-basic` | Modal — Basic Confirm | modals | 480×240 | modal, dialog, confirm, overlay |
128
+ | 122 | `web/modals/modal-form` | Modal — with Form | modals | 480×380 | modal, form, dialog, create, edit |
129
+ | 123 | `web/navbars/breadcrumb` | Breadcrumb Navigation | navbars | 400×32 | breadcrumb, navigation, path, hierarchy |
130
+ | 124 | `web/navbars/footer` | Footer — Multi Column | navbars | 1440×320 | footer, navigation, links, responsive |
131
+ | 125 | `web/navbars/sidebar-dark` | Sidebar Navigation — Dark | navbars | 240×900 | sidebar, navigation, dark, vertical, menu |
132
+ | 126 | `web/navbars/sidebar` | Sidebar Navigation | navbars | 240×900 | sidebar, navigation, vertical, menu, responsive |
133
+ | 127 | `web/navbars/topnav-search` | Top Navigation — with Search | navbars | 1440×64 | navbar, top, search, header, responsive |
134
+ | 128 | `web/navbars/topnav` | Top Navigation Bar | navbars | 1440×64 | navbar, top, header, navigation, responsive |
135
+ | 129 | `web/navigation/mega-menu` | Mega Menu | navigation | 800×350 | mega menu, navigation, dropdown, categories |
136
+ | 130 | `web/navigation/pagination` | Pagination | navigation | 400×40 | pagination, pages, navigation |
137
+ | 131 | `web/navigation/sidebar-collapsed` | Sidebar — Collapsed | navigation | 64×600 | sidebar, navigation, collapsed, icon |
138
+ | 132 | `web/navigation/sidebar-expanded` | Sidebar — Expanded | navigation | 240×600 | sidebar, navigation, expanded, menu |
139
+ | 133 | `web/navigation/stepper-horizontal` | Stepper — Horizontal | navigation | 500×60 | stepper, steps, progress, wizard |
140
+ | 134 | `web/patterns/accordion` | Accordion / FAQ | patterns | 640×240 | accordion, faq, expandable, collapse, section |
141
+ | 135 | `web/patterns/activity-feed` | Activity Feed — Timeline | patterns | 400×300 | activity, feed, timeline, log, history |
142
+ | 136 | `web/patterns/auth-login` | Login Form — with Social | patterns | 400×560 | login, auth, form, social, sign-in |
143
+ | 137 | `web/patterns/avatar-group` | Avatar Group — Stacked | patterns | 160×36 | avatar, group, stack, team, users, web |
144
+ | 138 | `web/patterns/calendar-month` | Calendar — Month View | patterns | 640×480 | calendar, month, grid, date, schedule, events, web |
145
+ | 139 | `web/patterns/category-pills` | Category Pills — Horizontal Scroll | patterns | 600×40 | category, pills, filter, tags, horizontal, scroll |
146
+ | 140 | `web/patterns/chat-web` | Chat Window — Web | patterns | 400×480 | chat, message, conversation, web, inbox |
147
+ | 141 | `web/patterns/code-editor` | Code Editor — Web (with line numbers) | patterns | 640×320 | code, editor, syntax, highlight, developer, ide |
148
+ | 142 | `web/patterns/comparison-table` | Comparison Table — Feature Matrix | patterns | 800×300 | comparison, table, features, matrix, pricing, plans |
149
+ | 143 | `web/patterns/cookie-banner` | Cookie Banner — Bottom | patterns | 1440×72 | cookie, banner, consent, gdpr, privacy |
150
+ | 144 | `web/patterns/error-page` | Error Page — 404 | patterns | 600×400 | error, 404, not-found, page, empty |
151
+ | 145 | `web/patterns/file-list` | File List — with Actions | patterns | 600×240 | file, list, document, download, manager |
152
+ | 146 | `web/patterns/filter-toolbar` | Filter Toolbar — Search + Filters + Actions | patterns | 800×48 | filter, toolbar, search, actions, admin, table |
153
+ | 147 | `web/patterns/kanban-column` | Kanban Column — with Task Cards | patterns | 300×480 | kanban, column, board, tasks, project, drag |
154
+ | 148 | `web/patterns/notification-list` | Notification List | patterns | 380×320 | notification, list, dropdown, inbox, alerts |
155
+ | 149 | `web/patterns/order-tracker` | Order Status Tracker | patterns | 640×80 | order, status, tracker, ecommerce, shipping, steps |
156
+ | 150 | `web/patterns/pagination` | Pagination | patterns | 400×40 | pagination, page, navigation, controls |
157
+ | 151 | `web/patterns/product-card-web` | Product Card — E-Commerce Web | patterns | 300×380 | product, card, ecommerce, shop, price, web |
158
+ | 152 | `web/patterns/settings-form` | Settings Form — Profile | patterns | 640×400 | settings, form, profile, account, admin |
159
+ | 153 | `web/patterns/stepper` | Stepper — Horizontal Steps | patterns | 600×64 | stepper, wizard, steps, progress, form |
160
+ | 154 | `web/patterns/user-table-row` | User Table Row | patterns | 800×56 | user, table, row, admin, team, role |
161
+ | 155 | `web/patterns/video-player` | Video Player — Web | patterns | 800×480 | video, player, controls, web, media |
162
+ | 156 | `web/presentation/slide-content` | Presentation Slide — Content (2 Column) | presentation | 1920×1080 | presentation, slide, content, two-column, 16:9 |
163
+ | 157 | `web/presentation/slide-title` | Presentation Slide — Title | presentation | 1920×1080 | presentation, slide, title, deck, 16:9 |
164
+ | 158 | `web/pricing/pricing-table` | Pricing — Feature Comparison Table | pricing | 1440×480 | pricing, table, comparison, features, plans, starter, pro, enterprise |
165
+ | 159 | `web/pricing/pricing-toggle` | Pricing — Toggle Monthly/Annual | pricing | 1440×640 | pricing, toggle, monthly, annual, cards, plans, subscription, billing |
166
+ | 160 | `web/print/business-card` | Business Card — Modern | print | 1050×600 | print, business-card, card, contact, brand |
167
+ | 161 | `web/products/product-card-horizontal` | Product Card — Horizontal (List View) | products | 640×140 | product, card, horizontal, list, ecommerce |
168
+ | 162 | `web/products/product-detail` | Product Detail — Full Page | products | 1200×600 | product, detail, ecommerce, shop, page |
169
+ | 163 | `web/products/product-grid` | Product Grid — 4 Column | products | 1200×480 | product, grid, ecommerce, shop, catalog |
170
+ | 164 | `web/products/review-section` | Product Reviews Section | products | 640×400 | reviews, rating, product, ecommerce, feedback |
171
+ | 165 | `web/promotions/coupon-card` | Coupon Card — Discount Code | promotions | 360×120 | coupon, discount, code, promo, ecommerce |
172
+ | 166 | `web/promotions/promo-banner` | Promo Banner — Sale | promotions | 1200×200 | promo, banner, sale, discount, ecommerce |
173
+ | 167 | `web/real-estate/agent-contact` | Agent Contact Card | real-estate | 360×140 | agent, contact, realtor, real estate |
174
+ | 168 | `web/real-estate/listing-detail-hero` | Listing Detail Hero | real-estate | 800×400 | listing, detail, property, real estate |
175
+ | 169 | `web/real-estate/price-range-slider` | Price Range Slider | real-estate | 320×64 | price, range, filter, real estate |
176
+ | 170 | `web/real-estate/property-card` | Property Card | real-estate | 360×340 | property, listing, house, real estate |
177
+ | 171 | `web/real-estate/property-map-pin` | Property Map Pin | real-estate | 200×72 | map, pin, price, real estate |
178
+ | 172 | `web/real-estate/virtual-tour-button` | Virtual Tour Button | real-estate | 240×56 | virtual tour, 3d, walkthrough, real estate |
179
+ | 173 | `web/saas/api-key-row` | API Key Row | saas | 700×64 | api, key, token, developer, saas |
180
+ | 174 | `web/saas/audit-log-row` | Audit Log Row | saas | 700×48 | audit, log, activity, admin, saas |
181
+ | 175 | `web/saas/billing-plan` | Billing Plan Card | saas | 360×380 | billing, plan, subscription, saas |
182
+ | 176 | `web/saas/kpi-row` | KPI Card Row | saas | 1200×100 | kpi, metrics, dashboard, saas, admin |
183
+ | 177 | `web/saas/team-member-row` | Team Member Row | saas | 700×64 | team, member, user, admin, saas |
184
+ | 178 | `web/saas/webhook-config` | Webhook Config | saas | 700×200 | webhook, config, api, developer, saas |
185
+ | 179 | `web/screenshots/app-screenshot` | Screenshot — Browser Frame | screenshots | 1440×680 | screenshot, browser, mockup, frame, app, preview, landing |
186
+ | 180 | `web/screenshots/screenshot-gallery` | Screenshot — Gallery 3-Up | screenshots | 1440×520 | screenshot, gallery, mockup, three-up, app, preview, landing |
187
+ | 181 | `web/social/comment-thread` | Comment Thread | social | 500×300 | comment, thread, reply, discussion, social |
188
+ | 182 | `web/social-media/instagram-post` | Instagram Post Template — Square | social-media | 1080×1080 | instagram, post, social-media, square, template |
189
+ | 183 | `web/social-proof/logo-cloud` | Logo Cloud — Trusted By | social-proof | 1440×160 | logo, cloud, trusted, brands, social-proof |
190
+ | 184 | `web/social-proof/testimonial-carousel` | Testimonial Carousel — 3 Cards | social-proof | 1440×400 | testimonial, carousel, review, social-proof, quotes |
191
+ | 185 | `web/surfaces/slide-over` | Slide Over Panel — Right Side | surfaces | 400×640 | slide-over, panel, drawer, side, detail |
192
+ | 186 | `web/tables/data-table` | Data Table — with Status Badges | tables | 800×320 | table, data, grid, rows, status, admin, dashboard |
193
+ | 187 | `web/tables/table-simple` | Table — Simple Minimal | tables | 640×240 | table, simple, minimal, data, list |
194
+ | 188 | `web/tabs/tabs-pills` | Tabs — Pills | tabs | 400×40 | tabs, pills, segment, toggle |
195
+ | 189 | `web/tabs/tabs-underline` | Tabs — Underline | tabs | 600×44 | tabs, navigation, underline, horizontal |
196
+ | 190 | `web/toggles/toggle-dark-mode` | Toggle — Dark Mode | toggles | 200×44 | toggle, dark mode, theme, sun, moon, pill |
197
+ | 191 | `web/toggles/toggle-group` | Toggle Group — Notification Settings | toggles | 440×220 | toggle, group, settings, notifications, list |
198
+ | 192 | `web/toggles/toggle-switch` | Toggle Switch — Settings Row | toggles | 360×64 | toggle, switch, setting, row, label, description |
199
+ | 193 | `web/widgets/api-key-row` | API Key Row | widgets | 640×56 | api, key, token, developer, saas |
200
+ | 194 | `web/widgets/billing-card` | Billing Card — Current Plan | widgets | 400×160 | billing, plan, subscription, payment, saas |
201
+ | 195 | `web/widgets/changelog-item` | Changelog Item — Version Update | widgets | 640×120 | changelog, update, version, release, saas |
202
+ | 196 | `web/widgets/integration-card` | Integration Card — Connected App | widgets | 320×120 | integration, app, connected, saas, api |
203
+ | 197 | `web/widgets/onboarding-checklist` | Onboarding Checklist | widgets | 360×280 | onboarding, checklist, getting-started, progress, saas |
204
+ | 198 | `web/widgets/pricing-toggle` | Pricing Toggle — Monthly / Yearly | widgets | 280×40 | pricing, toggle, monthly, yearly, billing, saas |
205
+ | 199 | `web/widgets/team-member-row` | Team Member Row — with Role | widgets | 640×56 | team, member, user, role, saas, admin |
206
+ | 200 | `web/widgets/usage-meter` | Usage Meter — Storage / API | widgets | 360×100 | usage, meter, storage, api, quota, saas |
@@ -0,0 +1,110 @@
1
+ # Web Tailwind UI Kit
2
+
3
+ **126 components** across 34 categories. Responsive desktop/web design system.
4
+
5
+ All components use `var(--kit-*)` tokens. Dark mode via token overrides — no separate component files.
6
+
7
+ ---
8
+
9
+ ## Design Principles
10
+
11
+ - Clean, minimal, lots of white space
12
+ - 8px grid, Inter font (system-ui fallback)
13
+ - Responsive: all components use `width:100%`, flex-wrap, min-width for reflow
14
+ - Rounded corners: 6-8px buttons, 12-16px cards, 24px modals
15
+ - Subtle shadows, 1px borders for structure
16
+ - Dark mode via token overrides (no separate components)
17
+
18
+ ## Responsive Patterns
19
+
20
+ - All components: `width:100%` — parent controls size
21
+ - Grid: `display:flex;flex-wrap:wrap;gap:16px` + `flex:1 1 280px;min-width:0`
22
+ - Sidebar: `width:240px` on desktop, collapses to icons or off-screen on mobile
23
+ - Tables: horizontal scroll wrapper on mobile
24
+ - Typography: use relative sizes via tokens, not fixed px
25
+
26
+ ## Breakpoints (reference)
27
+
28
+ | Name | Width | Layout |
29
+ |------|-------|--------|
30
+ | Mobile | <768px | Single column, bottom nav |
31
+ | Tablet | 768-1024px | 2-col, collapsible sidebar |
32
+ | Desktop | 1024-1440px | Sidebar + content |
33
+ | Wide | >1440px | Centered max-width container |
34
+
35
+ ---
36
+
37
+ ## Component Inventory (126 total)
38
+
39
+ | Category | Count | Components |
40
+ |----------|-------|------------|
41
+ | navbars | 6 | topnav, topnav-search, sidebar, sidebar-dark, breadcrumb, footer |
42
+ | buttons | 6 | primary, secondary, danger, ghost, icon, group |
43
+ | cards | 6 | basic, feature, image, pricing, stat, testimonial |
44
+ | inputs | 10 | text-input, textarea, select, search-command, date-input, file-upload, tag-input, checkbox, radio-group, toggle |
45
+ | layout | 6 | hero-centered, hero-split, features-grid, pricing-section, stats-row, cta-banner |
46
+ | tables | 2 | table-simple, data-table |
47
+ | modals | 2 | modal-basic, modal-form |
48
+ | feedback | 8 | alert-banner, empty-state, loading-spinner, progress-bar, skeleton, toast-success, toast-error, tooltip |
49
+ | tabs | 2 | tabs-pills, tabs-underline |
50
+ | toggles | 3 | toggle-switch, toggle-group, toggle-dark-mode |
51
+ | charts | 3 | chart-area, chart-bar, chart-donut |
52
+ | badges | 1 | badge-set |
53
+ | menus | 1 | dropdown-menu |
54
+ | dividers | 1 | divider-text |
55
+ | surfaces | 1 | slide-over |
56
+ | data-display | 2 | grid-view, list-view |
57
+ | heroes | 3 | hero-gradient, hero-image-bg, hero-video |
58
+ | cta | 3 | cta-centered, cta-with-image, cta-newsletter |
59
+ | features | 3 | features-icon-list, features-alternating, features-bento |
60
+ | pricing | 2 | pricing-table, pricing-toggle |
61
+ | social-proof | 2 | logo-cloud, testimonial-carousel |
62
+ | logos | 2 | logo-grid, logo-ticker |
63
+ | products | 4 | product-card-horizontal, product-detail, product-grid, review-section |
64
+ | cart | 3 | cart-page, checkout-form, order-confirmation |
65
+ | promotions | 2 | coupon-card, promo-banner |
66
+ | account | 3 | profile-card, subscription-card, payment-method |
67
+ | widgets | 8 | api-key-row, billing-card, changelog-item, integration-card, onboarding-checklist, pricing-toggle, team-member-row, usage-meter |
68
+ | content | 2 | author-card, blog-card-horizontal |
69
+ | metrics | 1 | kpi-row |
70
+ | screenshots | 2 | app-screenshot, screenshot-gallery |
71
+ | presentation | 2 | slide-title, slide-content |
72
+ | print | 1 | business-card |
73
+ | social-media | 1 | instagram-post |
74
+ | patterns | 22 | accordion, activity-feed, auth-login, avatar-group, calendar-month, category-pills, chat-web, code-editor, comparison-table, cookie-banner, error-page, file-list, filter-toolbar, kanban-column, notification-list, order-tracker, pagination, product-card-web, settings-form, stepper, user-table-row, video-player |
75
+
76
+ ---
77
+
78
+ ## Category Descriptions
79
+
80
+ | Category | Purpose |
81
+ |----------|---------|
82
+ | navbars | Top navigation, sidebar, breadcrumb, footer |
83
+ | buttons | Action buttons (primary, secondary, danger, ghost, icon, group) |
84
+ | cards | Content containers (basic, feature, pricing, stat, testimonial) |
85
+ | inputs | Form controls (text, select, date, file, tags, checkbox, radio) |
86
+ | layout | Full-width page sections (hero, features, pricing, stats, CTA) |
87
+ | tables | Data tables (simple, sortable/filterable) |
88
+ | modals | Overlay dialogs (basic, form) |
89
+ | feedback | Status indicators (alerts, toasts, loading, skeleton, progress) |
90
+ | tabs | Tab navigation (pills, underline) |
91
+ | toggles | Toggle controls (switch, group, dark mode) |
92
+ | charts | Data visualization (area, bar, donut) |
93
+ | heroes | Landing page hero sections (gradient, image, video) |
94
+ | cta | Call-to-action blocks (centered, split, newsletter) |
95
+ | features | Feature showcase sections (icon list, alternating, bento grid) |
96
+ | pricing | Pricing displays (comparison table, toggle monthly/annual) |
97
+ | social-proof | Trust indicators (logo cloud, testimonial carousel) |
98
+ | logos | Logo displays (grid, ticker) |
99
+ | products | E-commerce product displays (cards, detail, grid, reviews) |
100
+ | cart | Shopping cart flow (cart page, checkout, order confirmation) |
101
+ | promotions | Marketing elements (coupons, banners) |
102
+ | account | User account pages (profile, subscription, payment) |
103
+ | widgets | SaaS dashboard widgets (API keys, billing, changelog, integrations) |
104
+ | content | Blog/content elements (author card, blog card) |
105
+ | metrics | KPI and metric displays |
106
+ | screenshots | App screenshot showcases (browser frame, gallery) |
107
+ | presentation | Slide deck elements (title, content) |
108
+ | print | Print-ready elements (business card) |
109
+ | social-media | Social media components (Instagram post) |
110
+ | patterns | Complex UI patterns (auth, chat, kanban, calendar, settings, etc.) |
@@ -0,0 +1,13 @@
1
+ <!--
2
+ @name: Payment Method — Card
3
+ @kit: web
4
+ @width: 400
5
+ @height: 72
6
+ @tags: payment, card, billing, account, method
7
+ -->
8
+ <div data-component="Payment Method — Card" style="display:flex;align-items:center;width:100%;padding:14px 16px;border:1px solid var(--kit-border, #E2E8F0);border-radius:8px;gap:14px;font-family:var(--kit-font, Inter, system-ui, sans-serif);box-sizing:border-box">
9
+ <div style="width:40px;height:28px;border-radius:4px;background:linear-gradient(135deg, #1E40AF, #3B82F6);display:flex;align-items:center;justify-content:center;flex-shrink:0"><span style="color:#fff;font-size:10px;font-weight:700">VISA</span></div>
10
+ <div style="flex:1"><div style="font-size:14px;font-weight:500;color:var(--kit-text, #0F172A)">Visa ending in 4291</div><div style="font-size:12px;color:var(--kit-text-3, #94A3B8)">Expires 12/28</div></div>
11
+ <span style="background:var(--kit-surface-2, #F1F5F9);color:var(--kit-text-2, #475569);padding:2px 8px;border-radius:4px;font-size:11px;font-weight:500">Default</span>
12
+ <div style="cursor:pointer;color:var(--kit-text-3, #94A3B8)"><svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor"><circle cx="12" cy="5" r="1.5"/><circle cx="12" cy="12" r="1.5"/><circle cx="12" cy="19" r="1.5"/></svg></div>
13
+ </div>
@@ -0,0 +1,18 @@
1
+ <!--
2
+ @name: Profile Card — User Account
3
+ @kit: web
4
+ @width: 360
5
+ @height: 180
6
+ @tags: profile, user, account, avatar, settings
7
+ -->
8
+ <div data-component="Profile Card — User Account" style="width:100%;background:var(--kit-bg, #FFFFFF);border:1px solid var(--kit-border, #E2E8F0);border-radius:12px;padding:24px;box-sizing:border-box;font-family:var(--kit-font, Inter, system-ui, sans-serif);display:flex;gap:16px;align-items:center">
9
+ <div style="width:64px;height:64px;border-radius:32px;background:var(--kit-primary, #6366F1);color:#fff;display:flex;align-items:center;justify-content:center;font-size:24px;font-weight:700;flex-shrink:0">JD</div>
10
+ <div style="flex:1;min-width:0">
11
+ <div style="font-size:18px;font-weight:600;color:var(--kit-text, #0F172A)">John Doe</div>
12
+ <div style="font-size:13px;color:var(--kit-text-2, #475569);margin-top:2px">john@example.com</div>
13
+ <div style="display:flex;gap:8px;margin-top:12px">
14
+ <div style="height:28px;padding:0 12px;background:var(--kit-primary, #6366F1);color:#fff;border-radius:6px;display:flex;align-items:center;font-size:12px;font-weight:500;cursor:pointer">Edit Profile</div>
15
+ <div style="height:28px;padding:0 12px;border:1px solid var(--kit-border, #E2E8F0);border-radius:6px;display:flex;align-items:center;font-size:12px;color:var(--kit-text-2, #475569);cursor:pointer">Settings</div>
16
+ </div>
17
+ </div>
18
+ </div>
@@ -0,0 +1,21 @@
1
+ <!--
2
+ @name: Subscription Card — Plan Details
3
+ @kit: web
4
+ @width: 400
5
+ @height: 200
6
+ @tags: subscription, plan, billing, account, pricing
7
+ -->
8
+ <div data-component="Subscription Card — Plan Details" style="width:100%;background:var(--kit-bg, #FFFFFF);border:1px solid var(--kit-border, #E2E8F0);border-radius:12px;padding:20px;box-sizing:border-box;font-family:var(--kit-font, Inter, system-ui, sans-serif)">
9
+ <div style="display:flex;justify-content:space-between;align-items:center;margin-bottom:16px">
10
+ <div style="font-size:16px;font-weight:600;color:var(--kit-text, #0F172A)">Subscription</div>
11
+ <span style="background:rgba(99,102,241,0.08);color:var(--kit-primary, #6366F1);padding:3px 10px;border-radius:12px;font-size:12px;font-weight:500">Pro</span>
12
+ </div>
13
+ <div style="display:flex;align-items:baseline;gap:4px;margin-bottom:4px"><span style="font-size:32px;font-weight:700;color:var(--kit-text, #0F172A)">$29</span><span style="font-size:14px;color:var(--kit-text-3, #94A3B8)">/month</span></div>
14
+ <div style="font-size:13px;color:var(--kit-text-2, #475569);margin-bottom:16px">Next billing: April 15, 2026</div>
15
+ <div style="display:flex;flex-direction:column;gap:8px;margin-bottom:16px">
16
+ <div style="display:flex;align-items:center;gap:6px;font-size:13px;color:var(--kit-text, #0F172A)"><svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="var(--kit-success, #22C55E)" stroke-width="2.5"><polyline points="20 6 9 17 4 12"/></svg>Unlimited projects</div>
17
+ <div style="display:flex;align-items:center;gap:6px;font-size:13px;color:var(--kit-text, #0F172A)"><svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="var(--kit-success, #22C55E)" stroke-width="2.5"><polyline points="20 6 9 17 4 12"/></svg>50GB storage (7.2GB used)</div>
18
+ <div style="display:flex;align-items:center;gap:6px;font-size:13px;color:var(--kit-text, #0F172A)"><svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="var(--kit-success, #22C55E)" stroke-width="2.5"><polyline points="20 6 9 17 4 12"/></svg>Priority support</div>
19
+ </div>
20
+ <div style="display:flex;gap:8px"><div style="height:32px;padding:0 14px;background:var(--kit-primary, #6366F1);color:#fff;border-radius:6px;display:flex;align-items:center;font-size:13px;font-weight:500;cursor:pointer">Upgrade to Enterprise</div><div style="height:32px;padding:0 14px;border:1px solid var(--kit-border, #E2E8F0);border-radius:6px;display:flex;align-items:center;font-size:13px;color:var(--kit-text-3, #94A3B8);cursor:pointer">Cancel</div></div>
21
+ </div>
@@ -0,0 +1,14 @@
1
+ <!--
2
+ @name: Badge Set — Status Variants
3
+ @kit: web
4
+ @width: 400
5
+ @height: 28
6
+ @tags: badge, status, tag, label, pill
7
+ -->
8
+ <div data-component="Badge Set — Status Variants" style="display:flex;gap:8px;flex-wrap:wrap;font-family:var(--kit-font, Inter, system-ui, sans-serif)">
9
+ <span style="display:inline-flex;align-items:center;height:24px;padding:0 10px;border-radius:12px;background:var(--kit-success-bg, #F0FDF4);color:var(--kit-success, #22C55E);font-size:12px;font-weight:var(--kit-font-medium, 500)">Active</span>
10
+ <span style="display:inline-flex;align-items:center;height:24px;padding:0 10px;border-radius:12px;background:var(--kit-warning-bg, #FFFBEB);color:var(--kit-warning, #F59E0B);font-size:12px;font-weight:var(--kit-font-medium, 500)">Pending</span>
11
+ <span style="display:inline-flex;align-items:center;height:24px;padding:0 10px;border-radius:12px;background:var(--kit-danger-bg, #FEF2F2);color:var(--kit-danger, #EF4444);font-size:12px;font-weight:var(--kit-font-medium, 500)">Error</span>
12
+ <span style="display:inline-flex;align-items:center;height:24px;padding:0 10px;border-radius:12px;background:var(--kit-info-bg, #EFF6FF);color:var(--kit-info, #3B82F6);font-size:12px;font-weight:var(--kit-font-medium, 500)">Info</span>
13
+ <span style="display:inline-flex;align-items:center;height:24px;padding:0 10px;border-radius:12px;background:var(--kit-surface-2, #F1F5F9);color:var(--kit-text-2, #475569);font-size:12px;font-weight:var(--kit-font-medium, 500)">Draft</span>
14
+ </div>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Danger Button
3
+ @kit: web
4
+ @width: 200
5
+ @height: 40
6
+ @tags: button, danger, destructive, delete, error
7
+ -->
8
+ <div data-component="Danger Button" style="display:inline-flex;width:100%;font-family:var(--kit-font, Inter, system-ui, sans-serif)">
9
+ <button style="display:inline-flex;align-items:center;justify-content:center;gap:8px;height:40px;padding:0 20px;background:var(--kit-danger, #EF4444);color:#FFFFFF;font-size:var(--kit-text-sm, 14px);font-weight:500;border:none;border-radius:var(--kit-radius, 8px);cursor:pointer;font-family:inherit;transition:background 0.15s ease;white-space:nowrap"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 6h18"/><path d="M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6"/><path d="M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2"/><line x1="10" y1="11" x2="10" y2="17"/><line x1="14" y1="11" x2="14" y2="17"/></svg>Delete Item</button>
10
+ </div>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Ghost Button
3
+ @kit: web
4
+ @width: 160
5
+ @height: 40
6
+ @tags: button, ghost, text, minimal, subtle
7
+ -->
8
+ <div data-component="Ghost Button" style="display:inline-flex;width:100%;font-family:var(--kit-font, Inter, system-ui, sans-serif)">
9
+ <button style="display:inline-flex;align-items:center;justify-content:center;height:40px;padding:0 16px;background:transparent;color:var(--kit-text-2, #475569);font-size:var(--kit-text-sm, 14px);font-weight:500;border:none;border-radius:var(--kit-radius, 8px);cursor:pointer;font-family:inherit;transition:background 0.15s ease,color 0.15s ease;white-space:nowrap">Cancel</button>
10
+ </div>
@@ -0,0 +1,12 @@
1
+ <!--
2
+ @name: Button Group — 3 Joined
3
+ @kit: web
4
+ @width: 300
5
+ @height: 36
6
+ @tags: button, group, segmented, toggle
7
+ -->
8
+ <div data-component="Button Group — 3 Joined" style="display:inline-flex;border:1px solid var(--kit-border, #E2E8F0);border-radius:var(--kit-radius, 8px);overflow:hidden;font-family:var(--kit-font, Inter, system-ui, sans-serif);font-size:var(--kit-text-sm, 13px)">
9
+ <div style="padding:8px 16px;background:var(--kit-primary, #6366F1);color:#FFFFFF;font-weight:var(--kit-font-medium, 500);cursor:pointer">Day</div>
10
+ <div style="padding:8px 16px;border-left:1px solid var(--kit-border, #E2E8F0);color:var(--kit-text, #0F172A);cursor:pointer">Week</div>
11
+ <div style="padding:8px 16px;border-left:1px solid var(--kit-border, #E2E8F0);color:var(--kit-text, #0F172A);cursor:pointer">Month</div>
12
+ </div>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Icon Button
3
+ @kit: web
4
+ @width: 36
5
+ @height: 36
6
+ @tags: button, icon, circle, round, compact
7
+ -->
8
+ <div data-component="Icon Button" style="display:inline-flex;font-family:var(--kit-font, Inter, system-ui, sans-serif)">
9
+ <button style="display:inline-flex;align-items:center;justify-content:center;width:36px;height:36px;background:var(--kit-surface, #F8FAFC);color:var(--kit-text-2, #475569);border:1px solid var(--kit-border, #E2E8F0);border-radius:50%;cursor:pointer;padding:0;transition:background 0.15s ease,color 0.15s ease"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 5v14"/><path d="M5 12h14"/></svg></button>
10
+ </div>
@@ -0,0 +1,11 @@
1
+ <!--
2
+ @name: Primary Button
3
+ @kit: web
4
+ @width: 320
5
+ @height: 40
6
+ @tags: button, primary, cta, action, icon
7
+ -->
8
+ <div data-component="Primary Button" style="display:flex;gap:12px;align-items:center;width:100%;font-family:var(--kit-font, Inter, system-ui, sans-serif)">
9
+ <button style="display:inline-flex;align-items:center;justify-content:center;height:40px;padding:0 20px;background:var(--kit-primary, #6366F1);color:#FFFFFF;font-size:var(--kit-text-sm, 14px);font-weight:500;border:none;border-radius:var(--kit-radius, 8px);cursor:pointer;font-family:inherit;transition:background 0.15s ease;white-space:nowrap">Get Started</button>
10
+ <button style="display:inline-flex;align-items:center;justify-content:center;gap:8px;height:40px;padding:0 20px;background:var(--kit-primary, #6366F1);color:#FFFFFF;font-size:var(--kit-text-sm, 14px);font-weight:500;border:none;border-radius:var(--kit-radius, 8px);cursor:pointer;font-family:inherit;transition:background 0.15s ease;white-space:nowrap"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14"/><path d="m12 5 7 7-7 7"/></svg>Continue</button>
11
+ </div>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Secondary Button
3
+ @kit: web
4
+ @width: 200
5
+ @height: 40
6
+ @tags: button, secondary, outline, border
7
+ -->
8
+ <div data-component="Secondary Button" style="display:inline-flex;width:100%;font-family:var(--kit-font, Inter, system-ui, sans-serif)">
9
+ <button style="display:inline-flex;align-items:center;justify-content:center;height:40px;padding:0 20px;background:transparent;color:var(--kit-text, #0F172A);font-size:var(--kit-text-sm, 14px);font-weight:500;border:1px solid var(--kit-border, #E2E8F0);border-radius:var(--kit-radius, 8px);cursor:pointer;font-family:inherit;transition:background 0.15s ease,border-color 0.15s ease;white-space:nowrap">Learn More</button>
10
+ </div>
@@ -0,0 +1,11 @@
1
+ <!--
2
+ @name: Card — Basic
3
+ @kit: web
4
+ @width: 360
5
+ @height: 160
6
+ @tags: card, basic, border, container
7
+ -->
8
+ <div data-component="Card — Basic" style="width:100%;background:var(--kit-bg, #FFFFFF);border:1px solid var(--kit-border, #E2E8F0);border-radius:var(--kit-radius-md, 12px);padding:24px;box-sizing:border-box;font-family:var(--kit-font, Inter, system-ui, sans-serif)">
9
+ <div style="font-size:var(--kit-text-lg, 18px);font-weight:var(--kit-font-semibold, 600);color:var(--kit-text, #0F172A);margin-bottom:8px">Card Title</div>
10
+ <div style="font-size:var(--kit-text-sm, 14px);color:var(--kit-text-2, #475569);line-height:1.5">Supporting text with a brief description. Cards contain content and actions about a single subject.</div>
11
+ </div>
@@ -0,0 +1,12 @@
1
+ <!--
2
+ @name: Card — Feature
3
+ @kit: web
4
+ @width: 320
5
+ @height: 200
6
+ @tags: card, feature, icon, grid, landing
7
+ -->
8
+ <div data-component="Card — Feature" style="width:100%;background:var(--kit-bg, #FFFFFF);border:1px solid var(--kit-border, #E2E8F0);border-radius:var(--kit-radius-md, 12px);padding:24px;box-sizing:border-box;font-family:var(--kit-font, Inter, system-ui, sans-serif)">
9
+ <div style="width:44px;height:44px;border-radius:var(--kit-radius, 8px);background:rgba(99,102,241,0.08);display:flex;align-items:center;justify-content:center;color:var(--kit-primary, #6366F1);margin-bottom:16px"><svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polygon points="13 2 3 14 12 14 11 22 21 10 12 10 13 2"/></svg></div>
10
+ <div style="font-size:var(--kit-text-lg, 18px);font-weight:var(--kit-font-semibold, 600);color:var(--kit-text, #0F172A);margin-bottom:8px">Lightning Fast</div>
11
+ <div style="font-size:var(--kit-text-sm, 14px);color:var(--kit-text-2, #475569);line-height:1.6">Built for speed with optimized rendering and instant preview. No more waiting around.</div>
12
+ </div>
@@ -0,0 +1,16 @@
1
+ <!--
2
+ @name: Card — with Image
3
+ @kit: web
4
+ @width: 360
5
+ @height: 340
6
+ @tags: card, image, article, blog, content
7
+ -->
8
+ <div data-component="Card — with Image" style="width:100%;background:var(--kit-bg, #FFFFFF);border:1px solid var(--kit-border, #E2E8F0);border-radius:var(--kit-radius-md, 12px);overflow:hidden;font-family:var(--kit-font, Inter, system-ui, sans-serif)">
9
+ <img src="https://placehold.jp/360x180.png" style="width:100%;height:180px;object-fit:cover;display:block" alt="Card image"/>
10
+ <div style="padding:20px">
11
+ <div style="font-size:var(--kit-text-xs, 12px);color:var(--kit-primary, #6366F1);font-weight:var(--kit-font-semibold, 600);text-transform:uppercase;letter-spacing:0.5px;margin-bottom:8px">Category</div>
12
+ <div style="font-size:var(--kit-text-lg, 18px);font-weight:var(--kit-font-semibold, 600);color:var(--kit-text, #0F172A);margin-bottom:8px">Article Title Here</div>
13
+ <div style="font-size:var(--kit-text-sm, 14px);color:var(--kit-text-2, #475569);line-height:1.5">Brief description or excerpt from the article content.</div>
14
+ <div style="display:flex;align-items:center;gap:8px;margin-top:16px;font-size:var(--kit-text-xs, 12px);color:var(--kit-text-3, #94A3B8)"><span>Mar 24, 2026</span><span>·</span><span>5 min read</span></div>
15
+ </div>
16
+ </div>
@@ -0,0 +1,21 @@
1
+ <!--
2
+ @name: Card — Pricing Tier
3
+ @kit: web
4
+ @width: 320
5
+ @height: 480
6
+ @tags: card, pricing, plan, subscription, features
7
+ -->
8
+ <div data-component="Card — Pricing Tier" style="width:100%;background:var(--kit-bg, #FFFFFF);border:2px solid var(--kit-primary, #6366F1);border-radius:var(--kit-radius-lg, 16px);padding:32px;box-sizing:border-box;font-family:var(--kit-font, Inter, system-ui, sans-serif);position:relative;overflow:hidden">
9
+ <div style="position:absolute;top:12px;right:12px;background:var(--kit-primary, #6366F1);color:#FFFFFF;font-size:11px;font-weight:600;padding:3px 10px;border-radius:var(--kit-radius-full, 9999px)">Popular</div>
10
+ <div style="font-size:var(--kit-text-sm, 14px);font-weight:var(--kit-font-semibold, 600);color:var(--kit-primary, #6366F1);margin-bottom:8px">Pro Plan</div>
11
+ <div style="display:flex;align-items:baseline;gap:4px;margin-bottom:4px"><span style="font-size:40px;font-weight:var(--kit-font-bold, 700);color:var(--kit-text, #0F172A)">$29</span><span style="font-size:var(--kit-text-sm, 14px);color:var(--kit-text-3, #94A3B8)">/month</span></div>
12
+ <div style="font-size:var(--kit-text-sm, 14px);color:var(--kit-text-2, #475569);margin-bottom:24px">Perfect for growing teams</div>
13
+ <div style="display:flex;flex-direction:column;gap:12px;margin-bottom:32px">
14
+ <div style="display:flex;align-items:center;gap:10px;font-size:var(--kit-text-sm, 14px);color:var(--kit-text, #0F172A)"><svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="var(--kit-success, #22C55E)" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>Unlimited projects</div>
15
+ <div style="display:flex;align-items:center;gap:10px;font-size:var(--kit-text-sm, 14px);color:var(--kit-text, #0F172A)"><svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="var(--kit-success, #22C55E)" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>50GB storage</div>
16
+ <div style="display:flex;align-items:center;gap:10px;font-size:var(--kit-text-sm, 14px);color:var(--kit-text, #0F172A)"><svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="var(--kit-success, #22C55E)" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>Priority support</div>
17
+ <div style="display:flex;align-items:center;gap:10px;font-size:var(--kit-text-sm, 14px);color:var(--kit-text, #0F172A)"><svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="var(--kit-success, #22C55E)" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>Advanced analytics</div>
18
+ <div style="display:flex;align-items:center;gap:10px;font-size:var(--kit-text-sm, 14px);color:var(--kit-text, #0F172A)"><svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="var(--kit-success, #22C55E)" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>Team collaboration</div>
19
+ </div>
20
+ <div style="display:flex;align-items:center;justify-content:center;height:44px;background:var(--kit-primary, #6366F1);color:#FFFFFF;border-radius:var(--kit-radius, 8px);font-size:var(--kit-text-sm, 14px);font-weight:var(--kit-font-semibold, 600);cursor:pointer">Get Started</div>
21
+ </div>
@@ -0,0 +1,15 @@
1
+ <!--
2
+ @name: Card — Stat / KPI
3
+ @kit: web
4
+ @width: 280
5
+ @height: 130
6
+ @tags: card, stat, kpi, metric, dashboard, number
7
+ -->
8
+ <div data-component="Card — Stat / KPI" style="width:100%;background:var(--kit-bg, #FFFFFF);border:1px solid var(--kit-border, #E2E8F0);border-radius:var(--kit-radius-md, 12px);padding:20px;box-sizing:border-box;font-family:var(--kit-font, Inter, system-ui, sans-serif)">
9
+ <div style="display:flex;align-items:center;justify-content:space-between;margin-bottom:12px">
10
+ <span style="font-size:var(--kit-text-sm, 14px);color:var(--kit-text-2, #475569);font-weight:var(--kit-font-medium, 500)">Total Revenue</span>
11
+ <div style="width:36px;height:36px;border-radius:var(--kit-radius, 8px);background:rgba(99,102,241,0.08);display:flex;align-items:center;justify-content:center;color:var(--kit-primary, #6366F1)"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="23 6 13.5 15.5 8.5 10.5 1 18"/><polyline points="17 6 23 6 23 12"/></svg></div>
12
+ </div>
13
+ <div style="font-size:28px;font-weight:var(--kit-font-bold, 700);color:var(--kit-text, #0F172A);margin-bottom:4px">$45,231</div>
14
+ <div style="display:flex;align-items:center;gap:4px;font-size:var(--kit-text-xs, 12px)"><span style="color:var(--kit-success, #22C55E);font-weight:var(--kit-font-medium, 500)">+20.1%</span><span style="color:var(--kit-text-3, #94A3B8)">vs last month</span></div>
15
+ </div>
@@ -0,0 +1,21 @@
1
+ <!--
2
+ @name: Card — Testimonial
3
+ @kit: web
4
+ @width: 360
5
+ @height: 240
6
+ @tags: card, testimonial, review, quote, social-proof
7
+ -->
8
+ <div data-component="Card — Testimonial" style="width:100%;background:var(--kit-bg, #FFFFFF);border:1px solid var(--kit-border, #E2E8F0);border-radius:var(--kit-radius-md, 12px);padding:24px;box-sizing:border-box;font-family:var(--kit-font, Inter, system-ui, sans-serif)">
9
+ <div style="display:flex;gap:2px;margin-bottom:16px">
10
+ <svg width="16" height="16" viewBox="0 0 24 24" fill="#FBBF24" stroke="#FBBF24" stroke-width="1"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg>
11
+ <svg width="16" height="16" viewBox="0 0 24 24" fill="#FBBF24" stroke="#FBBF24" stroke-width="1"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg>
12
+ <svg width="16" height="16" viewBox="0 0 24 24" fill="#FBBF24" stroke="#FBBF24" stroke-width="1"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg>
13
+ <svg width="16" height="16" viewBox="0 0 24 24" fill="#FBBF24" stroke="#FBBF24" stroke-width="1"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg>
14
+ <svg width="16" height="16" viewBox="0 0 24 24" fill="#FBBF24" stroke="#FBBF24" stroke-width="1"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg>
15
+ </div>
16
+ <div style="font-size:var(--kit-text-md, 16px);color:var(--kit-text, #0F172A);line-height:1.6;margin-bottom:20px;font-style:italic">"This tool has completely transformed our design workflow. We shipped 3x faster since adopting it."</div>
17
+ <div style="display:flex;align-items:center;gap:12px">
18
+ <div style="width:40px;height:40px;border-radius:20px;background:linear-gradient(135deg, #6366F1, #8B5CF6);display:flex;align-items:center;justify-content:center;color:#FFFFFF;font-size:16px;font-weight:600;flex-shrink:0">SC</div>
19
+ <div><div style="font-size:var(--kit-text-sm, 14px);font-weight:var(--kit-font-semibold, 600);color:var(--kit-text, #0F172A)">Sarah Chen</div><div style="font-size:var(--kit-text-xs, 12px);color:var(--kit-text-3, #94A3B8)">Head of Design, Acme Inc.</div></div>
20
+ </div>
21
+ </div>