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,75 @@
1
+ <!--
2
+ @name: Testimonial — Grid
3
+ @kit: web
4
+ @width: 1200
5
+ @height: 450
6
+ @tags: testimonial, grid, reviews, social proof
7
+ -->
8
+ <div data-component="Testimonial — Grid" style="width:100%;box-sizing:border-box;padding:64px 40px;background:var(--kit-bg,#FFFFFF);font-family:var(--kit-font,Inter,system-ui,sans-serif);">
9
+ <!-- Header -->
10
+ <div style="text-align:center;margin-bottom:48px;">
11
+ <h2 style="margin:0 0 12px 0;font-size:var(--kit-text-2xl,24px);font-weight:var(--kit-font-bold,700);color:var(--kit-text,#0F172A);letter-spacing:-0.02em;">What our customers say</h2>
12
+ <p style="margin:0;font-size:var(--kit-text-md,16px);color:var(--kit-text-2,#475569);">Trusted by thousands of teams around the world</p>
13
+ </div>
14
+
15
+ <!-- Testimonial Cards -->
16
+ <div style="display:flex;gap:24px;">
17
+ <!-- Card 1 -->
18
+ <div style="flex:1;padding:28px;border-radius:var(--kit-radius-md,12px);border:1px solid var(--kit-border,#E2E8F0);background:var(--kit-bg,#FFFFFF);display:flex;flex-direction:column;">
19
+ <!-- Stars -->
20
+ <div style="display:flex;gap:2px;margin-bottom:16px;">
21
+ <svg width="20" height="20" viewBox="0 0 24 24" fill="var(--kit-accent,#EC4899)" stroke="none"><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>
22
+ <svg width="20" height="20" viewBox="0 0 24 24" fill="var(--kit-accent,#EC4899)" stroke="none"><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>
23
+ <svg width="20" height="20" viewBox="0 0 24 24" fill="var(--kit-accent,#EC4899)" stroke="none"><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>
24
+ <svg width="20" height="20" viewBox="0 0 24 24" fill="var(--kit-accent,#EC4899)" stroke="none"><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>
25
+ <svg width="20" height="20" viewBox="0 0 24 24" fill="var(--kit-accent,#EC4899)" stroke="none"><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>
26
+ </div>
27
+ <p style="margin:0 0 20px 0;font-size:var(--kit-text-sm,14px);color:var(--kit-text,#0F172A);line-height:1.6;flex:1;">"The best tool we've added to our stack this year. Onboarding was seamless and our team was productive within a day. The analytics alone paid for the subscription."</p>
28
+ <div style="display:flex;align-items:center;gap:12px;">
29
+ <img src="https://placehold.jp/40x40" alt="Alex Rivera" style="width:40px;height:40px;border-radius:50%;" />
30
+ <div>
31
+ <div style="font-size:var(--kit-text-sm,14px);font-weight:var(--kit-font-semibold,600);color:var(--kit-text,#0F172A);">Alex Rivera</div>
32
+ <div style="font-size:var(--kit-text-xs,12px);color:var(--kit-text-2,#475569);">CTO, Startup Labs</div>
33
+ </div>
34
+ </div>
35
+ </div>
36
+
37
+ <!-- Card 2 -->
38
+ <div style="flex:1;padding:28px;border-radius:var(--kit-radius-md,12px);border:1px solid var(--kit-border,#E2E8F0);background:var(--kit-bg,#FFFFFF);display:flex;flex-direction:column;">
39
+ <div style="display:flex;gap:2px;margin-bottom:16px;">
40
+ <svg width="20" height="20" viewBox="0 0 24 24" fill="var(--kit-accent,#EC4899)" stroke="none"><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>
41
+ <svg width="20" height="20" viewBox="0 0 24 24" fill="var(--kit-accent,#EC4899)" stroke="none"><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>
42
+ <svg width="20" height="20" viewBox="0 0 24 24" fill="var(--kit-accent,#EC4899)" stroke="none"><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>
43
+ <svg width="20" height="20" viewBox="0 0 24 24" fill="var(--kit-accent,#EC4899)" stroke="none"><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>
44
+ <svg width="20" height="20" viewBox="0 0 24 24" fill="var(--kit-accent,#EC4899)" stroke="none"><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>
45
+ </div>
46
+ <p style="margin:0 0 20px 0;font-size:var(--kit-text-sm,14px);color:var(--kit-text,#0F172A);line-height:1.6;flex:1;">"We replaced three different tools with this one platform. The workflow automation saved us 20+ hours per week. Customer support is also incredibly responsive."</p>
47
+ <div style="display:flex;align-items:center;gap:12px;">
48
+ <img src="https://placehold.jp/40x40" alt="Maria Santos" style="width:40px;height:40px;border-radius:50%;" />
49
+ <div>
50
+ <div style="font-size:var(--kit-text-sm,14px);font-weight:var(--kit-font-semibold,600);color:var(--kit-text,#0F172A);">Maria Santos</div>
51
+ <div style="font-size:var(--kit-text-xs,12px);color:var(--kit-text-2,#475569);">Product Lead, DesignCo</div>
52
+ </div>
53
+ </div>
54
+ </div>
55
+
56
+ <!-- Card 3 -->
57
+ <div style="flex:1;padding:28px;border-radius:var(--kit-radius-md,12px);border:1px solid var(--kit-border,#E2E8F0);background:var(--kit-bg,#FFFFFF);display:flex;flex-direction:column;">
58
+ <div style="display:flex;gap:2px;margin-bottom:16px;">
59
+ <svg width="20" height="20" viewBox="0 0 24 24" fill="var(--kit-accent,#EC4899)" stroke="none"><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>
60
+ <svg width="20" height="20" viewBox="0 0 24 24" fill="var(--kit-accent,#EC4899)" stroke="none"><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>
61
+ <svg width="20" height="20" viewBox="0 0 24 24" fill="var(--kit-accent,#EC4899)" stroke="none"><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>
62
+ <svg width="20" height="20" viewBox="0 0 24 24" fill="var(--kit-accent,#EC4899)" stroke="none"><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>
63
+ <svg width="20" height="20" viewBox="0 0 24 24" fill="var(--kit-accent,#EC4899)" stroke="none"><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>
64
+ </div>
65
+ <p style="margin:0 0 20px 0;font-size:var(--kit-text-sm,14px);color:var(--kit-text,#0F172A);line-height:1.6;flex:1;">"Finally, a platform that scales with our needs. We started with 5 users and now have 200+. The enterprise features like SSO and audit logs are top-notch."</p>
66
+ <div style="display:flex;align-items:center;gap:12px;">
67
+ <img src="https://placehold.jp/40x40" alt="James Kim" style="width:40px;height:40px;border-radius:50%;" />
68
+ <div>
69
+ <div style="font-size:var(--kit-text-sm,14px);font-weight:var(--kit-font-semibold,600);color:var(--kit-text,#0F172A);">James Kim</div>
70
+ <div style="font-size:var(--kit-text-xs,12px);color:var(--kit-text-2,#475569);">Director of Ops, ScaleUp Inc</div>
71
+ </div>
72
+ </div>
73
+ </div>
74
+ </div>
75
+ </div>
@@ -0,0 +1,24 @@
1
+ <!--
2
+ @name: Blog Post Card
3
+ @kit: web
4
+ @width: 360
5
+ @height: 340
6
+ @tags: blog, post, card, article, content
7
+ -->
8
+ <div data-component="Blog Post Card" style="width:100%;max-width:360px;box-sizing:border-box;font-family:var(--kit-font,Inter,system-ui,sans-serif);background:var(--kit-bg,#FFFFFF);border-radius:var(--kit-radius-md,12px);border:1px solid var(--kit-border,#E2E8F0);overflow:hidden;display:flex;flex-direction:column;">
9
+ <div style="width:100%;height:160px;overflow:hidden;">
10
+ <img src="https://placehold.jp/360x160" alt="Blog post cover" style="width:100%;height:100%;object-fit:cover;display:block;" />
11
+ </div>
12
+ <div style="padding:16px;display:flex;flex-direction:column;gap:10px;flex:1;">
13
+ <span style="display:inline-block;width:fit-content;padding:3px 10px;background:rgba(99,102,241,0.1);color:var(--kit-primary,#6366F1);font-size:var(--kit-text-xs,12px);font-weight:var(--kit-font-semibold,600);border-radius:var(--kit-radius-full,9999px);">Design</span>
14
+ <span style="font-size:var(--kit-text-lg,18px);font-weight:var(--kit-font-bold,700);color:var(--kit-text,#0F172A);line-height:1.3;">Building Scalable Design Systems for Modern Teams</span>
15
+ <span style="font-size:var(--kit-text-sm,14px);color:var(--kit-text-2,#475569);line-height:1.5;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;">Learn how to create a design system that scales with your organization and keeps your team aligned across products and platforms.</span>
16
+ <div style="display:flex;align-items:center;gap:10px;margin-top:auto;padding-top:4px;">
17
+ <div style="width:28px;height:28px;border-radius:var(--kit-radius-full,9999px);overflow:hidden;">
18
+ <img src="https://placehold.jp/28x28" alt="Sophie Lane" style="width:100%;height:100%;object-fit:cover;display:block;" />
19
+ </div>
20
+ <span style="font-size:var(--kit-text-sm,14px);font-weight:var(--kit-font-medium,500);color:var(--kit-text,#0F172A);">Sophie Lane</span>
21
+ <span style="font-size:var(--kit-text-xs,12px);color:var(--kit-text-3,#94A3B8);">Mar 22, 2026</span>
22
+ </div>
23
+ </div>
24
+ </div>
@@ -0,0 +1,26 @@
1
+ <!--
2
+ @name: Comment — Single
3
+ @kit: web
4
+ @width: 500
5
+ @height: 120
6
+ @tags: comment, single, review, feedback
7
+ -->
8
+ <div data-component="Comment — Single" style="width:100%;max-width:500px;box-sizing:border-box;font-family:var(--kit-font,Inter,system-ui,sans-serif);background:var(--kit-bg,#FFFFFF);padding:16px;display:flex;flex-direction:row;gap:12px;">
9
+ <div style="width:40px;min-width:40px;height:40px;border-radius:var(--kit-radius-full,9999px);overflow:hidden;flex-shrink:0;">
10
+ <img src="https://placehold.jp/40x40" alt="Michael Torres" style="width:100%;height:100%;object-fit:cover;display:block;" />
11
+ </div>
12
+ <div style="flex:1;display:flex;flex-direction:column;gap:8px;">
13
+ <div style="display:flex;align-items:center;gap:8px;">
14
+ <span style="font-size:var(--kit-text-sm,14px);font-weight:var(--kit-font-semibold,600);color:var(--kit-text,#0F172A);">Michael Torres</span>
15
+ <span style="font-size:var(--kit-text-xs,12px);color:var(--kit-text-3,#94A3B8);">5 minutes ago</span>
16
+ </div>
17
+ <p style="margin:0;font-size:var(--kit-text-sm,14px);color:var(--kit-text,#0F172A);line-height:1.6;">This is exactly what I was looking for! The step-by-step breakdown makes it so much easier to understand. Thanks for sharing this detailed guide.</p>
18
+ <div style="display:flex;align-items:center;gap:16px;">
19
+ <div style="display:flex;align-items:center;gap:5px;cursor:pointer;">
20
+ <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="var(--kit-text-3,#94A3B8)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20.84 4.61a5.5 5.5 0 00-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 00-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 000-7.78z"/></svg>
21
+ <span style="font-size:var(--kit-text-xs,12px);color:var(--kit-text-3,#94A3B8);font-weight:var(--kit-font-medium,500);">24</span>
22
+ </div>
23
+ <span style="font-size:var(--kit-text-xs,12px);color:var(--kit-primary,#6366F1);font-weight:var(--kit-font-medium,500);cursor:pointer;">Reply</span>
24
+ </div>
25
+ </div>
26
+ </div>
@@ -0,0 +1,18 @@
1
+ <!--
2
+ @name: Image Gallery — Grid
3
+ @kit: web
4
+ @width: 500
5
+ @height: 340
6
+ @tags: gallery, grid, images, photos
7
+ -->
8
+ <div data-component="Image Gallery — Grid" style="width:100%;max-width:500px;box-sizing:border-box;font-family:var(--kit-font,Inter,system-ui,sans-serif);display:grid;grid-template-columns:1fr 1fr;grid-template-rows:200px 132px;gap:8px;">
9
+ <div style="grid-column:1 / -1;border-radius:var(--kit-radius-md,12px);overflow:hidden;">
10
+ <img src="https://placehold.jp/500x200" alt="Gallery hero image" style="width:100%;height:100%;object-fit:cover;display:block;" />
11
+ </div>
12
+ <div style="border-radius:var(--kit-radius-md,12px);overflow:hidden;">
13
+ <img src="https://placehold.jp/246x132" alt="Gallery image 2" style="width:100%;height:100%;object-fit:cover;display:block;" />
14
+ </div>
15
+ <div style="border-radius:var(--kit-radius-md,12px);overflow:hidden;">
16
+ <img src="https://placehold.jp/246x132" alt="Gallery image 3" style="width:100%;height:100%;object-fit:cover;display:block;" />
17
+ </div>
18
+ </div>
@@ -0,0 +1,20 @@
1
+ <!--
2
+ @name: Rich Text Block
3
+ @kit: web
4
+ @width: 600
5
+ @height: 350
6
+ @tags: rich text, content, article, typography
7
+ -->
8
+ <div data-component="Rich Text Block" style="width:100%;max-width:600px;box-sizing:border-box;font-family:var(--kit-font,Inter,system-ui,sans-serif);background:var(--kit-bg,#FFFFFF);display:flex;flex-direction:column;gap:16px;">
9
+ <h2 style="margin:0;font-size:var(--kit-text-2xl,24px);font-weight:var(--kit-font-bold,700);color:var(--kit-text,#0F172A);line-height:1.3;">The Future of Responsive Design</h2>
10
+ <p style="margin:0;font-size:var(--kit-text-md,16px);color:var(--kit-text-2,#475569);line-height:1.7;">Modern web design has evolved significantly over the past decade. With the rise of mobile-first approaches and container queries, designers now have more tools than ever to create fluid, adaptive experiences that work across every device and screen size.</p>
11
+ <div style="width:100%;height:150px;border-radius:var(--kit-radius-md,12px);overflow:hidden;">
12
+ <img src="https://placehold.jp/600x150" alt="Responsive design illustration" style="width:100%;height:100%;object-fit:cover;display:block;" />
13
+ </div>
14
+ <ul style="margin:0;padding:0 0 0 20px;display:flex;flex-direction:column;gap:8px;">
15
+ <li style="font-size:var(--kit-text-md,16px);color:var(--kit-text-2,#475569);line-height:1.6;"><span style="font-weight:var(--kit-font-semibold,600);color:var(--kit-text,#0F172A);">Container queries</span> allow components to respond to their parent container rather than the viewport</li>
16
+ <li style="font-size:var(--kit-text-md,16px);color:var(--kit-text-2,#475569);line-height:1.6;"><span style="font-weight:var(--kit-font-semibold,600);color:var(--kit-text,#0F172A);">CSS Grid and Subgrid</span> provide powerful layout tools for complex two-dimensional arrangements</li>
17
+ <li style="font-size:var(--kit-text-md,16px);color:var(--kit-text-2,#475569);line-height:1.6;"><span style="font-weight:var(--kit-font-semibold,600);color:var(--kit-text,#0F172A);">Logical properties</span> ensure designs adapt seamlessly to different writing modes and directions</li>
18
+ </ul>
19
+ <p style="margin:0;font-size:var(--kit-text-md,16px);color:var(--kit-text-2,#475569);line-height:1.7;">As we look ahead, the combination of AI-driven design systems and advanced CSS capabilities will continue to push the boundaries of what is possible on the web. The key is to embrace these tools while keeping user experience at the center of every decision.</p>
20
+ </div>
@@ -0,0 +1,20 @@
1
+ <!--
2
+ @name: Testimonial — Quote
3
+ @kit: web
4
+ @width: 400
5
+ @height: 200
6
+ @tags: testimonial, quote, review, social proof
7
+ -->
8
+ <div data-component="Testimonial — Quote" style="width:100%;max-width:400px;box-sizing:border-box;font-family:var(--kit-font,Inter,system-ui,sans-serif);background:var(--kit-surface,#F8FAFC);padding:24px;border-radius:var(--kit-radius-lg,16px);display:flex;flex-direction:column;gap:16px;">
9
+ <svg width="32" height="32" viewBox="0 0 24 24" fill="var(--kit-primary,#6366F1)" stroke="none" style="opacity:0.3;"><path d="M3 21c3 0 7-1 7-8V5c0-1.25-.756-2.017-2-2H4c-1.25 0-2 .75-2 1.972V11c0 1.25.75 2 2 2 1 0 1 0 1 1v1c0 1-1 2-2 2s-1 .008-1 1.031V20c0 1 0 1 1 1z"/><path d="M15 21c3 0 7-1 7-8V5c0-1.25-.757-2.017-2-2h-4c-1.25 0-2 .75-2 1.972V11c0 1.25.75 2 2 2h.75c0 2.25.25 4-2.75 4v3c0 1 0 1 1 1z"/></svg>
10
+ <p style="margin:0;font-size:var(--kit-text-md,16px);color:var(--kit-text,#0F172A);line-height:1.6;font-style:italic;">Pixeliro completely transformed our design workflow. What used to take our team weeks now happens in days. The collaboration features are top-notch and the export quality is phenomenal.</p>
11
+ <div style="display:flex;align-items:center;gap:12px;">
12
+ <div style="width:40px;height:40px;border-radius:var(--kit-radius-full,9999px);overflow:hidden;">
13
+ <img src="https://placehold.jp/40x40" alt="David Kim" style="width:100%;height:100%;object-fit:cover;display:block;" />
14
+ </div>
15
+ <div style="display:flex;flex-direction:column;gap:1px;">
16
+ <span style="font-size:var(--kit-text-sm,14px);font-weight:var(--kit-font-semibold,600);color:var(--kit-text,#0F172A);">David Kim</span>
17
+ <span style="font-size:var(--kit-text-xs,12px);color:var(--kit-text-3,#94A3B8);">Head of Design, TechCorp</span>
18
+ </div>
19
+ </div>
20
+ </div>
@@ -0,0 +1,44 @@
1
+ <!--
2
+ @name: Video Player
3
+ @kit: web
4
+ @width: 500
5
+ @height: 300
6
+ @tags: video, player, media, embed
7
+ -->
8
+ <div data-component="Video Player" style="width:100%;max-width:500px;box-sizing:border-box;font-family:var(--kit-font,Inter,system-ui,sans-serif);position:relative;background:#0F172A;border-radius:var(--kit-radius-md,12px);overflow:hidden;height:300px;display:flex;flex-direction:column;">
9
+ <!-- Video area -->
10
+ <div style="flex:1;display:flex;align-items:center;justify-content:center;position:relative;">
11
+ <img src="https://placehold.jp/500x260" alt="Video thumbnail" style="width:100%;height:100%;object-fit:cover;position:absolute;top:0;left:0;opacity:0.6;" />
12
+ <!-- Play button -->
13
+ <button style="width:56px;height:56px;border-radius:var(--kit-radius-full,9999px);background:rgba(255,255,255,0.95);border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;z-index:1;box-shadow:0 4px 12px rgba(0,0,0,0.3);">
14
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="#0F172A" stroke="none"><polygon points="6 3 20 12 6 21 6 3"/></svg>
15
+ </button>
16
+ </div>
17
+ <!-- Controls bar -->
18
+ <div style="padding:8px 12px;display:flex;flex-direction:column;gap:6px;background:linear-gradient(transparent, rgba(0,0,0,0.8));">
19
+ <!-- Progress bar -->
20
+ <div style="width:100%;height:4px;background:rgba(255,255,255,0.2);border-radius:var(--kit-radius-full,9999px);cursor:pointer;">
21
+ <div style="width:27%;height:100%;background:var(--kit-primary,#6366F1);border-radius:var(--kit-radius-full,9999px);position:relative;">
22
+ <div style="position:absolute;right:-4px;top:50%;transform:translateY(-50%);width:10px;height:10px;border-radius:var(--kit-radius-full,9999px);background:var(--kit-bg,#FFFFFF);"></div>
23
+ </div>
24
+ </div>
25
+ <div style="display:flex;align-items:center;justify-content:space-between;">
26
+ <div style="display:flex;align-items:center;gap:12px;">
27
+ <button style="border:none;background:none;cursor:pointer;padding:0;display:flex;align-items:center;">
28
+ <svg width="20" height="20" viewBox="0 0 24 24" fill="white" stroke="none"><polygon points="6 3 20 12 6 21 6 3"/></svg>
29
+ </button>
30
+ <span style="font-size:var(--kit-text-xs,12px);color:rgba(255,255,255,0.8);font-variant-numeric:tabular-nums;">2:45 / 10:30</span>
31
+ </div>
32
+ <div style="display:flex;align-items:center;gap:12px;">
33
+ <!-- Volume -->
34
+ <button style="border:none;background:none;cursor:pointer;padding:0;display:flex;align-items:center;">
35
+ <svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polygon points="11 5 6 9 2 9 2 15 6 15 11 19 11 5"/><path d="M19.07 4.93a10 10 0 010 14.14"/><path d="M15.54 8.46a5 5 0 010 7.07"/></svg>
36
+ </button>
37
+ <!-- Fullscreen -->
38
+ <button style="border:none;background:none;cursor:pointer;padding:0;display:flex;align-items:center;">
39
+ <svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="15 3 21 3 21 9"/><polyline points="9 21 3 21 3 15"/><line x1="21" y1="3" x2="14" y2="10"/><line x1="3" y1="21" x2="10" y2="14"/></svg>
40
+ </button>
41
+ </div>
42
+ </div>
43
+ </div>
44
+ </div>
@@ -0,0 +1,14 @@
1
+ <!--
2
+ @name: Dropdown Menu
3
+ @kit: web
4
+ @width: 220
5
+ @height: 240
6
+ @tags: menu, dropdown, popup, context, actions
7
+ -->
8
+ <div data-component="Dropdown Menu" style="width:220px;background:var(--kit-bg, #FFFFFF);border:1px solid var(--kit-border, #E2E8F0);border-radius:var(--kit-radius, 8px);box-shadow:0 4px 16px rgba(0,0,0,0.08);padding:4px;font-family:var(--kit-font, Inter, system-ui, sans-serif)">
9
+ <div style="display:flex;align-items:center;gap:10px;padding:8px 12px;border-radius:6px;cursor:pointer;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-text-2, #475569)" stroke-width="2"><path d="M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"/><path d="M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z"/></svg>Edit</div>
10
+ <div style="display:flex;align-items:center;gap:10px;padding:8px 12px;border-radius:6px;cursor:pointer;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-text-2, #475569)" stroke-width="2"><rect x="9" y="9" width="13" height="13" rx="2"/><path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"/></svg>Duplicate</div>
11
+ <div style="display:flex;align-items:center;gap:10px;padding:8px 12px;border-radius:6px;cursor:pointer;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-text-2, #475569)" stroke-width="2"><circle cx="18" cy="5" r="3"/><circle cx="6" cy="12" r="3"/><circle cx="18" cy="19" r="3"/><line x1="8.59" y1="13.51" x2="15.42" y2="17.49"/><line x1="15.41" y1="6.51" x2="8.59" y2="10.49"/></svg>Share</div>
12
+ <div style="height:1px;background:var(--kit-border, #E2E8F0);margin:4px 8px"></div>
13
+ <div style="display:flex;align-items:center;gap:10px;padding:8px 12px;border-radius:6px;cursor:pointer;font-size:var(--kit-text-sm, 14px);color:var(--kit-danger, #EF4444)"><svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="3 6 5 6 21 6"/><path d="M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"/></svg>Delete</div>
14
+ </div>
@@ -0,0 +1,13 @@
1
+ <!--
2
+ @name: KPI Row — 4 Metric Cards
3
+ @kit: web
4
+ @width: 1200
5
+ @height: 130
6
+ @tags: kpi, metrics, dashboard, stats, saas
7
+ -->
8
+ <div data-component="KPI Row — 4 Metric Cards" style="display:flex;gap:16px;flex-wrap:wrap;width:100%;font-family:var(--kit-font, Inter, system-ui, sans-serif)">
9
+ <div style="flex:1;min-width:200px;background:var(--kit-bg, #FFFFFF);border:1px solid var(--kit-border, #E2E8F0);border-radius:12px;padding:20px"><div style="display:flex;justify-content:space-between;margin-bottom:12px"><span style="font-size:13px;color:var(--kit-text-2, #475569)">Total Revenue</span><div style="width:36px;height:36px;border-radius:8px;background:rgba(99,102,241,0.08);display:flex;align-items:center;justify-content:center;color:var(--kit-primary, #6366F1)"><svg width="16" height="16" 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></div><div style="font-size:28px;font-weight:700;color:var(--kit-text, #0F172A);margin-bottom:4px">$45,231</div><div style="font-size:12px;color:var(--kit-success, #22C55E);font-weight:500">+20.1% vs last month</div></div>
10
+ <div style="flex:1;min-width:200px;background:var(--kit-bg, #FFFFFF);border:1px solid var(--kit-border, #E2E8F0);border-radius:12px;padding:20px"><div style="display:flex;justify-content:space-between;margin-bottom:12px"><span style="font-size:13px;color:var(--kit-text-2, #475569)">Active Users</span><div style="width:36px;height:36px;border-radius:8px;background:rgba(34,197,94,0.08);display:flex;align-items:center;justify-content:center;color:var(--kit-success, #22C55E)"><svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"/><circle cx="9" cy="7" r="4"/></svg></div></div><div style="font-size:28px;font-weight:700;color:var(--kit-text, #0F172A);margin-bottom:4px">2,350</div><div style="font-size:12px;color:var(--kit-success, #22C55E);font-weight:500">+12.5%</div></div>
11
+ <div style="flex:1;min-width:200px;background:var(--kit-bg, #FFFFFF);border:1px solid var(--kit-border, #E2E8F0);border-radius:12px;padding:20px"><div style="display:flex;justify-content:space-between;margin-bottom:12px"><span style="font-size:13px;color:var(--kit-text-2, #475569)">Conversion</span><div style="width:36px;height:36px;border-radius:8px;background:rgba(245,158,11,0.08);display:flex;align-items:center;justify-content:center;color:var(--kit-warning, #F59E0B)"><svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="12" cy="12" r="10"/><circle cx="12" cy="12" r="6"/><circle cx="12" cy="12" r="2"/></svg></div></div><div style="font-size:28px;font-weight:700;color:var(--kit-text, #0F172A);margin-bottom:4px">3.2%</div><div style="font-size:12px;color:var(--kit-danger, #EF4444);font-weight:500">-0.4%</div></div>
12
+ <div style="flex:1;min-width:200px;background:var(--kit-bg, #FFFFFF);border:1px solid var(--kit-border, #E2E8F0);border-radius:12px;padding:20px"><div style="display:flex;justify-content:space-between;margin-bottom:12px"><span style="font-size:13px;color:var(--kit-text-2, #475569)">Avg. Session</span><div style="width:36px;height:36px;border-radius:8px;background:rgba(59,130,246,0.08);display:flex;align-items:center;justify-content:center;color:var(--kit-info, #3B82F6)"><svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="12" cy="12" r="10"/><polyline points="12 6 12 12 16 14"/></svg></div></div><div style="font-size:28px;font-weight:700;color:var(--kit-text, #0F172A);margin-bottom:4px">4m 32s</div><div style="font-size:12px;color:var(--kit-success, #22C55E);font-weight:500">+8.1%</div></div>
13
+ </div>
@@ -0,0 +1,21 @@
1
+ <!--
2
+ @name: Modal — Basic Confirm
3
+ @kit: web
4
+ @width: 480
5
+ @height: 240
6
+ @tags: modal, dialog, confirm, overlay
7
+ -->
8
+ <div data-component="Modal — Basic Confirm" style="width:480px;background:var(--kit-bg, #FFFFFF);border-radius:var(--kit-radius-lg, 16px);box-shadow:0 20px 60px rgba(0,0,0,0.15);font-family:var(--kit-font, Inter, system-ui, sans-serif);overflow:hidden">
9
+ <div style="padding:24px 24px 0;display:flex;align-items:flex-start;justify-content:space-between">
10
+ <div style="width:44px;height:44px;border-radius:var(--kit-radius, 8px);background:var(--kit-danger-bg, #FEF2F2);display:flex;align-items:center;justify-content:center;color:var(--kit-danger, #EF4444)"><svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z"/><line x1="12" y1="9" x2="12" y2="13"/><line x1="12" y1="17" x2="12.01" y2="17"/></svg></div>
11
+ <div style="cursor:pointer;color:var(--kit-text-3, #94A3B8);padding:4px"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"><line x1="18" y1="6" x2="6" y2="18"/><line x1="6" y1="6" x2="18" y2="18"/></svg></div>
12
+ </div>
13
+ <div style="padding:16px 24px 24px">
14
+ <div style="font-size:var(--kit-text-lg, 18px);font-weight:var(--kit-font-semibold, 600);color:var(--kit-text, #0F172A);margin-bottom:8px">Delete project?</div>
15
+ <div style="font-size:var(--kit-text-sm, 14px);color:var(--kit-text-2, #475569);line-height:1.5;margin-bottom:24px">This action cannot be undone. All data associated with this project will be permanently removed.</div>
16
+ <div style="display:flex;gap:12px;justify-content:flex-end">
17
+ <div style="display:flex;align-items:center;justify-content:center;height:40px;border:1px solid var(--kit-border, #E2E8F0);border-radius:var(--kit-radius, 8px);padding:0 20px;font-size:var(--kit-text-sm, 14px);font-weight:var(--kit-font-medium, 500);color:var(--kit-text, #0F172A);cursor:pointer">Cancel</div>
18
+ <div style="display:flex;align-items:center;justify-content:center;height:40px;background:var(--kit-danger, #EF4444);border-radius:var(--kit-radius, 8px);padding:0 20px;font-size:var(--kit-text-sm, 14px);font-weight:var(--kit-font-medium, 500);color:#FFFFFF;cursor:pointer">Delete</div>
19
+ </div>
20
+ </div>
21
+ </div>
@@ -0,0 +1,22 @@
1
+ <!--
2
+ @name: Modal — with Form
3
+ @kit: web
4
+ @width: 480
5
+ @height: 380
6
+ @tags: modal, form, dialog, create, edit
7
+ -->
8
+ <div data-component="Modal — with Form" style="width:480px;background:var(--kit-bg, #FFFFFF);border-radius:16px;box-shadow:0 20px 60px rgba(0,0,0,0.15);font-family:var(--kit-font, Inter, system-ui, sans-serif);overflow:hidden">
9
+ <div style="display:flex;align-items:center;padding:20px 24px;border-bottom:1px solid var(--kit-border, #E2E8F0)">
10
+ <div style="flex:1;font-size:18px;font-weight:600;color:var(--kit-text, #0F172A)">Create Project</div>
11
+ <div style="cursor:pointer;color:var(--kit-text-3, #94A3B8);padding:4px"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"><line x1="18" y1="6" x2="6" y2="18"/><line x1="6" y1="6" x2="18" y2="18"/></svg></div>
12
+ </div>
13
+ <div style="padding:24px">
14
+ <div style="margin-bottom:16px"><div style="font-size:14px;font-weight:500;color:var(--kit-text, #0F172A);margin-bottom:6px">Project name</div><div style="width:100%;height:40px;border:1px solid var(--kit-border, #E2E8F0);border-radius:8px;padding:0 12px;box-sizing:border-box;display:flex;align-items:center;font-size:14px;color:var(--kit-text-3, #94A3B8)">Enter project name</div></div>
15
+ <div style="margin-bottom:16px"><div style="font-size:14px;font-weight:500;color:var(--kit-text, #0F172A);margin-bottom:6px">Description</div><div style="width:100%;height:80px;border:1px solid var(--kit-border, #E2E8F0);border-radius:8px;padding:10px 12px;box-sizing:border-box;font-size:14px;color:var(--kit-text-3, #94A3B8)">Optional description...</div></div>
16
+ <div style="margin-bottom:0"><div style="font-size:14px;font-weight:500;color:var(--kit-text, #0F172A);margin-bottom:6px">Visibility</div><div style="display:flex;align-items:center;width:100%;height:40px;border:1px solid var(--kit-border, #E2E8F0);border-radius:8px;padding:0 12px;box-sizing:border-box;cursor:pointer"><span style="flex:1;font-size:14px;color:var(--kit-text, #0F172A)">Private</span><svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="var(--kit-text-3, #94A3B8)" stroke-width="2"><polyline points="6 9 12 15 18 9"/></svg></div></div>
17
+ </div>
18
+ <div style="display:flex;gap:12px;padding:16px 24px;border-top:1px solid var(--kit-border, #E2E8F0);justify-content:flex-end">
19
+ <div style="height:40px;padding:0 20px;border:1px solid var(--kit-border, #E2E8F0);border-radius:8px;display:flex;align-items:center;font-size:14px;font-weight:500;color:var(--kit-text, #0F172A);cursor:pointer">Cancel</div>
20
+ <div style="height:40px;padding:0 20px;background:var(--kit-primary, #6366F1);color:#fff;border-radius:8px;display:flex;align-items:center;font-size:14px;font-weight:500;cursor:pointer">Create</div>
21
+ </div>
22
+ </div>
@@ -0,0 +1,14 @@
1
+ <!--
2
+ @name: Breadcrumb Navigation
3
+ @kit: web
4
+ @width: 400
5
+ @height: 32
6
+ @tags: breadcrumb, navigation, path, hierarchy
7
+ -->
8
+ <div data-component="Breadcrumb Navigation" style="display:flex;align-items:center;gap:6px;font-family:var(--kit-font, Inter, system-ui, sans-serif);font-size:var(--kit-text-sm, 14px)">
9
+ <span style="color:var(--kit-text-2, #475569);cursor:pointer">Home</span>
10
+ <svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="var(--kit-text-3, #94A3B8)" stroke-width="2"><polyline points="9 18 15 12 9 6"/></svg>
11
+ <span style="color:var(--kit-text-2, #475569);cursor:pointer">Products</span>
12
+ <svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="var(--kit-text-3, #94A3B8)" stroke-width="2"><polyline points="9 18 15 12 9 6"/></svg>
13
+ <span style="color:var(--kit-text, #0F172A);font-weight:var(--kit-font-medium, 500)">Electronics</span>
14
+ </div>
@@ -0,0 +1,35 @@
1
+ <!--
2
+ @name: Footer — Multi Column
3
+ @kit: web
4
+ @width: 1440
5
+ @height: 320
6
+ @tags: footer, navigation, links, responsive
7
+ -->
8
+ <div data-component="Footer — Multi Column" style="width:100%;background:var(--kit-text, #0F172A);padding:48px 64px 32px;box-sizing:border-box;font-family:var(--kit-font, Inter, system-ui, sans-serif)">
9
+ <div style="display:flex;flex-wrap:wrap;gap:48px;margin-bottom:40px">
10
+ <div style="flex:1;min-width:200px">
11
+ <div style="font-size:var(--kit-text-xl, 20px);font-weight:var(--kit-font-bold, 700);color:#FFFFFF;margin-bottom:16px">Brand</div>
12
+ <div style="font-size:var(--kit-text-sm, 14px);color:#94A3B8;line-height:1.6;max-width:280px">Building the future of design tools. Beautiful, fast, and accessible for everyone.</div>
13
+ </div>
14
+ <div style="min-width:140px">
15
+ <div style="font-size:var(--kit-text-xs, 12px);font-weight:var(--kit-font-semibold, 600);color:#94A3B8;text-transform:uppercase;letter-spacing:1px;margin-bottom:16px">Product</div>
16
+ <div style="display:flex;flex-direction:column;gap:10px;font-size:var(--kit-text-sm, 14px);color:#CBD5E1"><span style="cursor:pointer">Features</span><span style="cursor:pointer">Pricing</span><span style="cursor:pointer">Changelog</span><span style="cursor:pointer">Docs</span></div>
17
+ </div>
18
+ <div style="min-width:140px">
19
+ <div style="font-size:var(--kit-text-xs, 12px);font-weight:var(--kit-font-semibold, 600);color:#94A3B8;text-transform:uppercase;letter-spacing:1px;margin-bottom:16px">Company</div>
20
+ <div style="display:flex;flex-direction:column;gap:10px;font-size:var(--kit-text-sm, 14px);color:#CBD5E1"><span style="cursor:pointer">About</span><span style="cursor:pointer">Blog</span><span style="cursor:pointer">Careers</span><span style="cursor:pointer">Contact</span></div>
21
+ </div>
22
+ <div style="min-width:140px">
23
+ <div style="font-size:var(--kit-text-xs, 12px);font-weight:var(--kit-font-semibold, 600);color:#94A3B8;text-transform:uppercase;letter-spacing:1px;margin-bottom:16px">Legal</div>
24
+ <div style="display:flex;flex-direction:column;gap:10px;font-size:var(--kit-text-sm, 14px);color:#CBD5E1"><span style="cursor:pointer">Privacy</span><span style="cursor:pointer">Terms</span><span style="cursor:pointer">Cookies</span></div>
25
+ </div>
26
+ </div>
27
+ <div style="border-top:1px solid #1E293B;padding-top:24px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:16px">
28
+ <div style="font-size:var(--kit-text-sm, 13px);color:#64748B">2026 Brand. All rights reserved.</div>
29
+ <div style="display:flex;gap:16px">
30
+ <div style="cursor:pointer;color:#64748B"><svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor"><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"/></svg></div>
31
+ <div style="cursor:pointer;color:#64748B"><svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor"><path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/></svg></div>
32
+ <div style="cursor:pointer;color:#64748B"><svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor"><path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"/></svg></div>
33
+ </div>
34
+ </div>
35
+ </div>
@@ -0,0 +1,21 @@
1
+ <!--
2
+ @name: Sidebar Navigation — Dark
3
+ @kit: web
4
+ @width: 240
5
+ @height: 900
6
+ @tags: sidebar, navigation, dark, vertical, menu
7
+ -->
8
+ <div data-component="Sidebar Navigation — Dark" style="width:240px;height:100%;background:#0F172A;font-family:var(--kit-font, Inter, system-ui, sans-serif);display:flex;flex-direction:column;box-sizing:border-box;padding:20px 12px">
9
+ <div style="font-size:var(--kit-text-xl, 20px);font-weight:var(--kit-font-bold, 700);color:#FFFFFF;padding:0 12px;margin-bottom:24px">AppName</div>
10
+ <div style="display:flex;flex-direction:column;gap:2px;flex:1">
11
+ <div style="display:flex;align-items:center;gap:10px;padding:9px 12px;border-radius:var(--kit-radius, 8px);background:rgba(255,255,255,0.1);color:#FFFFFF;font-size:var(--kit-text-sm, 14px);font-weight:var(--kit-font-medium, 500);cursor:pointer"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><rect x="3" y="3" width="7" height="7"/><rect x="14" y="3" width="7" height="7"/><rect x="14" y="14" width="7" height="7"/><rect x="3" y="14" width="7" height="7"/></svg>Dashboard</div>
12
+ <div style="display:flex;align-items:center;gap:10px;padding:9px 12px;border-radius:var(--kit-radius, 8px);color:#94A3B8;font-size:var(--kit-text-sm, 14px);cursor:pointer"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"/><circle cx="9" cy="7" r="4"/></svg>Customers</div>
13
+ <div style="display:flex;align-items:center;gap:10px;padding:9px 12px;border-radius:var(--kit-radius, 8px);color:#94A3B8;font-size:var(--kit-text-sm, 14px);cursor:pointer"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"/><polyline points="22 6 12 13 2 6"/></svg>Messages<div style="margin-left:auto;background:#818CF8;color:#fff;font-size:11px;font-weight:600;padding:1px 7px;border-radius:10px">5</div></div>
14
+ <div style="display:flex;align-items:center;gap:10px;padding:9px 12px;border-radius:var(--kit-radius, 8px);color:#94A3B8;font-size:var(--kit-text-sm, 14px);cursor:pointer"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><line x1="18" y1="20" x2="18" y2="10"/><line x1="12" y1="20" x2="12" y2="4"/><line x1="6" y1="20" x2="6" y2="14"/></svg>Analytics</div>
15
+ <div style="display:flex;align-items:center;gap:10px;padding:9px 12px;border-radius:var(--kit-radius, 8px);color:#94A3B8;font-size:var(--kit-text-sm, 14px);cursor:pointer"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="12" cy="12" r="3"/><path d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1-2.83 2.83l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-4 0v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83-2.83l.06-.06A1.65 1.65 0 0 0 4.68 15a1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1 0-4h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 2.83-2.83l.06.06A1.65 1.65 0 0 0 9 4.68a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 4 0v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9c.26.604.852.997 1.51 1H21a2 2 0 0 1 0 4h-.09a1.65 1.65 0 0 0-1.51 1.08z"/></svg>Settings</div>
16
+ </div>
17
+ <div style="border-top:1px solid #1E293B;padding-top:12px;display:flex;align-items:center;gap:10px;padding:12px;cursor:pointer">
18
+ <div style="width:32px;height:32px;border-radius:16px;background:#1E293B;color:#94A3B8;display:flex;align-items:center;justify-content:center;font-size:13px;font-weight:600">JD</div>
19
+ <div style="flex:1"><div style="font-size:13px;font-weight:500;color:#F1F5F9">John Doe</div><div style="font-size:11px;color:#64748B">john@example.com</div></div>
20
+ </div>
21
+ </div>
@@ -0,0 +1,23 @@
1
+ <!--
2
+ @name: Sidebar Navigation
3
+ @kit: web
4
+ @width: 240
5
+ @height: 900
6
+ @tags: sidebar, navigation, vertical, menu, responsive
7
+ -->
8
+ <div data-component="Sidebar Navigation" style="width:240px;height:100%;background:var(--kit-bg, #FFFFFF);border-right:1px solid var(--kit-border, #E2E8F0);font-family:var(--kit-font, Inter, system-ui, sans-serif);display:flex;flex-direction:column;box-sizing:border-box;padding:20px 12px">
9
+ <div style="font-size:var(--kit-text-xl, 20px);font-weight:var(--kit-font-bold, 700);color:var(--kit-primary, #6366F1);padding:0 12px;margin-bottom:24px">AppName</div>
10
+ <div style="display:flex;flex-direction:column;gap:2px;flex:1">
11
+ <div style="display:flex;align-items:center;gap:10px;padding:9px 12px;border-radius:var(--kit-radius, 8px);background:rgba(99,102,241,0.08);color:var(--kit-primary, #6366F1);font-size:var(--kit-text-sm, 14px);font-weight:var(--kit-font-medium, 500);cursor:pointer"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><rect x="3" y="3" width="7" height="7"/><rect x="14" y="3" width="7" height="7"/><rect x="14" y="14" width="7" height="7"/><rect x="3" y="14" width="7" height="7"/></svg>Dashboard</div>
12
+ <div style="display:flex;align-items:center;gap:10px;padding:9px 12px;border-radius:var(--kit-radius, 8px);color:var(--kit-text-2, #475569);font-size:var(--kit-text-sm, 14px);cursor:pointer"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"/><circle cx="9" cy="7" r="4"/><path d="M23 21v-2a4 4 0 0 0-3-3.87"/><path d="M16 3.13a4 4 0 0 1 0 7.75"/></svg>Customers</div>
13
+ <div style="display:flex;align-items:center;gap:10px;padding:9px 12px;border-radius:var(--kit-radius, 8px);color:var(--kit-text-2, #475569);font-size:var(--kit-text-sm, 14px);cursor:pointer"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"/><polyline points="22 6 12 13 2 6"/></svg>Messages<div style="margin-left:auto;background:var(--kit-primary, #6366F1);color:#fff;font-size:11px;font-weight:600;padding:1px 7px;border-radius:10px">5</div></div>
14
+ <div style="display:flex;align-items:center;gap:10px;padding:9px 12px;border-radius:var(--kit-radius, 8px);color:var(--kit-text-2, #475569);font-size:var(--kit-text-sm, 14px);cursor:pointer"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><line x1="18" y1="20" x2="18" y2="10"/><line x1="12" y1="20" x2="12" y2="4"/><line x1="6" y1="20" x2="6" y2="14"/></svg>Analytics</div>
15
+ <div style="display:flex;align-items:center;gap:10px;padding:9px 12px;border-radius:var(--kit-radius, 8px);color:var(--kit-text-2, #475569);font-size:var(--kit-text-sm, 14px);cursor:pointer"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z"/><polyline points="13 2 13 9 20 9"/></svg>Documents</div>
16
+ <div style="font-size:11px;font-weight:var(--kit-font-semibold, 600);color:var(--kit-text-3, #94A3B8);text-transform:uppercase;letter-spacing:0.5px;padding:16px 12px 6px">Settings</div>
17
+ <div style="display:flex;align-items:center;gap:10px;padding:9px 12px;border-radius:var(--kit-radius, 8px);color:var(--kit-text-2, #475569);font-size:var(--kit-text-sm, 14px);cursor:pointer"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="12" cy="12" r="3"/><path d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1-2.83 2.83l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-4 0v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83-2.83l.06-.06A1.65 1.65 0 0 0 4.68 15a1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1 0-4h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 2.83-2.83l.06.06A1.65 1.65 0 0 0 9 4.68a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 4 0v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9c.26.604.852.997 1.51 1H21a2 2 0 0 1 0 4h-.09a1.65 1.65 0 0 0-1.51 1.08z"/></svg>Settings</div>
18
+ </div>
19
+ <div style="border-top:1px solid var(--kit-border, #E2E8F0);padding-top:12px;display:flex;align-items:center;gap:10px;padding:12px;cursor:pointer">
20
+ <div style="width:32px;height:32px;border-radius:16px;background:var(--kit-surface-2, #F1F5F9);display:flex;align-items:center;justify-content:center;color:var(--kit-text-2, #475569);font-size:13px;font-weight:600">JD</div>
21
+ <div style="flex:1;min-width:0"><div style="font-size:13px;font-weight:500;color:var(--kit-text, #0F172A);white-space:nowrap;overflow:hidden;text-overflow:ellipsis">John Doe</div><div style="font-size:11px;color:var(--kit-text-3, #94A3B8)">john@example.com</div></div>
22
+ </div>
23
+ </div>
@@ -0,0 +1,25 @@
1
+ <!--
2
+ @name: Top Navigation — with Search
3
+ @kit: web
4
+ @width: 1440
5
+ @height: 64
6
+ @tags: navbar, top, search, header, responsive
7
+ -->
8
+ <div data-component="Top Navigation — with Search" style="display:flex;align-items:center;width:100%;height:64px;background:var(--kit-bg, #FFFFFF);border-bottom:1px solid var(--kit-border, #E2E8F0);padding:0 24px;box-sizing:border-box;font-family:var(--kit-font, Inter, system-ui, sans-serif);gap:16px">
9
+ <div style="font-size:var(--kit-text-xl, 20px);font-weight:var(--kit-font-bold, 700);color:var(--kit-primary, #6366F1)">Brand</div>
10
+ <div style="flex:1;max-width:480px;display:flex;align-items:center;gap:8px;background:var(--kit-surface, #F8FAFC);border:1px solid var(--kit-border, #E2E8F0);border-radius:var(--kit-radius, 8px);padding:8px 14px">
11
+ <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="var(--kit-text-3, #94A3B8)" stroke-width="2"><circle cx="11" cy="11" r="8"/><line x1="21" y1="21" x2="16.65" y2="16.65"/></svg>
12
+ <span style="font-size:var(--kit-text-sm, 14px);color:var(--kit-text-3, #94A3B8)">Search...</span>
13
+ <span style="margin-left:auto;font-size:11px;color:var(--kit-text-3, #94A3B8);background:var(--kit-bg, #FFFFFF);border:1px solid var(--kit-border, #E2E8F0);border-radius:4px;padding:1px 6px">⌘K</span>
14
+ </div>
15
+ <div style="flex:1"></div>
16
+ <div style="display:flex;align-items:center;gap:8px">
17
+ <div style="width:36px;height:36px;border-radius:8px;display:flex;align-items:center;justify-content:center;cursor:pointer;color:var(--kit-text-2, #475569);position:relative"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9"/><path d="M13.73 21a2 2 0 0 1-3.46 0"/></svg><div style="position:absolute;top:4px;right:4px;width:8px;height:8px;border-radius:4px;background:var(--kit-danger, #EF4444);border:2px solid var(--kit-bg, #FFFFFF)"></div></div>
18
+ <div style="height:24px;width:1px;background:var(--kit-border, #E2E8F0)"></div>
19
+ <div style="display:flex;align-items:center;gap:8px;cursor:pointer">
20
+ <div style="width:32px;height:32px;border-radius:16px;background:var(--kit-primary, #6366F1);color:#fff;display:flex;align-items:center;justify-content:center;font-size:13px;font-weight:600">JD</div>
21
+ <span style="font-size:var(--kit-text-sm, 14px);font-weight:var(--kit-font-medium, 500);color:var(--kit-text, #0F172A)">John Doe</span>
22
+ <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="var(--kit-text-3, #94A3B8)" stroke-width="2"><polyline points="6 9 12 15 18 9"/></svg>
23
+ </div>
24
+ </div>
25
+ </div>
@@ -0,0 +1,20 @@
1
+ <!--
2
+ @name: Top Navigation Bar
3
+ @kit: web
4
+ @width: 1440
5
+ @height: 64
6
+ @tags: navbar, top, header, navigation, responsive
7
+ -->
8
+ <div data-component="Top Navigation Bar" style="display:flex;align-items:center;width:100%;height:64px;background:var(--kit-bg, #FFFFFF);border-bottom:1px solid var(--kit-border, #E2E8F0);padding:0 24px;box-sizing:border-box;font-family:var(--kit-font, Inter, system-ui, sans-serif)">
9
+ <div style="font-size:var(--kit-text-xl, 20px);font-weight:var(--kit-font-bold, 700);color:var(--kit-primary, #6366F1);margin-right:32px">Brand</div>
10
+ <div style="display:flex;gap:4px;flex:1">
11
+ <div style="padding:8px 16px;border-radius:var(--kit-radius, 8px);font-size:var(--kit-text-sm, 14px);font-weight:var(--kit-font-medium, 500);color:var(--kit-primary, #6366F1);background:rgba(99,102,241,0.08);cursor:pointer">Dashboard</div>
12
+ <div style="padding:8px 16px;border-radius:var(--kit-radius, 8px);font-size:var(--kit-text-sm, 14px);color:var(--kit-text-2, #475569);cursor:pointer">Projects</div>
13
+ <div style="padding:8px 16px;border-radius:var(--kit-radius, 8px);font-size:var(--kit-text-sm, 14px);color:var(--kit-text-2, #475569);cursor:pointer">Team</div>
14
+ <div style="padding:8px 16px;border-radius:var(--kit-radius, 8px);font-size:var(--kit-text-sm, 14px);color:var(--kit-text-2, #475569);cursor:pointer">Reports</div>
15
+ </div>
16
+ <div style="display:flex;align-items:center;gap:12px">
17
+ <div style="width:36px;height:36px;border-radius:8px;display:flex;align-items:center;justify-content:center;cursor:pointer;color:var(--kit-text-2, #475569)"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9"/><path d="M13.73 21a2 2 0 0 1-3.46 0"/></svg></div>
18
+ <div style="width:36px;height:36px;border-radius:18px;background:var(--kit-primary, #6366F1);color:#fff;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:600;cursor:pointer">JD</div>
19
+ </div>
20
+ </div>