vibefast-cli 1.3.0 → 1.3.1

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 (348) hide show
  1. package/README.md +30 -95
  2. package/dist/__tests__/recipes.test.js +8 -9
  3. package/dist/__tests__/recipes.test.js.map +1 -1
  4. package/dist/commands/add.d.ts.map +1 -1
  5. package/dist/commands/add.js +271 -125
  6. package/dist/commands/add.js.map +1 -1
  7. package/dist/commands/checklist.d.ts.map +1 -1
  8. package/dist/commands/checklist.js +85 -44
  9. package/dist/commands/checklist.js.map +1 -1
  10. package/dist/commands/health.d.ts.map +1 -1
  11. package/dist/commands/health.js +13 -4
  12. package/dist/commands/health.js.map +1 -1
  13. package/dist/commands/init.d.ts.map +1 -1
  14. package/dist/commands/init.js +118 -26
  15. package/dist/commands/init.js.map +1 -1
  16. package/dist/commands/migrate.d.ts +3 -0
  17. package/dist/commands/migrate.d.ts.map +1 -0
  18. package/dist/commands/migrate.js +202 -0
  19. package/dist/commands/migrate.js.map +1 -0
  20. package/dist/commands/remove.d.ts.map +1 -1
  21. package/dist/commands/remove.js +61 -3
  22. package/dist/commands/remove.js.map +1 -1
  23. package/dist/core/auth.d.ts.map +1 -1
  24. package/dist/core/auth.js +20 -18
  25. package/dist/core/auth.js.map +1 -1
  26. package/dist/core/codemod.d.ts +33 -0
  27. package/dist/core/codemod.d.ts.map +1 -1
  28. package/dist/core/codemod.js +116 -0
  29. package/dist/core/codemod.js.map +1 -1
  30. package/dist/core/detect.d.ts.map +1 -1
  31. package/dist/core/detect.js +24 -7
  32. package/dist/core/detect.js.map +1 -1
  33. package/dist/core/journal.d.ts +1 -0
  34. package/dist/core/journal.d.ts.map +1 -1
  35. package/dist/core/journal.js.map +1 -1
  36. package/dist/core/recipes.d.ts.map +1 -1
  37. package/dist/core/recipes.js +25 -7
  38. package/dist/core/recipes.js.map +1 -1
  39. package/dist/index.js +2 -2
  40. package/dist/index.js.map +1 -1
  41. package/docs/architecture.md +50 -0
  42. package/docs/commands.md +78 -0
  43. package/docs/contributing.md +27 -0
  44. package/docs/quickstart.md +50 -0
  45. package/docs/recipes.md +57 -0
  46. package/docs/troubleshooting.md +31 -0
  47. package/package.json +2 -2
  48. package/recipes/0/apps/native/src/components/advanced-ui/timeline/demo.tsx +445 -0
  49. package/recipes/0/apps/native/src/components/advanced-ui/timeline/timeline-view.tsx +355 -0
  50. package/recipes/0/apps/native/src/components/advanced-ui/timeline/types.ts +31 -0
  51. package/recipes/0/recipe.json +18 -0
  52. package/recipes/animated-chip/apps/native/src/components/advanced-ui/chip/demo.tsx +2 -1
  53. package/recipes/animated-chip/recipe.json +5 -2
  54. package/recipes/animated-chip-native@latest.zip +0 -0
  55. package/recipes/animated-chip@latest.zip +0 -0
  56. package/recipes/animated-switch/apps/native/src/components/advanced-ui/switch/demo.tsx +1 -1
  57. package/recipes/animated-switch/recipe.json +5 -2
  58. package/recipes/animated-switch-native@latest.zip +0 -0
  59. package/recipes/animated-switch@latest.zip +0 -0
  60. package/recipes/audio-recorder/apps/native/src/features/audio-recorder/components/audio-recorder.tsx +2 -1
  61. package/recipes/audio-recorder/apps/native/src/features/audio-recorder/demo/with-recording-list-demo.tsx +2 -2
  62. package/recipes/audio-recorder/recipe.json +7 -2
  63. package/recipes/audio-recorder-native@latest.zip +0 -0
  64. package/recipes/audio-recorder-supabase/apps/native/src/features/audio-recorder/components/audio-recorder.tsx +2 -1
  65. package/recipes/audio-recorder-supabase/apps/native/src/features/audio-recorder/demo/with-recording-list-demo.tsx +2 -1
  66. package/recipes/audio-recorder-supabase/recipe.json +12 -33
  67. package/recipes/audio-recorder-supabase-native@latest.zip +0 -0
  68. package/recipes/audio-recorder-supabase@latest.zip +0 -0
  69. package/recipes/audio-recorder@latest.zip +0 -0
  70. package/recipes/charts/apps/native/src/app/charts/index.tsx +3 -0
  71. package/recipes/charts/apps/native/src/features/charts/components/bar-chart.tsx +3 -1
  72. package/recipes/charts/apps/native/src/features/charts/components/candlestick-chart.tsx +3 -1
  73. package/recipes/charts/apps/native/src/features/charts/components/column-chart.tsx +3 -1
  74. package/recipes/charts/apps/native/src/features/charts/components/doughnut-chart.tsx +3 -1
  75. package/recipes/charts/apps/native/src/features/charts/components/line-chart.tsx +3 -1
  76. package/recipes/charts/apps/native/src/features/charts/components/radar-chart.tsx +3 -1
  77. package/recipes/charts/apps/native/src/features/charts/components/stacked-bar-chart.tsx +3 -1
  78. package/recipes/charts/recipe.json +13 -4
  79. package/recipes/charts-native@latest.zip +0 -0
  80. package/recipes/charts@latest.zip +0 -0
  81. package/recipes/chatbot/apps/native/src/features/chatbot/components/chat-markdown.tsx +86 -86
  82. package/recipes/chatbot/apps/native/src/features/chatbot/components/markdown/code-block.tsx +4 -4
  83. package/recipes/chatbot/recipe.json +3 -40
  84. package/recipes/chatbot-native@latest.zip +0 -0
  85. package/recipes/chatbot-supabase/apps/native/src/features/chatbot/components/chat-markdown.tsx +4 -1
  86. package/recipes/chatbot-supabase/apps/native/src/features/chatbot/components/markdown/code-block.tsx +86 -53
  87. package/recipes/chatbot-supabase/recipe.json +3 -69
  88. package/recipes/chatbot-supabase-native@latest.zip +0 -0
  89. package/recipes/chatbot-supabase@latest.zip +0 -0
  90. package/recipes/chatbot@latest.zip +0 -0
  91. package/recipes/glowing-button/recipe.json +6 -2
  92. package/recipes/glowing-button-native@latest.zip +0 -0
  93. package/recipes/glowing-button@latest.zip +0 -0
  94. package/recipes/image-analysis/apps/native/src/app/analysis/[type]/_layout.tsx +5 -0
  95. package/recipes/image-analysis/apps/native/src/app/analysis/[type]/analysis-options.tsx +50 -0
  96. package/recipes/image-analysis/apps/native/src/app/analysis/[type]/camera.tsx +2 -0
  97. package/recipes/image-analysis/apps/native/src/app/analysis/[type]/index.tsx +50 -0
  98. package/recipes/image-analysis/apps/native/src/app/analysis/[type]/loading.tsx +50 -0
  99. package/recipes/image-analysis/apps/native/src/app/analysis/[type]/results.tsx +2 -0
  100. package/recipes/image-analysis/apps/native/src/app/analysis/[type]/trait-details.tsx +3 -0
  101. package/recipes/image-analysis/apps/native/src/features/image-analyzer/app/analysis-options-screen.tsx +2 -2
  102. package/recipes/image-analysis/apps/native/src/features/image-analyzer/app/camera.tsx +72 -65
  103. package/recipes/image-analysis/apps/native/src/features/image-analyzer/app/image-capture-screen.tsx +65 -47
  104. package/recipes/image-analysis/apps/native/src/features/image-analyzer/app/loading-screen.tsx +43 -2
  105. package/recipes/image-analysis/apps/native/src/features/image-analyzer/app/loading.tsx +34 -1
  106. package/recipes/image-analysis/apps/native/src/features/image-analyzer/hooks/use-image-analysis.ts +83 -2
  107. package/recipes/image-analysis/recipe.json +11 -19
  108. package/recipes/image-analysis-native@latest.zip +0 -0
  109. package/recipes/image-analysis-supabase/apps/native/src/app/analysis/[type]/_layout.tsx +5 -0
  110. package/recipes/image-analysis-supabase/apps/native/src/app/analysis/[type]/analysis-options.tsx +50 -0
  111. package/recipes/image-analysis-supabase/apps/native/src/app/analysis/[type]/camera.tsx +2 -0
  112. package/recipes/image-analysis-supabase/apps/native/src/app/analysis/[type]/index.tsx +50 -0
  113. package/recipes/image-analysis-supabase/apps/native/src/app/analysis/[type]/loading.tsx +50 -0
  114. package/recipes/image-analysis-supabase/apps/native/src/app/analysis/[type]/results.tsx +2 -0
  115. package/recipes/image-analysis-supabase/apps/native/src/app/analysis/[type]/trait-details.tsx +3 -0
  116. package/recipes/image-analysis-supabase/recipe.json +10 -70
  117. package/recipes/image-analysis-supabase-native@latest.zip +0 -0
  118. package/recipes/image-analysis-supabase@latest.zip +0 -0
  119. package/recipes/image-analysis@latest.zip +0 -0
  120. package/recipes/image-analyzer/apps/native/src/app/(root)/(protected)/image-analyzer/index.tsx +2 -0
  121. package/recipes/image-generator/apps/native/src/app/image-generator/gallery.tsx +3 -0
  122. package/recipes/image-generator/apps/native/src/app/image-generator/index.tsx +3 -0
  123. package/recipes/image-generator/recipe.json +8 -18
  124. package/recipes/image-generator-native@latest.zip +0 -0
  125. package/recipes/image-generator-supabase/recipe.json +6 -62
  126. package/recipes/image-generator-supabase-native@latest.zip +0 -0
  127. package/recipes/image-generator-supabase@latest.zip +0 -0
  128. package/recipes/image-generator@latest.zip +0 -0
  129. package/recipes/ios-widget/recipe.json +18 -119
  130. package/recipes/ios-widget-native@latest.zip +0 -0
  131. package/recipes/ios-widget@latest.zip +0 -0
  132. package/recipes/number-stepper/apps/native/src/components/advanced-ui/stepper/demo.tsx +1 -1
  133. package/recipes/number-stepper/recipe.json +5 -2
  134. package/recipes/number-stepper-native@latest.zip +0 -0
  135. package/recipes/number-stepper@latest.zip +0 -0
  136. package/recipes/onboarding/apps/native/src/features/onboarding/expense-tracker/components/interactive-onboarding.tsx +11 -18
  137. package/recipes/onboarding/apps/native/src/features/onboarding/expense-tracker/components/steps/ai-tone-step.tsx +5 -7
  138. package/recipes/onboarding/apps/native/src/features/onboarding/expense-tracker/components/steps/currency-step.tsx +9 -7
  139. package/recipes/onboarding/apps/native/src/features/onboarding/expense-tracker/components/steps/feature-ai-step.tsx +8 -7
  140. package/recipes/onboarding/apps/native/src/features/onboarding/expense-tracker/components/steps/feature-chatbot-step.tsx +6 -5
  141. package/recipes/onboarding/apps/native/src/features/onboarding/expense-tracker/components/steps/feature-manual-step.tsx +4 -3
  142. package/recipes/onboarding/apps/native/src/features/onboarding/expense-tracker/components/steps/feature-scan-step.tsx +6 -5
  143. package/recipes/onboarding/apps/native/src/features/onboarding/expense-tracker/components/steps/main-reason-step.tsx +5 -7
  144. package/recipes/onboarding/apps/native/src/features/onboarding/expense-tracker/components/steps/notification-step.tsx +7 -6
  145. package/recipes/onboarding/apps/native/src/features/onboarding/expense-tracker/components/steps/overspend-step.tsx +5 -7
  146. package/recipes/onboarding/apps/native/src/features/onboarding/expense-tracker/components/steps/personalizing-step.tsx +8 -7
  147. package/recipes/onboarding/apps/native/src/features/onboarding/expense-tracker/components/steps/rating-step.tsx +6 -5
  148. package/recipes/onboarding/apps/native/src/features/onboarding/expense-tracker/components/steps/reminder-step.tsx +5 -6
  149. package/recipes/onboarding/apps/native/src/features/onboarding/expense-tracker/components/steps/safety-step.tsx +5 -4
  150. package/recipes/onboarding/apps/native/src/features/onboarding/expense-tracker/components/steps/struggle-step.tsx +5 -7
  151. package/recipes/onboarding/apps/native/src/features/onboarding/expense-tracker/components/steps/welcome-step.tsx +7 -6
  152. package/recipes/onboarding/apps/native/src/features/onboarding/expense-tracker/components/ui/onboarding-header.tsx +4 -3
  153. package/recipes/onboarding/recipe.json +9 -6
  154. package/recipes/onboarding-native@latest.zip +0 -0
  155. package/recipes/onboarding@latest.zip +0 -0
  156. package/recipes/payments/apps/native/src/app/paywall/index.tsx +74 -0
  157. package/recipes/payments/apps/native/src/app/paywall/local.tsx +25 -0
  158. package/recipes/payments/apps/native/src/app/paywall/remote.tsx +23 -0
  159. package/recipes/payments/packages/backend/convex/payments.ts +21 -3
  160. package/recipes/payments/recipe.json +14 -34
  161. package/recipes/payments-native@latest.zip +0 -0
  162. package/recipes/payments-supabase/apps/native/src/app/paywall/index.tsx +74 -0
  163. package/recipes/payments-supabase/apps/native/src/app/paywall/local.tsx +25 -0
  164. package/recipes/payments-supabase/apps/native/src/app/paywall/remote.tsx +23 -0
  165. package/recipes/payments-supabase/recipe.json +16 -44
  166. package/recipes/payments-supabase-native@latest.zip +0 -0
  167. package/recipes/payments-supabase@latest.zip +0 -0
  168. package/recipes/payments@latest.zip +0 -0
  169. package/recipes/posthog/apps/native/src/components/analytics/navigation-tracker.tsx +14 -0
  170. package/recipes/posthog/apps/native/src/lib/hooks/use-navigation-analytics.ts +44 -0
  171. package/recipes/posthog/apps/native/src/providers/posthog-provider.tsx +51 -0
  172. package/recipes/posthog/recipe.json +60 -0
  173. package/recipes/posthog-native@latest.zip +0 -0
  174. package/recipes/progress-circle/apps/native/src/components/advanced-ui/progress-bars/progress-circle-page.tsx +1 -1
  175. package/recipes/progress-circle/recipe.json +5 -2
  176. package/recipes/progress-circle-native@latest.zip +0 -0
  177. package/recipes/progress-circle@latest.zip +0 -0
  178. package/recipes/quiz/apps/native/src/app/quiz/index.tsx +47 -0
  179. package/recipes/quiz/recipe.json +9 -6
  180. package/recipes/quiz-native@latest.zip +0 -0
  181. package/recipes/quiz@latest.zip +0 -0
  182. package/recipes/screen-kits/apps/native/src/app/screen-kits/_layout.tsx +12 -0
  183. package/recipes/screen-kits/apps/native/src/app/screen-kits/index.tsx +114 -0
  184. package/recipes/screen-kits/apps/native/src/features/screen-kits/index.ts +1 -0
  185. package/recipes/screen-kits/apps/native/src/features/screen-kits/types.ts +28 -0
  186. package/recipes/screen-kits/recipe.json +26 -0
  187. package/recipes/screen-kits-duolingo/apps/native/src/app/screen-kits/duolingo/_layout.tsx +12 -0
  188. package/recipes/screen-kits-duolingo/apps/native/src/app/screen-kits/duolingo/home.tsx +5 -0
  189. package/recipes/screen-kits-duolingo/apps/native/src/app/screen-kits/duolingo/index.tsx +5 -0
  190. package/recipes/screen-kits-duolingo/apps/native/src/app/screen-kits/duolingo/lesson-complete.tsx +5 -0
  191. package/recipes/screen-kits-duolingo/apps/native/src/app/screen-kits/duolingo/lesson-fail.tsx +5 -0
  192. package/recipes/screen-kits-duolingo/apps/native/src/app/screen-kits/duolingo/lesson.tsx +5 -0
  193. package/recipes/screen-kits-duolingo/apps/native/src/app/screen-kits/duolingo/skill-tree.tsx +5 -0
  194. package/recipes/screen-kits-duolingo/apps/native/src/features/screen-kits/duolingo/components/duo-button.tsx +174 -0
  195. package/recipes/screen-kits-duolingo/apps/native/src/features/screen-kits/duolingo/components/skill-button.tsx +186 -0
  196. package/recipes/screen-kits-duolingo/apps/native/src/features/screen-kits/duolingo/components/xp-header.tsx +115 -0
  197. package/recipes/screen-kits-duolingo/apps/native/src/features/screen-kits/duolingo/constants.ts +89 -0
  198. package/recipes/screen-kits-duolingo/apps/native/src/features/screen-kits/duolingo/index.ts +3 -0
  199. package/recipes/screen-kits-duolingo/apps/native/src/features/screen-kits/duolingo/screens/home-screen.tsx +225 -0
  200. package/recipes/screen-kits-duolingo/apps/native/src/features/screen-kits/duolingo/screens/lesson-complete-screen.tsx +485 -0
  201. package/recipes/screen-kits-duolingo/apps/native/src/features/screen-kits/duolingo/screens/lesson-fail-screen.tsx +105 -0
  202. package/recipes/screen-kits-duolingo/apps/native/src/features/screen-kits/duolingo/screens/lesson-screen.tsx +384 -0
  203. package/recipes/screen-kits-duolingo/recipe.json +58 -0
  204. package/recipes/screen-kits-duolingo-native@latest.zip +0 -0
  205. package/recipes/screen-kits-finance/apps/native/src/app/screen-kits/finance/_layout.tsx +45 -0
  206. package/recipes/screen-kits-finance/apps/native/src/app/screen-kits/finance/asset-detail.tsx +3 -0
  207. package/recipes/screen-kits-finance/apps/native/src/app/screen-kits/finance/notifications.tsx +3 -0
  208. package/recipes/screen-kits-finance/apps/native/src/app/screen-kits/finance/receive.tsx +3 -0
  209. package/recipes/screen-kits-finance/apps/native/src/app/screen-kits/finance/send.tsx +3 -0
  210. package/recipes/screen-kits-finance/apps/native/src/app/screen-kits/finance/swap.tsx +3 -0
  211. package/recipes/screen-kits-finance/apps/native/src/app/screen-kits/finance/wallet.tsx +3 -0
  212. package/recipes/screen-kits-finance/apps/native/src/features/screen-kits/finance/components/ActionButtons.tsx +78 -0
  213. package/recipes/screen-kits-finance/apps/native/src/features/screen-kits/finance/components/AssetRow.tsx +94 -0
  214. package/recipes/screen-kits-finance/apps/native/src/features/screen-kits/finance/components/BalanceCard.tsx +118 -0
  215. package/recipes/screen-kits-finance/apps/native/src/features/screen-kits/finance/constants.ts +85 -0
  216. package/recipes/screen-kits-finance/apps/native/src/features/screen-kits/finance/screens/asset-detail.tsx +378 -0
  217. package/recipes/screen-kits-finance/apps/native/src/features/screen-kits/finance/screens/notifications.tsx +210 -0
  218. package/recipes/screen-kits-finance/apps/native/src/features/screen-kits/finance/screens/receive-modal.tsx +317 -0
  219. package/recipes/screen-kits-finance/apps/native/src/features/screen-kits/finance/screens/send-modal.tsx +420 -0
  220. package/recipes/screen-kits-finance/apps/native/src/features/screen-kits/finance/screens/swap-modal.tsx +363 -0
  221. package/recipes/screen-kits-finance/apps/native/src/features/screen-kits/finance/screens/wallet-dashboard.tsx +281 -0
  222. package/recipes/screen-kits-finance/recipe.json +46 -0
  223. package/recipes/screen-kits-finance-native@latest.zip +0 -0
  224. package/recipes/screen-kits-fitness/apps/native/assets/sounds/timer-beep.wav +0 -0
  225. package/recipes/screen-kits-fitness/apps/native/src/app/screen-kits/fitness/_layout.tsx +10 -0
  226. package/recipes/screen-kits-fitness/apps/native/src/app/screen-kits/fitness/index.tsx +6 -0
  227. package/recipes/screen-kits-fitness/apps/native/src/app/screen-kits/fitness/timer.tsx +3 -0
  228. package/recipes/screen-kits-fitness/apps/native/src/app/screen-kits/fitness/workout.tsx +3 -0
  229. package/recipes/screen-kits-fitness/apps/native/src/features/screen-kits/fitness/components/timer-components.tsx +500 -0
  230. package/recipes/screen-kits-fitness/apps/native/src/features/screen-kits/fitness/components/timer-settings-modal.tsx +352 -0
  231. package/recipes/screen-kits-fitness/apps/native/src/features/screen-kits/fitness/components/workout-card.tsx +105 -0
  232. package/recipes/screen-kits-fitness/apps/native/src/features/screen-kits/fitness/constants.ts +189 -0
  233. package/recipes/screen-kits-fitness/apps/native/src/features/screen-kits/fitness/hooks/use-timer.ts +307 -0
  234. package/recipes/screen-kits-fitness/apps/native/src/features/screen-kits/fitness/index.ts +1 -0
  235. package/recipes/screen-kits-fitness/apps/native/src/features/screen-kits/fitness/screens/timer-screen.tsx +278 -0
  236. package/recipes/screen-kits-fitness/apps/native/src/features/screen-kits/fitness/screens/workout-dashboard.tsx +350 -0
  237. package/recipes/screen-kits-fitness/recipe.json +63 -0
  238. package/recipes/screen-kits-fitness-native@latest.zip +0 -0
  239. package/recipes/screen-kits-habits/apps/native/src/app/screen-kits/productivity/habits.tsx +1 -0
  240. package/recipes/screen-kits-habits/apps/native/src/app/screen-kits/productivity/kanban.tsx +1 -0
  241. package/recipes/screen-kits-habits/apps/native/src/app/screen-kits/productivity/routes.ts +4 -0
  242. package/recipes/screen-kits-habits/apps/native/src/features/screen-kits/productivity/components/AddTaskModal.tsx +246 -0
  243. package/recipes/screen-kits-habits/apps/native/src/features/screen-kits/productivity/components/DraggableTaskCard.tsx +92 -0
  244. package/recipes/screen-kits-habits/apps/native/src/features/screen-kits/productivity/components/KanbanColumn.tsx +238 -0
  245. package/recipes/screen-kits-habits/apps/native/src/features/screen-kits/productivity/components/TaskCard.tsx +144 -0
  246. package/recipes/screen-kits-habits/apps/native/src/features/screen-kits/productivity/components/add-habit-modal.tsx +271 -0
  247. package/recipes/screen-kits-habits/apps/native/src/features/screen-kits/productivity/constants.ts +295 -0
  248. package/recipes/screen-kits-habits/apps/native/src/features/screen-kits/productivity/kanban-utils.ts +62 -0
  249. package/recipes/screen-kits-habits/apps/native/src/features/screen-kits/productivity/screens/habit-tracker.tsx +1160 -0
  250. package/recipes/screen-kits-habits/apps/native/src/features/screen-kits/productivity/screens/kanban-board.tsx +432 -0
  251. package/recipes/screen-kits-habits/recipe.json +52 -0
  252. package/recipes/screen-kits-habits-native@latest.zip +0 -0
  253. package/recipes/screen-kits-native@latest.zip +0 -0
  254. package/recipes/sentry/apps/native/src/providers/sentry-provider.tsx +64 -0
  255. package/recipes/sentry/recipe.json +39 -0
  256. package/recipes/sentry-native@latest.zip +0 -0
  257. package/recipes/swipe-slider/apps/native/src/components/advanced-ui/sliders/swipe-slider-page.tsx +1 -1
  258. package/recipes/swipe-slider/recipe.json +5 -2
  259. package/recipes/swipe-slider-native@latest.zip +0 -0
  260. package/recipes/swipe-slider@latest.zip +0 -0
  261. package/recipes/timeline/apps/native/src/components/advanced-ui/timeline/demo.tsx +2 -1
  262. package/recipes/timeline/recipe.json +5 -2
  263. package/recipes/timeline-native@latest.zip +0 -0
  264. package/recipes/timeline@latest.zip +0 -0
  265. package/recipes/tracker-app/apps/native/src/app/tracker-app/index.tsx +1 -0
  266. package/recipes/tracker-app/recipe.json +10 -7
  267. package/recipes/tracker-app-native@latest.zip +0 -0
  268. package/recipes/tracker-app@latest.zip +0 -0
  269. package/recipes/upload-all.sh +8 -31
  270. package/recipes/voice-bot/apps/native/src/app/voice-bot/index.tsx +56 -0
  271. package/recipes/voice-bot/recipe.json +31 -7
  272. package/recipes/voice-bot-native@latest.zip +0 -0
  273. package/recipes/voice-bot@latest.zip +0 -0
  274. package/recipes/wake-word/apps/native/src/app/{(root)/(protected)/test-wake-word.tsx → test-wake-word.tsx} +43 -4
  275. package/recipes/wake-word/recipe.json +16 -26
  276. package/recipes/wake-word-native@latest.zip +0 -0
  277. package/recipes/wake-word@latest.zip +0 -0
  278. package/scripts/create-advanced-ui-recipes.sh +46 -19
  279. package/scripts/create-recipes.mjs +471 -117
  280. package/scripts/package-recipes.mjs +76 -0
  281. package/scripts/publish-all.sh +6 -2
  282. package/CHANGELOG.md +0 -198
  283. package/docs/archive/AUTO-DETECT-DEPS.md +0 -607
  284. package/docs/archive/FINAL-PACKAGE-STRATEGY.md +0 -583
  285. package/docs/archive/FINAL-SIMPLE-PLAN.md +0 -487
  286. package/docs/archive/FINAL-STATUS.md +0 -144
  287. package/docs/archive/FLOW-DIAGRAM.md +0 -1629
  288. package/docs/archive/GOTCHAS-AND-RISKS.md +0 -801
  289. package/docs/archive/IMPLEMENTATION-PLAN.md +0 -1360
  290. package/docs/archive/PLAN.md +0 -453
  291. package/docs/archive/PRODUCTION-READINESS.md +0 -684
  292. package/docs/archive/PRODUCTION-TEST-RESULTS.md +0 -465
  293. package/docs/archive/SIMPLIFIED-PLAN.md +0 -578
  294. package/docs/archive/STATUS.md +0 -199
  295. package/docs/archive/SUCCESS.md +0 -259
  296. package/docs/archive/TEST-SUMMARY.md +0 -261
  297. package/docs/archive/TESTING-CHECKLIST.md +0 -450
  298. package/docs/archive/USER-MODIFICATIONS.md +0 -448
  299. package/docs/decisions.md +0 -55
  300. package/docs/manual-testing.md +0 -91
  301. package/docs/next-steps.md +0 -12
  302. package/recipes/README.md +0 -156
  303. package/recipes/audio-recorder-supabase/packages/backend/src/services/recordings.ts +0 -369
  304. package/recipes/chatbot/apps/native/src/api-client/chatbot.ts +0 -83
  305. package/recipes/chatbot/packages/backend/convex/agents.ts +0 -115
  306. package/recipes/chatbot/packages/backend/convex/tools/index.ts +0 -18
  307. package/recipes/chatbot/packages/backend/convex/tools/knowledgeRetrieval.ts +0 -97
  308. package/recipes/chatbot/packages/backend/convex/tools/tavilySearch.ts +0 -83
  309. package/recipes/chatbot/packages/backend/convex/tools/userProfile.ts +0 -72
  310. package/recipes/chatbot-supabase/apps/native/src/api-client/supabase/chatbot.ts +0 -515
  311. package/recipes/chatbot-supabase/packages/backend/src/services/conversations.ts +0 -243
  312. package/recipes/chatbot-supabase/packages/backend/src/services/messages.ts +0 -327
  313. package/recipes/image-analysis/apps/native/src/api-client/image-analyzer.ts +0 -62
  314. package/recipes/image-analysis-supabase/packages/backend/src/services/image-analyses.ts +0 -132
  315. package/recipes/image-generator/apps/native/src/api-client/image-generator.ts +0 -34
  316. package/recipes/payments/apps/native/src/api-client/payments.ts +0 -44
  317. package/recipes/payments-supabase/packages/backend/src/services/payments.ts +0 -201
  318. package/recipes/posthog.json +0 -47
  319. package/recipes/revenuecat.json +0 -43
  320. package/recipes/sentry.json +0 -47
  321. package/recipes/wake-word/apps/native/assets/vosk-model/README.md +0 -103
  322. package/recipes/wake-word/apps/native/scripts/download-vosk-model.mjs +0 -127
  323. /package/recipes/{audio-recorder/apps/native/src/app/(root)/(protected) → audio-recorder-supabase/apps/native/src/app}/audio-recorder/index.tsx +0 -0
  324. /package/recipes/ios-widget/{targets → apps/native/targets}/widget/AppIntent.swift +0 -0
  325. /package/recipes/ios-widget/{targets → apps/native/targets}/widget/Assets.xcassets/AppIcon.appiconset/App-Icon-20x20@1x.png +0 -0
  326. /package/recipes/ios-widget/{targets → apps/native/targets}/widget/Assets.xcassets/AppIcon.appiconset/App-Icon-20x20@2x.png +0 -0
  327. /package/recipes/ios-widget/{targets → apps/native/targets}/widget/Assets.xcassets/AppIcon.appiconset/App-Icon-20x20@3x.png +0 -0
  328. /package/recipes/ios-widget/{targets → apps/native/targets}/widget/Assets.xcassets/AppIcon.appiconset/App-Icon-29x29@1x.png +0 -0
  329. /package/recipes/ios-widget/{targets → apps/native/targets}/widget/Assets.xcassets/AppIcon.appiconset/App-Icon-29x29@2x.png +0 -0
  330. /package/recipes/ios-widget/{targets → apps/native/targets}/widget/Assets.xcassets/AppIcon.appiconset/App-Icon-29x29@3x.png +0 -0
  331. /package/recipes/ios-widget/{targets → apps/native/targets}/widget/Assets.xcassets/AppIcon.appiconset/App-Icon-40x40@1x.png +0 -0
  332. /package/recipes/ios-widget/{targets → apps/native/targets}/widget/Assets.xcassets/AppIcon.appiconset/App-Icon-40x40@2x.png +0 -0
  333. /package/recipes/ios-widget/{targets → apps/native/targets}/widget/Assets.xcassets/AppIcon.appiconset/App-Icon-40x40@3x.png +0 -0
  334. /package/recipes/ios-widget/{targets → apps/native/targets}/widget/Assets.xcassets/AppIcon.appiconset/App-Icon-60x60@2x.png +0 -0
  335. /package/recipes/ios-widget/{targets → apps/native/targets}/widget/Assets.xcassets/AppIcon.appiconset/App-Icon-60x60@3x.png +0 -0
  336. /package/recipes/ios-widget/{targets → apps/native/targets}/widget/Assets.xcassets/AppIcon.appiconset/App-Icon-76x76@1x.png +0 -0
  337. /package/recipes/ios-widget/{targets → apps/native/targets}/widget/Assets.xcassets/AppIcon.appiconset/App-Icon-76x76@2x.png +0 -0
  338. /package/recipes/ios-widget/{targets → apps/native/targets}/widget/Assets.xcassets/AppIcon.appiconset/App-Icon-83.5x83.5@2x.png +0 -0
  339. /package/recipes/ios-widget/{targets → apps/native/targets}/widget/Assets.xcassets/AppIcon.appiconset/Contents.json +0 -0
  340. /package/recipes/ios-widget/{targets → apps/native/targets}/widget/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png +0 -0
  341. /package/recipes/ios-widget/{targets → apps/native/targets}/widget/CalorieTrackerWidget.swift +0 -0
  342. /package/recipes/ios-widget/{targets → apps/native/targets}/widget/HabitTrackerWidget.swift +0 -0
  343. /package/recipes/ios-widget/{targets → apps/native/targets}/widget/Info.plist +0 -0
  344. /package/recipes/ios-widget/{targets → apps/native/targets}/widget/WidgetLiveActivity.swift +0 -0
  345. /package/recipes/ios-widget/{targets → apps/native/targets}/widget/expo-target.config.js +0 -0
  346. /package/recipes/ios-widget/{targets → apps/native/targets}/widget/generated.entitlements +0 -0
  347. /package/recipes/ios-widget/{targets → apps/native/targets}/widget/index.swift +0 -0
  348. /package/recipes/ios-widget/{targets → apps/native/targets}/widget/widgets.swift +0 -0
@@ -0,0 +1,210 @@
1
+ import { Ionicons } from '@expo/vector-icons';
2
+ import { useRouter } from 'expo-router';
3
+ import React from 'react';
4
+ import { ScrollView, StyleSheet, TouchableOpacity, View } from 'react-native';
5
+ import Animated, { FadeInRight } from 'react-native-reanimated';
6
+
7
+ import { Text } from '@/components/ui';
8
+ import { FINANCE_COLORS } from '../constants';
9
+
10
+ const NOTIFICATIONS = [
11
+ {
12
+ id: '1',
13
+ title: 'Payment Sent',
14
+ message: 'You sent $50.00 to Alice.',
15
+ time: '2m ago',
16
+ icon: 'arrow-up',
17
+ color: '#EF4444',
18
+ read: false,
19
+ },
20
+ {
21
+ id: '2',
22
+ title: 'Payment Received',
23
+ message: 'Bob sent you $120.00.',
24
+ time: '1h ago',
25
+ icon: 'arrow-down',
26
+ color: '#10B981',
27
+ read: false,
28
+ },
29
+ {
30
+ id: '3',
31
+ title: 'Security Alert',
32
+ message: 'New login detected from Mac OS X.',
33
+ time: '5h ago',
34
+ icon: 'shield-checkmark',
35
+ color: '#3B82F6',
36
+ read: true,
37
+ },
38
+ ];
39
+
40
+ export default function NotificationsModal() {
41
+ const router = useRouter();
42
+
43
+ return (
44
+ <View style={styles.container}>
45
+ <View style={styles.header}>
46
+ <TouchableOpacity
47
+ onPress={() => router.back()}
48
+ style={styles.closeButton}
49
+ >
50
+ <Ionicons name="close" size={20} color="white" />
51
+ </TouchableOpacity>
52
+ <Text style={styles.headerTitle}>Notifications</Text>
53
+ <TouchableOpacity>
54
+ <Text style={styles.clearAllText}>Clear All</Text>
55
+ </TouchableOpacity>
56
+ </View>
57
+
58
+ <ScrollView
59
+ style={styles.scrollView}
60
+ showsVerticalScrollIndicator={false}
61
+ >
62
+ {NOTIFICATIONS.map((notif, index) => (
63
+ <Animated.View
64
+ key={notif.id}
65
+ entering={FadeInRight.delay(index * 100)}
66
+ style={[
67
+ styles.notificationItem,
68
+ notif.read ? styles.notificationRead : styles.notificationUnread,
69
+ ]}
70
+ >
71
+ <View
72
+ style={[
73
+ styles.iconContainer,
74
+ { backgroundColor: `${notif.color}20` },
75
+ ]}
76
+ >
77
+ <Ionicons
78
+ name={notif.icon as any}
79
+ size={24}
80
+ color={notif.color}
81
+ />
82
+ </View>
83
+ <View style={styles.notificationContent}>
84
+ <View style={styles.notificationHeader}>
85
+ <Text
86
+ style={[
87
+ styles.notificationTitle,
88
+ notif.read && styles.notificationTitleRead,
89
+ ]}
90
+ >
91
+ {notif.title}
92
+ </Text>
93
+ <Text style={styles.notificationTime}>{notif.time}</Text>
94
+ </View>
95
+ <Text style={styles.notificationMessage} numberOfLines={2}>
96
+ {notif.message}
97
+ </Text>
98
+ </View>
99
+ {!notif.read && <View style={styles.unreadDot} />}
100
+ </Animated.View>
101
+ ))}
102
+
103
+ <Text style={styles.endText}>No more notifications</Text>
104
+ </ScrollView>
105
+ </View>
106
+ );
107
+ }
108
+
109
+ const styles = StyleSheet.create({
110
+ container: {
111
+ flex: 1,
112
+ backgroundColor: '#09090b',
113
+ padding: 24,
114
+ paddingTop: 48,
115
+ },
116
+ header: {
117
+ flexDirection: 'row',
118
+ alignItems: 'center',
119
+ justifyContent: 'space-between',
120
+ marginBottom: 32,
121
+ },
122
+ closeButton: {
123
+ width: 40,
124
+ height: 40,
125
+ borderRadius: 20,
126
+ backgroundColor: '#18181b',
127
+ alignItems: 'center',
128
+ justifyContent: 'center',
129
+ },
130
+ headerTitle: {
131
+ color: '#ffffff',
132
+ fontWeight: '700',
133
+ fontSize: 18,
134
+ },
135
+ clearAllText: {
136
+ color: '#71717a',
137
+ fontWeight: '700',
138
+ fontSize: 12,
139
+ },
140
+ scrollView: {
141
+ flex: 1,
142
+ },
143
+ notificationItem: {
144
+ flexDirection: 'row',
145
+ gap: 16,
146
+ padding: 16,
147
+ marginBottom: 12,
148
+ borderRadius: 16,
149
+ borderWidth: 1,
150
+ },
151
+ notificationUnread: {
152
+ backgroundColor: '#18181b',
153
+ borderColor: '#27272a',
154
+ },
155
+ notificationRead: {
156
+ backgroundColor: 'transparent',
157
+ borderColor: 'transparent',
158
+ },
159
+ iconContainer: {
160
+ width: 48,
161
+ height: 48,
162
+ borderRadius: 24,
163
+ alignItems: 'center',
164
+ justifyContent: 'center',
165
+ },
166
+ notificationContent: {
167
+ flex: 1,
168
+ justifyContent: 'center',
169
+ },
170
+ notificationHeader: {
171
+ flexDirection: 'row',
172
+ justifyContent: 'space-between',
173
+ marginBottom: 4,
174
+ },
175
+ notificationTitle: {
176
+ fontSize: 14,
177
+ fontWeight: '700',
178
+ color: '#ffffff',
179
+ },
180
+ notificationTitleRead: {
181
+ color: '#a1a1aa',
182
+ },
183
+ notificationTime: {
184
+ color: '#52525b',
185
+ fontSize: 10,
186
+ textTransform: 'uppercase',
187
+ fontWeight: '700',
188
+ },
189
+ notificationMessage: {
190
+ color: '#71717a',
191
+ fontSize: 12,
192
+ lineHeight: 20,
193
+ },
194
+ unreadDot: {
195
+ width: 8,
196
+ height: 8,
197
+ borderRadius: 4,
198
+ backgroundColor: FINANCE_COLORS.primary,
199
+ marginTop: 8,
200
+ },
201
+ endText: {
202
+ color: '#3f3f46',
203
+ textAlign: 'center',
204
+ fontSize: 12,
205
+ fontWeight: '700',
206
+ marginTop: 32,
207
+ textTransform: 'uppercase',
208
+ letterSpacing: 2,
209
+ },
210
+ });
@@ -0,0 +1,317 @@
1
+ import { Ionicons } from '@expo/vector-icons';
2
+ import { useRouter } from 'expo-router';
3
+ import React, { useState } from 'react';
4
+ import { StyleSheet, TouchableOpacity, View } from 'react-native';
5
+ import Animated, { FadeInUp } from 'react-native-reanimated';
6
+ import Svg, { Rect } from 'react-native-svg';
7
+
8
+ import { Text } from '@/components/ui';
9
+ import { FINANCE_COLORS } from '../constants';
10
+
11
+ export default function ReceiveModal() {
12
+ const router = useRouter();
13
+ const [copied, setCopied] = useState(false);
14
+
15
+ const handleCopy = () => {
16
+ setCopied(true);
17
+ setTimeout(() => setCopied(false), 2000);
18
+ };
19
+
20
+ const RealisticQRCode = () => {
21
+ const size = 25;
22
+ const padding = 2;
23
+ const pixelSize = 200 / (size + padding * 2);
24
+
25
+ const rect = (x: number, y: number) => (
26
+ <Rect
27
+ key={`${x}-${y}`}
28
+ x={(x + padding) * pixelSize}
29
+ y={(y + padding) * pixelSize}
30
+ width={pixelSize}
31
+ height={pixelSize}
32
+ fill="black"
33
+ />
34
+ );
35
+
36
+ const modules: JSX.Element[] = [];
37
+
38
+ const addFinder = (bx: number, by: number) => {
39
+ for (let x = 0; x < 7; x++) {
40
+ for (let y = 0; y < 7; y++) {
41
+ if (
42
+ x === 0 ||
43
+ x === 6 ||
44
+ y === 0 ||
45
+ y === 6 ||
46
+ (x >= 2 && x <= 4 && y >= 2 && y <= 4)
47
+ ) {
48
+ modules.push(rect(bx + x, by + y));
49
+ }
50
+ }
51
+ }
52
+ };
53
+
54
+ addFinder(0, 0);
55
+ addFinder(size - 7, 0);
56
+ addFinder(0, size - 7);
57
+
58
+ for (let i = 8; i < size - 8; i += 2) {
59
+ modules.push(rect(i, 6));
60
+ modules.push(rect(6, i));
61
+ }
62
+
63
+ const isReserved = (x: number, y: number) => {
64
+ if (x < 8 && y < 8) return true;
65
+ if (x > size - 9 && y < 8) return true;
66
+ if (x < 8 && y > size - 9) return true;
67
+ if (x === 6 || y === 6) return true;
68
+ return false;
69
+ };
70
+
71
+ const seed = 12345;
72
+ let randomVal = seed;
73
+ const pseudoRandom = () => {
74
+ randomVal = (randomVal * 16807) % 2147483647;
75
+ return randomVal / 2147483647;
76
+ };
77
+
78
+ for (let x = 0; x < size; x++) {
79
+ for (let y = 0; y < size; y++) {
80
+ if (!isReserved(x, y)) {
81
+ if (pseudoRandom() > 0.5) {
82
+ modules.push(rect(x, y));
83
+ }
84
+ }
85
+ }
86
+ }
87
+
88
+ return (
89
+ <View style={styles.qrContainer}>
90
+ <Svg height="200" width="200" viewBox="0 0 200 200">
91
+ {modules}
92
+ </Svg>
93
+ <View style={styles.qrLogoContainer}>
94
+ <View style={styles.qrLogo}>
95
+ <Ionicons name="wallet" size={20} color={FINANCE_COLORS.primary} />
96
+ </View>
97
+ </View>
98
+ </View>
99
+ );
100
+ };
101
+
102
+ return (
103
+ <View style={styles.container}>
104
+ <View style={styles.header}>
105
+ <TouchableOpacity
106
+ onPress={() => router.back()}
107
+ style={styles.headerButton}
108
+ >
109
+ <Ionicons name="close" size={20} color="white" />
110
+ </TouchableOpacity>
111
+ <Text style={styles.headerTitle}>Receive Assets</Text>
112
+ <TouchableOpacity style={styles.headerButton}>
113
+ <Ionicons name="share-outline" size={20} color="white" />
114
+ </TouchableOpacity>
115
+ </View>
116
+
117
+ <Animated.View
118
+ entering={FadeInUp.delay(200).springify()}
119
+ style={styles.content}
120
+ >
121
+ {/* Network Pill */}
122
+ <View style={styles.networkPill}>
123
+ <View style={styles.networkDot} />
124
+ <Text style={styles.networkText}>ETHEREUM NETWORK</Text>
125
+ </View>
126
+
127
+ {/* QR Code Container */}
128
+ <View style={styles.qrSection}>
129
+ <View style={styles.qrGlow} />
130
+ <RealisticQRCode />
131
+ </View>
132
+
133
+ {/* Address & Copy */}
134
+ <View style={styles.addressCard}>
135
+ <Text style={styles.addressLabel}>Your Wallet Address</Text>
136
+ <View style={styles.addressRow}>
137
+ <Text style={styles.addressText} numberOfLines={1}>
138
+ 0x71C...9A23
139
+ </Text>
140
+ </View>
141
+ </View>
142
+
143
+ <TouchableOpacity
144
+ onPress={handleCopy}
145
+ style={[styles.copyButton, copied && styles.copyButtonSuccess]}
146
+ >
147
+ <Ionicons
148
+ name={copied ? 'checkmark' : 'copy-outline'}
149
+ size={20}
150
+ color="white"
151
+ />
152
+ <Text style={styles.copyButtonText}>
153
+ {copied ? 'Copied!' : 'Copy Address'}
154
+ </Text>
155
+ </TouchableOpacity>
156
+
157
+ <Text style={styles.disclaimer}>
158
+ Only send ETH or ERC-20 tokens to this address. Sending other assets
159
+ may result in permanent loss.
160
+ </Text>
161
+ </Animated.View>
162
+ </View>
163
+ );
164
+ }
165
+
166
+ const styles = StyleSheet.create({
167
+ container: {
168
+ flex: 1,
169
+ backgroundColor: '#09090b',
170
+ padding: 24,
171
+ paddingTop: 48,
172
+ alignItems: 'center',
173
+ },
174
+ header: {
175
+ width: '100%',
176
+ flexDirection: 'row',
177
+ alignItems: 'center',
178
+ justifyContent: 'space-between',
179
+ marginBottom: 40,
180
+ },
181
+ headerButton: {
182
+ width: 40,
183
+ height: 40,
184
+ borderRadius: 20,
185
+ backgroundColor: '#18181b',
186
+ alignItems: 'center',
187
+ justifyContent: 'center',
188
+ },
189
+ headerTitle: {
190
+ color: '#ffffff',
191
+ fontWeight: '700',
192
+ fontSize: 18,
193
+ },
194
+ content: {
195
+ alignItems: 'center',
196
+ width: '100%',
197
+ },
198
+ networkPill: {
199
+ backgroundColor: '#18181b',
200
+ paddingHorizontal: 16,
201
+ paddingVertical: 8,
202
+ borderRadius: 20,
203
+ marginBottom: 32,
204
+ borderWidth: 1,
205
+ borderColor: '#27272a',
206
+ flexDirection: 'row',
207
+ alignItems: 'center',
208
+ gap: 8,
209
+ },
210
+ networkDot: {
211
+ width: 8,
212
+ height: 8,
213
+ borderRadius: 4,
214
+ backgroundColor: '#10b981',
215
+ },
216
+ networkText: {
217
+ color: '#a1a1aa',
218
+ fontSize: 12,
219
+ fontWeight: '700',
220
+ },
221
+ qrSection: {
222
+ marginBottom: 40,
223
+ alignItems: 'center',
224
+ },
225
+ qrGlow: {
226
+ position: 'absolute',
227
+ top: -16,
228
+ left: -16,
229
+ right: -16,
230
+ bottom: -16,
231
+ backgroundColor: FINANCE_COLORS.primary,
232
+ opacity: 0.2,
233
+ borderRadius: 40,
234
+ },
235
+ qrContainer: {
236
+ backgroundColor: '#ffffff',
237
+ padding: 16,
238
+ borderRadius: 24,
239
+ overflow: 'hidden',
240
+ shadowColor: '#10b981',
241
+ shadowOffset: { width: 0, height: 8 },
242
+ shadowOpacity: 0.2,
243
+ shadowRadius: 24,
244
+ elevation: 10,
245
+ },
246
+ qrLogoContainer: {
247
+ position: 'absolute',
248
+ top: 0,
249
+ left: 0,
250
+ right: 0,
251
+ bottom: 0,
252
+ alignItems: 'center',
253
+ justifyContent: 'center',
254
+ },
255
+ qrLogo: {
256
+ width: 40,
257
+ height: 40,
258
+ backgroundColor: '#ffffff',
259
+ borderRadius: 20,
260
+ alignItems: 'center',
261
+ justifyContent: 'center',
262
+ borderWidth: 2,
263
+ borderColor: '#f4f4f5',
264
+ },
265
+ addressCard: {
266
+ width: '100%',
267
+ backgroundColor: 'rgba(24, 24, 27, 0.5)',
268
+ borderWidth: 1,
269
+ borderColor: '#27272a',
270
+ padding: 16,
271
+ borderRadius: 16,
272
+ marginBottom: 32,
273
+ },
274
+ addressLabel: {
275
+ color: '#71717a',
276
+ fontSize: 12,
277
+ fontWeight: '500',
278
+ textAlign: 'center',
279
+ marginBottom: 8,
280
+ },
281
+ addressRow: {
282
+ flexDirection: 'row',
283
+ alignItems: 'center',
284
+ justifyContent: 'center',
285
+ gap: 8,
286
+ },
287
+ addressText: {
288
+ color: '#ffffff',
289
+ fontFamily: 'monospace',
290
+ fontSize: 14,
291
+ letterSpacing: 2,
292
+ },
293
+ copyButton: {
294
+ width: '100%',
295
+ height: 56,
296
+ borderRadius: 16,
297
+ alignItems: 'center',
298
+ justifyContent: 'center',
299
+ flexDirection: 'row',
300
+ gap: 8,
301
+ backgroundColor: '#27272a',
302
+ },
303
+ copyButtonSuccess: {
304
+ backgroundColor: '#10b981',
305
+ },
306
+ copyButtonText: {
307
+ fontWeight: '700',
308
+ color: '#ffffff',
309
+ },
310
+ disclaimer: {
311
+ color: '#52525b',
312
+ fontSize: 12,
313
+ textAlign: 'center',
314
+ marginTop: 24,
315
+ paddingHorizontal: 40,
316
+ },
317
+ });