openship 0.1.0 → 0.1.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 (531) hide show
  1. package/.env.example +19 -3
  2. package/CONTRIBUTING.md +69 -19
  3. package/LICENSE +661 -0
  4. package/README.md +304 -108
  5. package/apps/api/Dockerfile +6 -8
  6. package/apps/api/package.json +25 -21
  7. package/apps/api/src/app.ts +46 -3
  8. package/apps/api/src/config/env.ts +81 -7
  9. package/apps/api/src/lib/auth-mode.ts +42 -0
  10. package/apps/api/src/lib/auth.ts +105 -0
  11. package/apps/api/src/lib/cache.ts +128 -0
  12. package/apps/api/src/lib/cloud-auth-proxy.ts +310 -0
  13. package/apps/api/src/lib/cloud-client.ts +103 -0
  14. package/apps/api/src/lib/compose-parser.ts +138 -0
  15. package/apps/api/src/lib/controller-helpers.ts +90 -0
  16. package/apps/api/src/lib/email-templates.ts +94 -0
  17. package/apps/api/src/lib/encryption.ts +102 -0
  18. package/apps/api/src/lib/local-user.ts +65 -0
  19. package/apps/api/src/lib/mail.ts +48 -0
  20. package/apps/api/src/lib/notifications.ts +195 -0
  21. package/apps/api/src/lib/openship-cloud.ts +101 -0
  22. package/apps/api/src/lib/resources.ts +96 -0
  23. package/apps/api/src/lib/screenshots.ts +189 -0
  24. package/apps/api/src/lib/ssh-manager.ts +369 -0
  25. package/apps/api/src/lib/ssl-scheduler.ts +109 -0
  26. package/apps/api/src/lib/stack-detector.ts +708 -0
  27. package/apps/api/src/lib/system-debug.ts +10 -0
  28. package/apps/api/src/middleware/auth.ts +49 -13
  29. package/apps/api/src/middleware/error-handler.ts +23 -3
  30. package/apps/api/src/middleware/index.ts +2 -0
  31. package/apps/api/src/middleware/internal-auth.ts +40 -0
  32. package/apps/api/src/middleware/local-only.ts +20 -0
  33. package/apps/api/src/middleware/rate-limiter.ts +9 -0
  34. package/apps/api/src/modules/analytics/analytics.controller.ts +111 -0
  35. package/apps/api/src/modules/analytics/analytics.routes.ts +29 -0
  36. package/apps/api/src/modules/analytics/analytics.schema.ts +37 -0
  37. package/apps/api/src/modules/analytics/analytics.service.ts +264 -0
  38. package/apps/api/src/modules/auth/auth.routes.ts +233 -6
  39. package/apps/api/src/modules/billing/billing.routes.ts +8 -0
  40. package/apps/api/src/modules/cloud/cloud.controller.ts +225 -0
  41. package/apps/api/src/modules/cloud/cloud.routes.ts +40 -0
  42. package/apps/api/src/modules/deployments/build.service.ts +791 -0
  43. package/apps/api/src/modules/deployments/deployment-lifecycle.ts +138 -0
  44. package/apps/api/src/modules/deployments/deployment.controller.ts +324 -16
  45. package/apps/api/src/modules/deployments/deployment.routes.ts +33 -7
  46. package/apps/api/src/modules/deployments/deployment.schema.ts +37 -5
  47. package/apps/api/src/modules/deployments/deployment.service.ts +178 -11
  48. package/apps/api/src/modules/deployments/preflight.ts +280 -0
  49. package/apps/api/src/modules/deployments/prepare.service.ts +252 -0
  50. package/apps/api/src/modules/deployments/session-manager.ts +283 -0
  51. package/apps/api/src/modules/deployments/ssl.service.ts +73 -0
  52. package/apps/api/src/modules/domains/domain.controller.ts +59 -7
  53. package/apps/api/src/modules/domains/domain.routes.ts +20 -5
  54. package/apps/api/src/modules/domains/domain.schema.ts +35 -0
  55. package/apps/api/src/modules/domains/domain.service.ts +375 -9
  56. package/apps/api/src/modules/github/github.auth.ts +397 -0
  57. package/apps/api/src/modules/github/github.controller.ts +387 -0
  58. package/apps/api/src/modules/github/github.local-auth.ts +251 -0
  59. package/apps/api/src/modules/github/github.routes.ts +50 -0
  60. package/apps/api/src/modules/github/github.schema.ts +52 -0
  61. package/apps/api/src/modules/github/github.service.ts +592 -0
  62. package/apps/api/src/modules/github/github.types.ts +158 -0
  63. package/apps/api/src/modules/github/github.webhook.ts +186 -0
  64. package/apps/api/src/modules/github/index.ts +16 -0
  65. package/apps/api/src/modules/health/health.routes.ts +35 -0
  66. package/apps/api/src/modules/projects/project.controller.ts +481 -12
  67. package/apps/api/src/modules/projects/project.routes.ts +63 -6
  68. package/apps/api/src/modules/projects/project.schema.ts +104 -6
  69. package/apps/api/src/modules/projects/project.service.ts +502 -11
  70. package/apps/api/src/modules/settings/settings.controller.ts +55 -0
  71. package/apps/api/src/modules/settings/settings.routes.ts +25 -0
  72. package/apps/api/src/modules/settings/settings.service.ts +49 -0
  73. package/apps/api/src/modules/system/filesystem.controller.ts +66 -0
  74. package/apps/api/src/modules/system/index.ts +1 -0
  75. package/apps/api/src/modules/system/server-check.controller.ts +475 -0
  76. package/apps/api/src/modules/system/setup-session.ts +255 -0
  77. package/apps/api/src/modules/system/setup.controller.ts +128 -0
  78. package/apps/api/src/modules/system/system.routes.ts +42 -0
  79. package/apps/api/src/modules/webhooks/webhook.controller.ts +57 -15
  80. package/apps/api/src/modules/webhooks/webhook.routes.ts +11 -8
  81. package/apps/api/src/modules/webhooks/webhook.service.ts +46 -5
  82. package/apps/api/src/modules/webhooks/webhook.types.ts +35 -0
  83. package/apps/api/tsconfig.json +3 -1
  84. package/apps/cli/package.json +8 -10
  85. package/apps/cli/tsconfig.json +2 -1
  86. package/apps/dashboard/Dockerfile +4 -6
  87. package/apps/dashboard/components.json +20 -0
  88. package/apps/dashboard/next-env.d.ts +6 -0
  89. package/apps/dashboard/next.config.mjs +11 -1
  90. package/apps/dashboard/package.json +25 -13
  91. package/apps/dashboard/postcss.config.mjs +5 -0
  92. package/apps/dashboard/public/android-chrome-192x192.png +0 -0
  93. package/apps/dashboard/public/android-chrome-512x512.png +0 -0
  94. package/apps/dashboard/public/apple-touch-icon.png +0 -0
  95. package/apps/dashboard/public/favicon-16x16.png +0 -0
  96. package/apps/dashboard/public/favicon-32x32.png +0 -0
  97. package/apps/dashboard/public/favicon.ico +0 -0
  98. package/apps/dashboard/public/site.webmanifest +19 -0
  99. package/apps/dashboard/src/app/(auth)/forgot-password/page.tsx +114 -0
  100. package/apps/dashboard/src/app/(auth)/layout.tsx +18 -3
  101. package/apps/dashboard/src/app/(auth)/login/page.tsx +215 -6
  102. package/apps/dashboard/src/app/(auth)/providers.tsx +34 -0
  103. package/apps/dashboard/src/app/(auth)/register/page.tsx +171 -5
  104. package/apps/dashboard/src/app/(auth)/reset-password/page.tsx +172 -0
  105. package/apps/dashboard/src/app/(auth)/verify-email/page.tsx +190 -0
  106. package/apps/dashboard/src/app/(dashboard)/(deployment)/build/[id]/page.tsx +162 -0
  107. package/apps/dashboard/src/app/(dashboard)/(deployment)/deploy/[slug]/components/BuildSummary.tsx +166 -0
  108. package/apps/dashboard/src/app/(dashboard)/(deployment)/deploy/[slug]/components/DnsConfiguration.tsx +119 -0
  109. package/apps/dashboard/src/app/(dashboard)/(deployment)/deploy/[slug]/components/DomainSettings.tsx +291 -0
  110. package/apps/dashboard/src/app/(dashboard)/(deployment)/deploy/[slug]/components/Header.tsx +71 -0
  111. package/apps/dashboard/src/app/(dashboard)/(deployment)/deploy/[slug]/components/Sidebar.tsx +270 -0
  112. package/apps/dashboard/src/app/(dashboard)/(deployment)/deploy/[slug]/components/SkeletonLoader.tsx +87 -0
  113. package/apps/dashboard/src/app/(dashboard)/(deployment)/deploy/[slug]/page.tsx +169 -0
  114. package/apps/dashboard/src/app/(dashboard)/(deployment)/layout.tsx +7 -0
  115. package/apps/dashboard/src/app/(dashboard)/billing/page.tsx +1 -8
  116. package/apps/dashboard/src/app/(dashboard)/deployments/components/CommitDetailsModal.tsx +240 -0
  117. package/apps/dashboard/src/app/(dashboard)/deployments/components/DeploymentCard.tsx +121 -0
  118. package/apps/dashboard/src/app/(dashboard)/deployments/components/DeploymentHeader.tsx +89 -0
  119. package/apps/dashboard/src/app/(dashboard)/deployments/components/DeploymentMenu.tsx +182 -0
  120. package/apps/dashboard/src/app/(dashboard)/deployments/components/DeploymentsContent.tsx +324 -0
  121. package/apps/dashboard/src/app/(dashboard)/deployments/components/DeploymentsFilters.tsx +99 -0
  122. package/apps/dashboard/src/app/(dashboard)/deployments/components/DeploymentsList.tsx +31 -0
  123. package/apps/dashboard/src/app/(dashboard)/deployments/components/EmptyState.tsx +101 -0
  124. package/apps/dashboard/src/app/(dashboard)/deployments/components/LoadingSkeleton.tsx +57 -0
  125. package/apps/dashboard/src/app/(dashboard)/deployments/components/ProjectFilter.tsx +109 -0
  126. package/apps/dashboard/src/app/(dashboard)/deployments/components/index.ts +9 -0
  127. package/apps/dashboard/src/app/(dashboard)/deployments/page.tsx +9 -3
  128. package/apps/dashboard/src/app/(dashboard)/deployments/types.ts +44 -0
  129. package/apps/dashboard/src/app/(dashboard)/deployments/utils.ts +176 -0
  130. package/apps/dashboard/src/app/(dashboard)/domains/page.tsx +1 -6
  131. package/apps/dashboard/src/app/(dashboard)/integrations/page.tsx +321 -0
  132. package/apps/dashboard/src/app/(dashboard)/layout.tsx +22 -32
  133. package/apps/dashboard/src/app/(dashboard)/library/components/ConnectPrompt.tsx +187 -0
  134. package/apps/dashboard/src/app/(dashboard)/library/components/LibrarySidebar.tsx +147 -0
  135. package/apps/dashboard/src/app/(dashboard)/library/components/LoadingSkeleton.tsx +39 -0
  136. package/apps/dashboard/src/app/(dashboard)/library/components/LocalProjects.tsx +548 -0
  137. package/apps/dashboard/src/app/(dashboard)/library/components/RepositoryList.tsx +292 -0
  138. package/apps/dashboard/src/app/(dashboard)/library/components/TemplateGrid.tsx +36 -0
  139. package/apps/dashboard/src/app/(dashboard)/library/components/UrlImport.tsx +74 -0
  140. package/apps/dashboard/src/app/(dashboard)/library/page.tsx +121 -0
  141. package/apps/dashboard/src/app/(dashboard)/library/types.ts +26 -0
  142. package/apps/dashboard/src/app/(dashboard)/monitoring/page.tsx +1 -6
  143. package/apps/dashboard/src/app/(dashboard)/page.tsx +485 -0
  144. package/apps/dashboard/src/app/(dashboard)/projects/[id]/[[...slug]]/layout.tsx +22 -0
  145. package/apps/dashboard/src/app/(dashboard)/projects/[id]/[[...slug]]/page.tsx +286 -0
  146. package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/AdvancedSettings.tsx +235 -0
  147. package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/BuildSettings.tsx +174 -0
  148. package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/DeleteConfirmationDialog.tsx +45 -0
  149. package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/DeletionModal.tsx +95 -0
  150. package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/Deployments.tsx +11 -0
  151. package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/DomainSettings.tsx +523 -0
  152. package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/EnvironmentSettings.tsx +246 -0
  153. package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/GeneralSettings.tsx +93 -0
  154. package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/GitInfo.tsx +261 -0
  155. package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/GitSettings.tsx +391 -0
  156. package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/LogsSettings.tsx +133 -0
  157. package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/ProjectNotFound.tsx +95 -0
  158. package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/ProjectsBottomNavigation.tsx +62 -0
  159. package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/ResourceSettings.tsx +333 -0
  160. package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/SettingSection.tsx +66 -0
  161. package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/SettingsNavigation.tsx +27 -0
  162. package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/SleepModeSettings.tsx +134 -0
  163. package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/general/ProductionUrl.tsx +25 -0
  164. package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/general/ProjectIdentity.tsx +159 -0
  165. package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/general/ProjectInfo.tsx +58 -0
  166. package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/general/SkeletonLoader.tsx +170 -0
  167. package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/general/StatsCards.tsx +33 -0
  168. package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/general/TopPaths.tsx +56 -0
  169. package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/general/TrafficChart.tsx +157 -0
  170. package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/general/index.ts +14 -0
  171. package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/logs/LogsActions.tsx +52 -0
  172. package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/logs/ServerLogs.tsx +249 -0
  173. package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/logs/TerminalLogs.tsx +682 -0
  174. package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/logs/logs.css +127 -0
  175. package/apps/dashboard/src/app/(dashboard)/projects/components/DeploymentCard.tsx +73 -0
  176. package/apps/dashboard/src/app/(dashboard)/projects/components/ProjectCard.tsx +330 -0
  177. package/apps/dashboard/src/app/(dashboard)/projects/page.tsx +326 -4
  178. package/apps/dashboard/src/app/(dashboard)/providers.tsx +23 -0
  179. package/apps/dashboard/src/app/(dashboard)/servers/[serverId]/_components/components-tab.tsx +329 -0
  180. package/apps/dashboard/src/app/(dashboard)/servers/[serverId]/_components/overview-tab.tsx +229 -0
  181. package/apps/dashboard/src/app/(dashboard)/servers/[serverId]/_components/terminal-tab.tsx +38 -0
  182. package/apps/dashboard/src/app/(dashboard)/servers/[serverId]/page.tsx +437 -0
  183. package/apps/dashboard/src/app/(dashboard)/servers/new/_components/checking-state.tsx +15 -0
  184. package/apps/dashboard/src/app/(dashboard)/servers/new/_components/choose-mode.tsx +54 -0
  185. package/apps/dashboard/src/app/(dashboard)/servers/new/_components/component-row.tsx +65 -0
  186. package/apps/dashboard/src/app/(dashboard)/servers/new/_components/error-banner.tsx +13 -0
  187. package/apps/dashboard/src/app/(dashboard)/servers/new/_components/installing-panel.tsx +227 -0
  188. package/apps/dashboard/src/app/(dashboard)/servers/new/_components/results-panel.tsx +90 -0
  189. package/apps/dashboard/src/app/(dashboard)/servers/new/_components/setup-header.tsx +56 -0
  190. package/apps/dashboard/src/app/(dashboard)/servers/new/_components/types.ts +13 -0
  191. package/apps/dashboard/src/app/(dashboard)/servers/new/page.tsx +666 -0
  192. package/apps/dashboard/src/app/(dashboard)/servers/page.tsx +283 -0
  193. package/apps/dashboard/src/app/(dashboard)/settings/_components/BuildPreferences.tsx +110 -0
  194. package/apps/dashboard/src/app/(dashboard)/settings/_components/CloudConnection.tsx +147 -0
  195. package/apps/dashboard/src/app/(dashboard)/settings/_components/InstanceInfo.tsx +54 -0
  196. package/apps/dashboard/src/app/(dashboard)/settings/_components/ServerConnection.tsx +407 -0
  197. package/apps/dashboard/src/app/(dashboard)/settings/_components/SettingsSection.tsx +32 -0
  198. package/apps/dashboard/src/app/(dashboard)/settings/page.tsx +62 -3
  199. package/apps/dashboard/src/app/auth/callback/close/page.tsx +23 -0
  200. package/apps/dashboard/src/app/auth/callback/install/page.tsx +40 -0
  201. package/apps/dashboard/src/app/authorize/page.tsx +137 -0
  202. package/apps/dashboard/src/app/globals.css +57 -3
  203. package/apps/dashboard/src/app/layout.tsx +43 -3
  204. package/apps/dashboard/src/components/auth-shell.tsx +66 -0
  205. package/apps/dashboard/src/components/deployments/types.ts +44 -0
  206. package/apps/dashboard/src/components/global-deployments/index.ts +17 -0
  207. package/apps/dashboard/src/components/i18n-provider.tsx +100 -0
  208. package/apps/dashboard/src/components/import-project/BuildSettings.tsx +376 -0
  209. package/apps/dashboard/src/components/import-project/BuildSkeleton.tsx +161 -0
  210. package/apps/dashboard/src/components/import-project/BuildTerminal.tsx +358 -0
  211. package/apps/dashboard/src/components/import-project/ComposeServices.tsx +455 -0
  212. package/apps/dashboard/src/components/import-project/DeploymentProcessing.tsx +510 -0
  213. package/apps/dashboard/src/components/import-project/DockerSettings.tsx +64 -0
  214. package/apps/dashboard/src/components/import-project/EnvironmentVariables.tsx +481 -0
  215. package/apps/dashboard/src/components/import-project/Frameworks.tsx +90 -0
  216. package/apps/dashboard/src/components/import-project/ProjectSettings.tsx +160 -0
  217. package/apps/dashboard/src/components/import-project/types.ts +82 -0
  218. package/apps/dashboard/src/components/integrations/GithubPermissionModal.tsx +173 -0
  219. package/apps/dashboard/src/components/language-switcher.tsx +36 -0
  220. package/apps/dashboard/src/components/logo.tsx +13 -0
  221. package/apps/dashboard/src/components/network-error-handler.tsx +27 -0
  222. package/apps/dashboard/src/components/oauth-buttons.tsx +81 -0
  223. package/apps/dashboard/src/components/overview/ActivityChart.tsx +247 -0
  224. package/apps/dashboard/src/components/overview/ApiRequestsCard.tsx +111 -0
  225. package/apps/dashboard/src/components/overview/CreditsCard.tsx +137 -0
  226. package/apps/dashboard/src/components/overview/DeploymentsChart.tsx +195 -0
  227. package/apps/dashboard/src/components/overview/EmptyState.tsx +126 -0
  228. package/apps/dashboard/src/components/overview/LoadingSkeleton.tsx +92 -0
  229. package/apps/dashboard/src/components/overview/OverviewHeader.tsx +74 -0
  230. package/apps/dashboard/src/components/overview/OverviewHeroChart.tsx +344 -0
  231. package/apps/dashboard/src/components/overview/ProjectsCard.tsx +134 -0
  232. package/apps/dashboard/src/components/overview/QuickLinks.tsx +119 -0
  233. package/apps/dashboard/src/components/overview/SandboxesCard.tsx +150 -0
  234. package/apps/dashboard/src/components/overview/StatsGrid.tsx +166 -0
  235. package/apps/dashboard/src/components/overview/TokenUsageChart.tsx +206 -0
  236. package/apps/dashboard/src/components/overview/UsageStats.tsx +79 -0
  237. package/apps/dashboard/src/components/overview/index.ts +30 -0
  238. package/apps/dashboard/src/components/overview/types.ts +116 -0
  239. package/apps/dashboard/src/components/page-header.tsx +25 -0
  240. package/apps/dashboard/src/components/project-settings/ServerSideSwitch.jsx +60 -0
  241. package/apps/dashboard/src/components/shared/AlertBox.tsx +39 -0
  242. package/apps/dashboard/src/components/shared/CTASection.tsx +45 -0
  243. package/apps/dashboard/src/components/shared/ErrorState.tsx +176 -0
  244. package/apps/dashboard/src/components/shared/FeatureCard.tsx +20 -0
  245. package/apps/dashboard/src/components/shared/MDXComponents.tsx +24 -0
  246. package/apps/dashboard/src/components/shared/MachineSettingsModal.tsx +286 -0
  247. package/apps/dashboard/src/components/shared/Modal.tsx +39 -0
  248. package/apps/dashboard/src/components/shared/OTPInput.tsx +122 -0
  249. package/apps/dashboard/src/components/shared/PageHero.tsx +21 -0
  250. package/apps/dashboard/src/components/shared/PlatformFeatureCard.tsx +27 -0
  251. package/apps/dashboard/src/components/shared/StatCard.tsx +14 -0
  252. package/apps/dashboard/src/components/shared/ValueCard.tsx +20 -0
  253. package/apps/dashboard/src/components/shared/index.ts +8 -0
  254. package/apps/dashboard/src/components/sidebar.tsx +282 -0
  255. package/apps/dashboard/src/components/theme-provider.tsx +96 -0
  256. package/apps/dashboard/src/components/toast.tsx +106 -0
  257. package/apps/dashboard/src/components/ui/CustomCursor.tsx +107 -0
  258. package/apps/dashboard/src/components/ui/CustomSelect.tsx +126 -0
  259. package/apps/dashboard/src/components/ui/DropdownMenu.tsx +174 -0
  260. package/apps/dashboard/src/components/ui/FileIcon.jsx +59 -0
  261. package/apps/dashboard/src/components/ui/IconPickerModal.tsx +273 -0
  262. package/apps/dashboard/src/components/ui/InfoBanner.jsx +39 -0
  263. package/apps/dashboard/src/components/ui/Logo.tsx +14 -0
  264. package/apps/dashboard/src/components/ui/Modal.tsx +117 -0
  265. package/apps/dashboard/src/components/ui/PageContainer.tsx +12 -0
  266. package/apps/dashboard/src/components/ui/SectionContainer.jsx +7 -0
  267. package/apps/dashboard/src/components/ui/SlidingToggle.tsx +128 -0
  268. package/apps/dashboard/src/components/ui/Toast.tsx +29 -0
  269. package/apps/dashboard/src/components/ui/button.tsx +58 -0
  270. package/apps/dashboard/src/components/ui/card.tsx +60 -0
  271. package/apps/dashboard/src/components/ui/input.tsx +20 -0
  272. package/apps/dashboard/src/components/ui/label.tsx +19 -0
  273. package/apps/dashboard/src/components/ui/select.tsx +10 -0
  274. package/apps/dashboard/src/components/ui/textarea.tsx +9 -0
  275. package/apps/dashboard/src/constants/lang-colors.ts +25 -0
  276. package/apps/dashboard/src/constants/mock.ts +38 -0
  277. package/apps/dashboard/src/context/AuthContext.tsx +91 -0
  278. package/apps/dashboard/src/context/CloudContext.tsx +275 -0
  279. package/apps/dashboard/src/context/DeploymentContext.tsx +71 -0
  280. package/apps/dashboard/src/context/GitHubContext.tsx +288 -0
  281. package/apps/dashboard/src/context/ModalContext.tsx +300 -0
  282. package/apps/dashboard/src/context/NetworkContext.tsx +32 -0
  283. package/apps/dashboard/src/context/ProjectSettingsContext.tsx +727 -0
  284. package/apps/dashboard/src/context/ToastContext.tsx +129 -0
  285. package/apps/dashboard/src/context/deployment/index.ts +3 -0
  286. package/apps/dashboard/src/context/deployment/types.ts +183 -0
  287. package/apps/dashboard/src/context/deployment/useDeploymentBuild.ts +547 -0
  288. package/apps/dashboard/src/context/deployment/useDeploymentConfig.ts +176 -0
  289. package/apps/dashboard/src/hooks/useBuildConnection.ts +334 -0
  290. package/apps/dashboard/src/hooks/useMonitorStream.ts +146 -0
  291. package/apps/dashboard/src/hooks/useProjectData.ts +110 -0
  292. package/apps/dashboard/src/hooks/useSSEConnection.ts +465 -0
  293. package/apps/dashboard/src/hooks/useSSEStream.ts +309 -0
  294. package/apps/dashboard/src/hooks/useSessions.ts +104 -0
  295. package/apps/dashboard/src/hooks/useSetupStream.ts +223 -0
  296. package/apps/dashboard/src/i18n/dictionaries/ar.json +218 -0
  297. package/apps/dashboard/src/i18n/dictionaries/en.json +218 -0
  298. package/apps/dashboard/src/i18n/index.ts +16 -0
  299. package/apps/dashboard/src/lib/api/ai.ts +22 -0
  300. package/apps/dashboard/src/lib/api/auth.ts +13 -0
  301. package/apps/dashboard/src/lib/api/client.ts +199 -0
  302. package/apps/dashboard/src/lib/api/cloud.ts +15 -0
  303. package/apps/dashboard/src/lib/api/deploy.ts +58 -0
  304. package/apps/dashboard/src/lib/api/domains.ts +13 -0
  305. package/apps/dashboard/src/lib/api/endpoints.ts +129 -0
  306. package/apps/dashboard/src/lib/api/github.ts +31 -0
  307. package/apps/dashboard/src/lib/api/icons.ts +12 -0
  308. package/apps/dashboard/src/lib/api/index.ts +41 -0
  309. package/apps/dashboard/src/lib/api/projects.ts +153 -0
  310. package/apps/dashboard/src/lib/api/sandbox.ts +14 -0
  311. package/apps/dashboard/src/lib/api/settings.ts +21 -0
  312. package/apps/dashboard/src/lib/api/system.ts +159 -0
  313. package/apps/dashboard/src/lib/auth-client.ts +54 -0
  314. package/apps/dashboard/src/lib/country.ts +25 -0
  315. package/apps/dashboard/src/lib/server/api.ts +140 -0
  316. package/apps/dashboard/src/lib/server/session.ts +103 -0
  317. package/apps/dashboard/src/lib/sseClient.ts +241 -0
  318. package/apps/dashboard/src/lib/sseMessageProcessors.ts +323 -0
  319. package/apps/dashboard/src/lib/utils.ts +6 -0
  320. package/apps/dashboard/src/proxy.ts +46 -0
  321. package/apps/dashboard/src/styles/Toast.module.css +92 -0
  322. package/apps/dashboard/src/styles/fonts.css +93 -0
  323. package/apps/dashboard/src/styles/theme.css +336 -0
  324. package/apps/dashboard/src/types/research.ts +42 -0
  325. package/apps/dashboard/src/utils/SSEParser.js +150 -0
  326. package/apps/dashboard/src/utils/authWindow.ts +143 -0
  327. package/apps/dashboard/src/utils/codeTheme.ts +127 -0
  328. package/apps/dashboard/src/utils/colors.json +2810 -0
  329. package/apps/dashboard/src/utils/date.ts +121 -0
  330. package/apps/dashboard/src/utils/deployment.ts +128 -0
  331. package/apps/dashboard/src/utils/deploymentPhaseDetector.ts +232 -0
  332. package/apps/dashboard/src/utils/extToLang.js +103 -0
  333. package/apps/dashboard/src/utils/github.ts +62 -0
  334. package/apps/dashboard/src/utils/icons.js +46 -0
  335. package/apps/dashboard/src/utils/repoSlug.ts +110 -0
  336. package/apps/dashboard/src/utils/research-api.ts +163 -0
  337. package/apps/dashboard/src/utils/suggestions.ts +84 -0
  338. package/apps/dashboard/src/utils/theme.js +1 -0
  339. package/apps/dashboard/src/utils/ui-helpers.tsx +30 -0
  340. package/apps/dashboard/src/utils/upload.js +12 -0
  341. package/apps/dashboard/tsconfig.json +27 -5
  342. package/apps/desktop/forge.config.json +36 -0
  343. package/apps/desktop/package.json +26 -0
  344. package/apps/desktop/scripts/dev.mjs +58 -0
  345. package/apps/desktop/src/main/index.ts +675 -0
  346. package/apps/desktop/src/main/types/desktop.d.ts +33 -0
  347. package/apps/desktop/src/preload/index.ts +88 -0
  348. package/apps/desktop/src/renderer/index.html +462 -0
  349. package/apps/desktop/src/renderer/onboarding.js +511 -0
  350. package/apps/desktop/src/renderer/styles.css +1139 -0
  351. package/apps/desktop/tsconfig.json +17 -0
  352. package/apps/web/.source/browser.ts +13 -0
  353. package/apps/web/.source/dynamic.ts +8 -0
  354. package/apps/web/.source/server.ts +22 -0
  355. package/apps/web/.source/source.config.mjs +20 -0
  356. package/apps/web/Dockerfile +4 -6
  357. package/apps/web/content/blog/how-ai-builds-work.mdx +55 -0
  358. package/apps/web/content/blog/introducing-openship.mdx +46 -0
  359. package/apps/web/content/blog/self-hosting-cost-breakdown.mdx +59 -0
  360. package/apps/web/content/docs/_meta.json +14 -0
  361. package/apps/web/content/docs/api.mdx +98 -0
  362. package/apps/web/content/docs/cli.mdx +80 -0
  363. package/apps/web/content/docs/first-deployment.mdx +56 -0
  364. package/apps/web/content/docs/index.mdx +27 -0
  365. package/apps/web/content/docs/installation.mdx +65 -0
  366. package/apps/web/content/docs/quickstart.mdx +45 -0
  367. package/apps/web/next-env.d.ts +6 -0
  368. package/apps/web/next.config.mjs +16 -2
  369. package/apps/web/package.json +19 -12
  370. package/apps/web/postcss.config.mjs +5 -0
  371. package/apps/web/public/android-chrome-192x192.png +0 -0
  372. package/apps/web/public/android-chrome-512x512.png +0 -0
  373. package/apps/web/public/apple-touch-icon.png +0 -0
  374. package/apps/web/public/favicon-16x16.png +0 -0
  375. package/apps/web/public/favicon-32x32.png +0 -0
  376. package/apps/web/public/favicon.ico +0 -0
  377. package/apps/web/public/site.webmanifest +1 -0
  378. package/apps/web/source.config.ts +17 -0
  379. package/apps/web/src/app/(marketing)/layout.tsx +7 -22
  380. package/apps/web/src/app/blog/[...slug]/page.tsx +247 -0
  381. package/apps/web/src/app/blog/blog.css +575 -0
  382. package/apps/web/src/app/blog/layout.tsx +50 -0
  383. package/apps/web/src/app/blog/page.tsx +235 -0
  384. package/apps/web/src/app/docs/[[...slug]]/page.tsx +67 -0
  385. package/apps/web/src/app/docs/layout.tsx +62 -0
  386. package/apps/web/src/app/docs/toc-theme.css +71 -0
  387. package/apps/web/src/app/download/page.tsx +396 -0
  388. package/apps/web/src/app/globals.css +20 -3
  389. package/apps/web/src/app/layout.tsx +57 -3
  390. package/apps/web/src/app/page.tsx +47 -6
  391. package/apps/web/src/app/robots.ts +15 -0
  392. package/apps/web/src/app/sitemap.ts +35 -0
  393. package/apps/web/src/components/blog/share-sidebar.tsx +81 -0
  394. package/apps/web/src/components/blog/writer-sidebar.tsx +81 -0
  395. package/apps/web/src/components/landing/ai-native.tsx +169 -0
  396. package/apps/web/src/components/landing/backups.tsx +139 -0
  397. package/apps/web/src/components/landing/cdn.tsx +109 -0
  398. package/apps/web/src/components/landing/coming-soon.tsx +180 -0
  399. package/apps/web/src/components/landing/dark-section.tsx +166 -0
  400. package/apps/web/src/components/landing/dashboard.tsx +407 -0
  401. package/apps/web/src/components/landing/developer-experience.tsx +224 -0
  402. package/apps/web/src/components/landing/dns-domains.tsx +146 -0
  403. package/apps/web/src/components/landing/download-button.tsx +151 -0
  404. package/apps/web/src/components/landing/features/ai-visual.tsx +48 -0
  405. package/apps/web/src/components/landing/features/cloud-visual.tsx +44 -0
  406. package/apps/web/src/components/landing/features/git-visual.tsx +61 -0
  407. package/apps/web/src/components/landing/features/index.tsx +642 -0
  408. package/apps/web/src/components/landing/features/infra-visual.tsx +69 -0
  409. package/apps/web/src/components/landing/features/rollback-visual.tsx +42 -0
  410. package/apps/web/src/components/landing/features/ssl-visual.tsx +41 -0
  411. package/apps/web/src/components/landing/features/stacks-visual.tsx +54 -0
  412. package/apps/web/src/components/landing/final-cta.tsx +116 -0
  413. package/apps/web/src/components/landing/footer.tsx +145 -0
  414. package/apps/web/src/components/landing/hero.tsx +110 -0
  415. package/apps/web/src/components/landing/how-it-works.tsx +210 -0
  416. package/apps/web/src/components/landing/index.ts +21 -0
  417. package/apps/web/src/components/landing/mail-server.tsx +122 -0
  418. package/apps/web/src/components/landing/navbar.tsx +199 -0
  419. package/apps/web/src/components/landing/no-lockin.tsx +185 -0
  420. package/apps/web/src/components/landing/open-source-cta.tsx +151 -0
  421. package/apps/web/src/components/landing/portability.tsx +190 -0
  422. package/apps/web/src/components/landing/pricing.tsx +263 -0
  423. package/apps/web/src/components/landing/scaling.tsx +209 -0
  424. package/apps/web/src/components/landing/why-openship.tsx +291 -0
  425. package/apps/web/src/hooks/use-gsap-scroll.ts +158 -0
  426. package/apps/web/src/hooks/use-platform.ts +86 -0
  427. package/apps/web/src/lib/source.ts +12 -0
  428. package/apps/web/src/styles/fonts.css +84 -0
  429. package/apps/web/src/styles/landing.css +951 -0
  430. package/apps/web/src/styles/theme.css +227 -0
  431. package/apps/web/tsconfig.json +8 -3
  432. package/bun.lock +3260 -0
  433. package/docker-compose.yml +3 -0
  434. package/docs/screenshots/.gitkeep +0 -0
  435. package/docs/screenshots/screen.png +0 -0
  436. package/openship.code-workspace +7 -0
  437. package/package.json +23 -9
  438. package/packages/adapters/docs/ARCHITECTURE.md +160 -0
  439. package/packages/adapters/docs/BUILD-PIPELINE.md +171 -0
  440. package/packages/adapters/docs/CLOUD.md +239 -0
  441. package/packages/adapters/docs/EXECUTOR.md +174 -0
  442. package/packages/adapters/docs/LOG-STREAMING.md +175 -0
  443. package/packages/adapters/docs/SYSTEM.md +191 -0
  444. package/packages/adapters/package.json +14 -9
  445. package/packages/adapters/src/index.ts +144 -4
  446. package/packages/adapters/src/infra/cloud.ts +42 -0
  447. package/packages/adapters/src/infra/index.ts +9 -0
  448. package/packages/adapters/src/infra/noop.ts +27 -0
  449. package/packages/adapters/src/infra/traefik.ts +297 -0
  450. package/packages/adapters/src/infra/types.ts +36 -0
  451. package/packages/adapters/src/platform.ts +255 -0
  452. package/packages/adapters/src/runtime/bare.ts +567 -0
  453. package/packages/adapters/src/runtime/build-pipeline.ts +237 -0
  454. package/packages/adapters/src/runtime/cloud.ts +791 -0
  455. package/packages/adapters/src/runtime/deploy-pipeline.ts +146 -0
  456. package/packages/adapters/src/runtime/docker.ts +443 -0
  457. package/packages/adapters/src/runtime/index.ts +69 -0
  458. package/packages/adapters/src/runtime/local-build.ts +112 -0
  459. package/packages/adapters/src/runtime/transfer.ts +82 -0
  460. package/packages/adapters/src/runtime/types.ts +138 -0
  461. package/packages/adapters/src/system/catalog.ts +188 -0
  462. package/packages/adapters/src/system/checks.ts +228 -0
  463. package/packages/adapters/src/system/components.ts +45 -0
  464. package/packages/adapters/src/system/debug.ts +18 -0
  465. package/packages/adapters/src/system/environment.ts +168 -0
  466. package/packages/adapters/src/system/errors.ts +34 -0
  467. package/packages/adapters/src/system/executor.ts +600 -0
  468. package/packages/adapters/src/system/index.ts +58 -0
  469. package/packages/adapters/src/system/installer.ts +310 -0
  470. package/packages/adapters/src/system/setup.ts +442 -0
  471. package/packages/adapters/src/system/state.ts +96 -0
  472. package/packages/adapters/src/system/types.ts +116 -0
  473. package/packages/adapters/src/toolchain/catalog.ts +439 -0
  474. package/packages/adapters/src/toolchain/checks.ts +181 -0
  475. package/packages/adapters/src/toolchain/index.ts +38 -0
  476. package/packages/adapters/src/toolchain/installer.ts +189 -0
  477. package/packages/adapters/src/toolchain/types.ts +84 -0
  478. package/packages/adapters/src/types.ts +277 -0
  479. package/packages/adapters/tsconfig.json +3 -1
  480. package/packages/core/package.json +9 -9
  481. package/packages/core/src/constants.ts +44 -1
  482. package/packages/core/src/index.ts +2 -0
  483. package/packages/core/src/stacks.ts +778 -0
  484. package/packages/core/src/system.ts +111 -0
  485. package/packages/core/src/types.ts +22 -1
  486. package/packages/core/src/utils.ts +8 -0
  487. package/packages/core/tsconfig.json +3 -1
  488. package/packages/db/drizzle/0000_init.sql +231 -0
  489. package/packages/db/drizzle/0001_add_server_name.sql +1 -0
  490. package/packages/db/drizzle/meta/_journal.json +20 -0
  491. package/packages/db/drizzle.config.ts +10 -0
  492. package/packages/db/package.json +26 -14
  493. package/packages/db/src/client.ts +119 -0
  494. package/packages/db/src/index.ts +57 -8
  495. package/packages/db/src/repos/account.repo.ts +92 -0
  496. package/packages/db/src/repos/deployment.repo.ts +168 -0
  497. package/packages/db/src/repos/domain.repo.ts +102 -0
  498. package/packages/db/src/repos/git-installation.repo.ts +95 -0
  499. package/packages/db/src/repos/index.ts +43 -0
  500. package/packages/db/src/repos/instance-settings.repo.ts +43 -0
  501. package/packages/db/src/repos/project.repo.ts +159 -0
  502. package/packages/db/src/repos/session.repo.ts +82 -0
  503. package/packages/db/src/repos/settings.repo.ts +51 -0
  504. package/packages/db/src/repos/user.repo.ts +94 -0
  505. package/packages/db/src/schema/auth.ts +56 -0
  506. package/packages/db/src/schema/deployment.ts +87 -0
  507. package/packages/db/src/schema/domain.ts +46 -0
  508. package/packages/db/src/schema/github.ts +24 -0
  509. package/packages/db/src/schema/index.ts +6 -0
  510. package/packages/db/src/schema/project.ts +117 -0
  511. package/packages/db/src/schema/settings.ts +103 -0
  512. package/packages/db/tsconfig.json +3 -1
  513. package/packages/ui/package.json +17 -17
  514. package/packages/ui/src/components/status-dot.tsx +1 -1
  515. package/packages/ui/tsconfig.json +7 -2
  516. package/pnpm-workspace.yaml +0 -1
  517. package/{tooling/tsconfig/base.json → tsconfig.base.json} +0 -1
  518. package/turbo.json +4 -0
  519. package/apps/api/src/modules/auth/auth.controller.ts +0 -26
  520. package/apps/api/src/modules/auth/auth.schema.ts +0 -12
  521. package/apps/api/src/modules/auth/auth.service.ts +0 -23
  522. package/apps/dashboard/src/app/page.tsx +0 -6
  523. package/apps/web/src/app/(marketing)/docs/page.tsx +0 -10
  524. package/packages/adapters/src/base-adapter.ts +0 -49
  525. package/packages/adapters/src/docker-adapter.ts +0 -43
  526. package/packages/adapters/src/oblien-adapter.ts +0 -46
  527. package/packages/adapters/src/registry.ts +0 -22
  528. package/packages/db/prisma/schema.prisma +0 -160
  529. package/tooling/tsconfig/nextjs.json +0 -10
  530. package/tooling/tsconfig/node.json +0 -10
  531. package/tooling/tsconfig/package.json +0 -7
@@ -0,0 +1,407 @@
1
+ const CAPABILITIES = [
2
+ {
3
+ icon: (
4
+ <svg className="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={1.5}>
5
+ <path strokeLinecap="round" strokeLinejoin="round" d="M3.75 13.5l10.5-11.25L12 10.5h8.25L9.75 21.75 12 13.5H3.75z" />
6
+ </svg>
7
+ ),
8
+ title: "One-click deploys",
9
+ desc: "Push, preview, promote — all from a single screen.",
10
+ },
11
+ {
12
+ icon: (
13
+ <svg className="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={1.5}>
14
+ <path strokeLinecap="round" strokeLinejoin="round" d="M12 21a9.004 9.004 0 008.716-6.747M12 21a9.004 9.004 0 01-8.716-6.747M12 21c2.485 0 4.5-4.03 4.5-9S14.485 3 12 3m0 18c-2.485 0-4.5-4.03-4.5-9S9.515 3 12 3m0 0a8.997 8.997 0 017.843 4.582M12 3a8.997 8.997 0 00-7.843 4.582m15.686 0A11.953 11.953 0 0112 10.5c-2.998 0-5.74-1.1-7.843-2.918m15.686 0A8.959 8.959 0 0121 12c0 .778-.099 1.533-.284 2.253m0 0A17.919 17.919 0 0112 16.5c-3.162 0-6.133-.815-8.716-2.247m0 0A9.015 9.015 0 013 12c0-1.605.42-3.113 1.157-4.418" />
15
+ </svg>
16
+ ),
17
+ title: "Domains & SSL",
18
+ desc: "Add domains, wildcard certs auto-provision. Visual DNS status.",
19
+ },
20
+ {
21
+ icon: (
22
+ <svg className="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={1.5}>
23
+ <path strokeLinecap="round" strokeLinejoin="round" d="M3 13.125C3 12.504 3.504 12 4.125 12h2.25c.621 0 1.125.504 1.125 1.125v6.75C7.5 20.496 6.996 21 6.375 21h-2.25A1.125 1.125 0 013 19.875v-6.75zM9.75 8.625c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125v11.25c0 .621-.504 1.125-1.125 1.125h-2.25a1.125 1.125 0 01-1.125-1.125V8.625zM16.5 4.125c0-.621.504-1.125 1.125-1.125h2.25C20.496 3 21 3.504 21 4.125v15.75c0 .621-.504 1.125-1.125 1.125h-2.25a1.125 1.125 0 01-1.125-1.125V4.125z" />
24
+ </svg>
25
+ ),
26
+ title: "Real-time monitoring",
27
+ desc: "CPU, memory, network, build logs — live charts and streaming.",
28
+ },
29
+ {
30
+ icon: (
31
+ <svg className="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={1.5}>
32
+ <path strokeLinecap="round" strokeLinejoin="round" d="M20.25 6.375c0 2.278-3.694 4.125-8.25 4.125S3.75 8.653 3.75 6.375m16.5 0c0-2.278-3.694-4.125-8.25-4.125S3.75 4.097 3.75 6.375m16.5 0v11.25c0 2.278-3.694 4.125-8.25 4.125s-8.25-1.847-8.25-4.125V6.375m16.5 0v3.75m-16.5-3.75v3.75m16.5 0v3.75C20.25 16.153 16.556 18 12 18s-8.25-1.847-8.25-4.125v-3.75m16.5 0c0 2.278-3.694 4.125-8.25 4.125s-8.25-1.847-8.25-4.125" />
33
+ </svg>
34
+ ),
35
+ title: "Databases & services",
36
+ desc: "Spin up Postgres, Redis, or any Docker service. Visual management.",
37
+ },
38
+ {
39
+ icon: (
40
+ <svg className="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={1.5}>
41
+ <path strokeLinecap="round" strokeLinejoin="round" d="M16.023 9.348h4.992v-.001M2.985 19.644v-4.992m0 0h4.992m-4.993 0l3.181 3.183a8.25 8.25 0 0013.803-3.7M4.031 9.865a8.25 8.25 0 0113.803-3.7l3.181 3.182" />
42
+ </svg>
43
+ ),
44
+ title: "Backups & rollback",
45
+ desc: "Scheduled snapshots, one-click restore. Never lose a deployment.",
46
+ },
47
+ {
48
+ icon: (
49
+ <svg className="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={1.5}>
50
+ <path strokeLinecap="round" strokeLinejoin="round" d="M2.25 15a4.5 4.5 0 004.5 4.5H18a3.75 3.75 0 001.332-7.257 3 3 0 00-3.758-3.848 5.25 5.25 0 00-10.233 2.33A4.502 4.502 0 002.25 15z" />
51
+ </svg>
52
+ ),
53
+ title: "Auto-scale controls",
54
+ desc: "Toggle auto-scaling per project from the app. Visual resource graphs.",
55
+ },
56
+ ];
57
+
58
+ /* ── AI assistant capabilities ── */
59
+ const AI_FEATURES = [
60
+ {
61
+ icon: (
62
+ <svg className="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={1.5}>
63
+ <path strokeLinecap="round" strokeLinejoin="round" d="M9.813 15.904L9 18.75l-.813-2.846a4.5 4.5 0 00-3.09-3.09L2.25 12l2.846-.813a4.5 4.5 0 003.09-3.09L9 5.25l.813 2.846a4.5 4.5 0 003.09 3.09L15.75 12l-2.846.813a4.5 4.5 0 00-3.09 3.09zM18.259 8.715L18 9.75l-.259-1.035a3.375 3.375 0 00-2.455-2.456L14.25 6l1.036-.259a3.375 3.375 0 002.455-2.456L18 2.25l.259 1.035a3.375 3.375 0 002.455 2.456L21.75 6l-1.036.259a3.375 3.375 0 00-2.455 2.456z" />
64
+ </svg>
65
+ ),
66
+ title: "AI deploys for you",
67
+ desc: "Tell the AI what you want deployed and it handles repo connection, build config, environment variables, and domain setup — start to finish.",
68
+ },
69
+ {
70
+ icon: (
71
+ <svg className="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={1.5}>
72
+ <path strokeLinecap="round" strokeLinejoin="round" d="M9 12.75L11.25 15 15 9.75m-3-7.036A11.959 11.959 0 013.598 6 11.99 11.99 0 003 9.749c0 5.592 3.824 10.29 9 11.623 5.176-1.332 9-6.03 9-11.622 0-1.31-.21-2.571-.598-3.751h-.152c-3.196 0-6.1-1.248-8.25-3.285z" />
73
+ </svg>
74
+ ),
75
+ title: "Security fully configured",
76
+ desc: "Firewall rules, SSL, rate limiting, CORS, headers — the AI configures production-grade security by default. Disable anything you don't need with one toggle.",
77
+ },
78
+ {
79
+ icon: (
80
+ <svg className="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={1.5}>
81
+ <path strokeLinecap="round" strokeLinejoin="round" d="M11.42 15.17l-5.384-3.19A1.5 1.5 0 016 10.68V6.757a1.5 1.5 0 01.788-1.32l4.723-2.574a1.5 1.5 0 011.478 0l4.723 2.573a1.5 1.5 0 01.788 1.32v3.924a1.5 1.5 0 01-.036.301M11.42 15.17l4.543 2.69a1.5 1.5 0 001.478 0l4.723-2.573a1.5 1.5 0 00.788-1.32v-3.924a1.5 1.5 0 00-.788-1.32l-4.723-2.573a1.5 1.5 0 00-1.478 0L11.42 9.47m0 5.7v5.373m0 0l-4.723-2.574a1.5 1.5 0 01-.788-1.32v-3.923" />
82
+ </svg>
83
+ ),
84
+ title: "Zero-knowledge setup",
85
+ desc: "Don't know Docker, NGINX, or DNS? You don't need to. Describe your app in plain English and the AI sets up everything — databases, caching, domains, backups.",
86
+ },
87
+ {
88
+ icon: (
89
+ <svg className="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={1.5}>
90
+ <path strokeLinecap="round" strokeLinejoin="round" d="M12 9v3.75m0-10.036A11.959 11.959 0 013.598 6 11.99 11.99 0 003 9.75c0 5.592 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.31-.21-2.571-.598-3.75h-.152c-3.196 0-6.1-1.249-8.25-3.286zm0 13.036h.008v.008H12v-.008z" />
91
+ </svg>
92
+ ),
93
+ title: "Auto-diagnose & fix",
94
+ desc: "Build failed? AI reads the logs, identifies the issue, and applies the fix automatically. You approve or let it run hands-free.",
95
+ },
96
+ ];
97
+
98
+ export function Dashboard() {
99
+ return (
100
+ <section className="relative py-28 sm:py-36">
101
+ <div className="section-divider mx-auto mb-28 max-w-4xl sm:mb-36" />
102
+
103
+ <div className="mx-auto max-w-7xl px-6">
104
+ {/* ── Header ── */}
105
+ <div className="mx-auto max-w-3xl text-center">
106
+ <div className="mb-7 inline-flex items-center gap-2 rounded-full border border-[var(--th-on-06)] bg-white/60 px-4 py-1.5 shadow-[0_1px_3px_rgba(0,0,0,.04)] backdrop-blur-sm">
107
+ <span className="text-[12px] font-medium tracking-[0.02em] th-text-secondary">
108
+ The App
109
+ </span>
110
+ </div>
111
+ <h2>
112
+ <span className="block text-[clamp(2.75rem,6vw,4.75rem)] font-semibold leading-[1.06] tracking-[-0.035em] th-text-heading">
113
+ Full control.
114
+ </span>
115
+ <span
116
+ className="block text-[clamp(2.75rem,6vw,4.75rem)] font-semibold leading-[1.06] tracking-[-0.035em]"
117
+ style={{ color: "var(--th-on-40)" }}
118
+ >
119
+ One beautiful app.
120
+ </span>
121
+ </h2>
122
+ <p className="mx-auto mt-6 max-w-xl text-[17px] leading-[1.65] th-text-body">
123
+ Deployments, domains, databases, backups, scaling — manage your entire
124
+ infrastructure from one desktop app. No terminal, no YAML, no guesswork.
125
+ </p>
126
+ </div>
127
+
128
+ {/* ── Screenshot ── */}
129
+ <div className="mx-auto mt-14 max-w-6xl">
130
+ <div className="relative overflow-hidden rounded-2xl border border-[var(--th-card-bd)] bg-[var(--th-card-bg)] shadow-[0_8px_40px_rgba(0,0,0,.08)]">
131
+ {/* Fake browser chrome */}
132
+ <div className="flex items-center gap-2 border-b border-[var(--th-card-bd)] bg-[var(--th-sf-02)] px-4 py-2.5">
133
+ <div className="flex gap-1.5">
134
+ <div className="h-2.5 w-2.5 rounded-full" style={{ background: "var(--th-clr-terra)" }} />
135
+ <div className="h-2.5 w-2.5 rounded-full" style={{ background: "var(--th-clr-amber)" }} />
136
+ <div className="h-2.5 w-2.5 rounded-full" style={{ background: "var(--th-clr-sea)" }} />
137
+ </div>
138
+ <div className="ml-4 flex-1 rounded-md bg-[var(--th-sf-04)] px-3 py-1 text-[12px] th-text-muted">
139
+ Openship — Connected to 192.168.1.100
140
+ </div>
141
+ </div>
142
+
143
+ {/* Dashboard mockup content */}
144
+ <div className="grid grid-cols-[200px_1fr] min-h-[420px]">
145
+ {/* Sidebar */}
146
+ <div className="border-r border-[var(--th-card-bd)] bg-[var(--th-sf-01)] p-4">
147
+ <div className="mb-6 text-[14px] font-bold th-text-heading">Openship</div>
148
+ {["Projects", "Deployments", "Domains", "Databases", "Backups", "Settings"].map(
149
+ (item, i) => (
150
+ <div
151
+ key={item}
152
+ className="mb-1 rounded-lg px-3 py-2 text-[13px] font-medium transition-colors"
153
+ style={{
154
+ background: i === 0 ? "var(--th-sf-05)" : "transparent",
155
+ color:
156
+ i === 0
157
+ ? "var(--th-text-heading)"
158
+ : "var(--th-text-muted)",
159
+ }}
160
+ >
161
+ {item}
162
+ </div>
163
+ )
164
+ )}
165
+ </div>
166
+
167
+ {/* Main area */}
168
+ <div className="p-6">
169
+ <div className="mb-5 flex items-center justify-between">
170
+ <div className="text-[18px] font-bold th-text-heading">Projects</div>
171
+ <div className="rounded-lg px-3 py-1.5 text-[12px] font-semibold" style={{ background: "var(--th-btn-bg)", color: "var(--th-btn-text)" }}>
172
+ + New Project
173
+ </div>
174
+ </div>
175
+
176
+ {/* Project cards row */}
177
+ <div className="grid gap-3 sm:grid-cols-3">
178
+ {[
179
+ { name: "my-saas-app", status: "Live", framework: "Next.js", deploys: 42 },
180
+ { name: "api-service", status: "Live", framework: "Node.js", deploys: 18 },
181
+ { name: "landing-page", status: "Building", framework: "Astro", deploys: 7 },
182
+ ].map((p) => (
183
+ <div
184
+ key={p.name}
185
+ className="rounded-xl border border-[var(--th-card-bd)] bg-[var(--th-card-bg)] p-4"
186
+ >
187
+ <div className="flex items-center justify-between">
188
+ <span className="text-[14px] font-semibold th-text-heading">
189
+ {p.name}
190
+ </span>
191
+ <span
192
+ className="rounded-full px-2 py-0.5 text-[10px] font-bold uppercase"
193
+ style={{
194
+ background:
195
+ p.status === "Live"
196
+ ? "var(--th-clr-sea-wash)"
197
+ : "var(--th-clr-amber-wash)",
198
+ color:
199
+ p.status === "Live"
200
+ ? "var(--th-clr-sea)"
201
+ : "var(--th-text-secondary)",
202
+ }}
203
+ >
204
+ {p.status}
205
+ </span>
206
+ </div>
207
+ <div className="mt-2 text-[12px] th-text-muted">
208
+ {p.framework} · {p.deploys} deploys
209
+ </div>
210
+ {/* Mini bar chart */}
211
+ <div className="mt-3 flex items-end gap-px h-6">
212
+ {Array.from({ length: 12 }).map((_, j) => (
213
+ <div
214
+ key={j}
215
+ className="flex-1 rounded-sm"
216
+ style={{
217
+ height: `${20 + Math.sin(j * 0.8 + p.deploys) * 40 + 40}%`,
218
+ background:
219
+ p.status === "Live"
220
+ ? "var(--th-clr-sea-bg)"
221
+ : "var(--th-clr-amber-wash)",
222
+ }}
223
+ />
224
+ ))}
225
+ </div>
226
+ </div>
227
+ ))}
228
+ </div>
229
+
230
+ {/* Stats ribbon */}
231
+ <div className="mt-4 grid grid-cols-4 gap-3">
232
+ {[
233
+ { label: "Total deploys", val: "67" },
234
+ { label: "Active domains", val: "12" },
235
+ { label: "Uptime", val: "99.98%" },
236
+ { label: "Avg build", val: "34s" },
237
+ ].map((s) => (
238
+ <div
239
+ key={s.label}
240
+ className="rounded-lg border border-[var(--th-card-bd)] bg-[var(--th-sf-01)] p-3 text-center"
241
+ >
242
+ <div className="text-[18px] font-bold th-text-heading">
243
+ {s.val}
244
+ </div>
245
+ <div className="text-[11px] th-text-muted">{s.label}</div>
246
+ </div>
247
+ ))}
248
+ </div>
249
+ </div>
250
+ </div>
251
+ </div>
252
+ </div>
253
+
254
+ {/* ── Capability grid ── */}
255
+ <div className="mx-auto mt-14 grid max-w-6xl gap-4 sm:grid-cols-2 lg:grid-cols-3">
256
+ {CAPABILITIES.map((c) => (
257
+ <div
258
+ key={c.title}
259
+ className="group flex items-start gap-4 rounded-2xl border border-[var(--th-card-bd)] bg-[var(--th-card-bg)] p-5 shadow-[var(--th-card-shadow)] transition-colors hover:border-[var(--th-card-bd-hover)]"
260
+ >
261
+ <div
262
+ className="flex h-10 w-10 shrink-0 items-center justify-center rounded-xl"
263
+ style={{ background: "var(--th-clr-plum-bg)", color: "var(--th-clr-plum)" }}
264
+ >
265
+ {c.icon}
266
+ </div>
267
+ <div>
268
+ <h3 className="text-[15px] font-semibold th-text-heading">
269
+ {c.title}
270
+ </h3>
271
+ <p className="mt-1 text-[13px] leading-[1.55] th-text-body">
272
+ {c.desc}
273
+ </p>
274
+ </div>
275
+ </div>
276
+ ))}
277
+ </div>
278
+
279
+ {/* ── AI Assistant ── */}
280
+ <div className="mx-auto mt-20 max-w-6xl">
281
+ {/* Sub-heading */}
282
+ <div className="mx-auto mb-10 max-w-3xl text-center">
283
+ <div className="mb-5 inline-flex items-center gap-2 rounded-full border border-[var(--th-on-06)] bg-white/60 px-4 py-1.5 shadow-[0_1px_3px_rgba(0,0,0,.04)] backdrop-blur-sm">
284
+ <svg className="h-3.5 w-3.5 th-text-secondary" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={1.5}>
285
+ <path strokeLinecap="round" strokeLinejoin="round" d="M9.813 15.904L9 18.75l-.813-2.846a4.5 4.5 0 00-3.09-3.09L2.25 12l2.846-.813a4.5 4.5 0 003.09-3.09L9 5.25l.813 2.846a4.5 4.5 0 003.09 3.09L15.75 12l-2.846.813a4.5 4.5 0 00-3.09 3.09z" />
286
+ </svg>
287
+ <span className="text-[12px] font-medium tracking-[0.02em] th-text-secondary">
288
+ Built-in AI Assistant
289
+ </span>
290
+ </div>
291
+ <h3 className="text-[clamp(1.75rem,4vw,2.75rem)] font-semibold leading-[1.1] tracking-[-0.03em] th-text-heading">
292
+ Don&apos;t know how?{" "}
293
+ <span style={{ color: "var(--th-on-40)" }}>AI does it for you.</span>
294
+ </h3>
295
+ <p className="mx-auto mt-5 max-w-xl text-[16px] leading-[1.65] th-text-body">
296
+ An AI assistant lives inside the app. It can deploy apps, configure security,
297
+ set up databases, fix failed builds, and manage domains — all by just telling it what you want.
298
+ Zero DevOps knowledge required. Disable it anytime.
299
+ </p>
300
+ </div>
301
+
302
+ {/* AI Chat mockup */}
303
+ <div className="mx-auto max-w-4xl overflow-hidden rounded-2xl border border-[var(--th-card-bd)] bg-[var(--th-card-bg)] shadow-[0_8px_40px_rgba(0,0,0,.08)]">
304
+ {/* Chat header */}
305
+ <div className="flex items-center gap-3 border-b border-[var(--th-card-bd)] bg-[var(--th-sf-02)] px-5 py-3">
306
+ <div className="flex h-7 w-7 items-center justify-center rounded-lg" style={{ background: "var(--th-clr-plum-bg)", color: "var(--th-clr-plum)" }}>
307
+ <svg className="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={1.5}>
308
+ <path strokeLinecap="round" strokeLinejoin="round" d="M9.813 15.904L9 18.75l-.813-2.846a4.5 4.5 0 00-3.09-3.09L2.25 12l2.846-.813a4.5 4.5 0 003.09-3.09L9 5.25l.813 2.846a4.5 4.5 0 003.09 3.09L15.75 12l-2.846.813a4.5 4.5 0 00-3.09 3.09z" />
309
+ </svg>
310
+ </div>
311
+ <span className="text-[13px] font-semibold th-text-heading">Openship AI</span>
312
+ <span className="ml-auto flex items-center gap-1.5 text-[11px] font-medium" style={{ color: "var(--th-clr-sea)" }}>
313
+ <span className="h-1.5 w-1.5 rounded-full" style={{ background: "var(--th-clr-sea)" }} />
314
+ Online
315
+ </span>
316
+ </div>
317
+ {/* Chat messages */}
318
+ <div className="space-y-4 p-5">
319
+ {/* User message */}
320
+ <div className="flex justify-end">
321
+ <div className="max-w-[75%] rounded-2xl rounded-tr-md bg-[var(--th-sf-04)] px-4 py-2.5 text-[13px] leading-[1.6] th-text-heading">
322
+ Deploy my Next.js app from github.com/acme/store, set up Postgres, configure SSL for store.acme.com, and enable daily backups.
323
+ </div>
324
+ </div>
325
+ {/* AI response */}
326
+ <div className="flex justify-start">
327
+ <div className="max-w-[80%] space-y-3 rounded-2xl rounded-tl-md border border-[var(--th-card-bd)] bg-[var(--th-card-bg)] px-4 py-3 shadow-sm">
328
+ <div className="text-[13px] leading-[1.6] th-text-heading">
329
+ On it! Here&apos;s what I&apos;m setting up:
330
+ </div>
331
+ {[
332
+ { done: true, text: "Connected repo acme/store (Next.js detected)" },
333
+ { done: true, text: "Postgres 16 database provisioned" },
334
+ { done: true, text: "SSL wildcard cert issued for *.acme.com" },
335
+ { done: true, text: "Domain store.acme.com → project linked" },
336
+ { done: true, text: "Daily backup schedule enabled (03:00 UTC)" },
337
+ { done: true, text: "Security hardened — rate-limit, CORS, headers" },
338
+ { done: false, text: "Deploying to production…" },
339
+ ].map((step, i) => (
340
+ <div key={i} className="flex items-center gap-2 text-[12px]">
341
+ {step.done ? (
342
+ <svg className="h-3.5 w-3.5 shrink-0" style={{ color: "var(--th-clr-sea)" }} fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={2.5}>
343
+ <path strokeLinecap="round" strokeLinejoin="round" d="M4.5 12.75l6 6 9-13.5" />
344
+ </svg>
345
+ ) : (
346
+ <div
347
+ className="h-3.5 w-3.5 shrink-0 animate-spin rounded-full border-2 border-t-transparent"
348
+ style={{ borderColor: "var(--th-clr-plum)", borderTopColor: "transparent" }}
349
+ />
350
+ )}
351
+ <span className={step.done ? "th-text-body" : "font-medium th-text-heading"}>
352
+ {step.text}
353
+ </span>
354
+ </div>
355
+ ))}
356
+ </div>
357
+ </div>
358
+ </div>
359
+ {/* Input bar */}
360
+ <div className="border-t border-[var(--th-card-bd)] bg-[var(--th-sf-01)] px-5 py-3">
361
+ <div className="flex items-center gap-3 rounded-xl border border-[var(--th-card-bd)] bg-[var(--th-card-bg)] px-4 py-2.5">
362
+ <span className="flex-1 text-[13px] th-text-muted">Ask AI to deploy, configure, debug…</span>
363
+ <div className="flex h-7 w-7 items-center justify-center rounded-lg" style={{ background: "var(--th-btn-bg)", color: "var(--th-btn-text)" }}>
364
+ <svg className="h-3.5 w-3.5" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={2}>
365
+ <path strokeLinecap="round" strokeLinejoin="round" d="M6 12L3.269 3.126A59.768 59.768 0 0121.485 12 59.77 59.77 0 013.27 20.876L5.999 12zm0 0h7.5" />
366
+ </svg>
367
+ </div>
368
+ </div>
369
+ </div>
370
+ </div>
371
+
372
+ {/* AI Feature cards */}
373
+ <div className="mx-auto mt-10 grid max-w-6xl gap-4 sm:grid-cols-2">
374
+ {AI_FEATURES.map((f) => (
375
+ <div
376
+ key={f.title}
377
+ className="group relative flex items-start gap-4 overflow-hidden rounded-2xl border border-[var(--th-card-bd)] bg-[var(--th-card-bg)] p-6 shadow-[var(--th-card-shadow)] transition-colors hover:border-[var(--th-card-bd-hover)]"
378
+ >
379
+ {/* subtle blob */}
380
+ <div
381
+ className="pointer-events-none absolute -right-10 -top-10 h-[140px] w-[140px] rounded-full blur-[50px]"
382
+ style={{ background: "var(--th-clr-plum-blob)" }}
383
+ />
384
+ <div
385
+ className="relative flex h-10 w-10 shrink-0 items-center justify-center rounded-xl"
386
+ style={{ background: "var(--th-clr-plum-bg)", color: "var(--th-clr-plum)" }}
387
+ >
388
+ {f.icon}
389
+ </div>
390
+ <div className="relative">
391
+ <h4 className="text-[15px] font-semibold th-text-heading">{f.title}</h4>
392
+ <p className="mt-1.5 text-[13px] leading-[1.6] th-text-body">{f.desc}</p>
393
+ </div>
394
+ </div>
395
+ ))}
396
+ </div>
397
+
398
+ {/* Disable note */}
399
+ <p className="mx-auto mt-6 max-w-lg text-center text-[13px] leading-[1.6] th-text-muted">
400
+ AI is fully optional. Toggle it off in Settings &rarr; AI &amp; Automation.
401
+ Every action it takes is visible and reversible.
402
+ </p>
403
+ </div>
404
+ </div>
405
+ </section>
406
+ );
407
+ }
@@ -0,0 +1,224 @@
1
+ const TOOLS = [
2
+ {
3
+ tag: "CLI",
4
+ title: "Deploy from your terminal",
5
+ desc: "Full control without leaving the command line. Deploy, rollback, stream live logs, and manage domains — all with a single binary.",
6
+ icon: (
7
+ <svg className="h-[18px] w-[18px]" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={1.6}>
8
+ <path strokeLinecap="round" strokeLinejoin="round" d="M6.75 7.5l3 2.25-3 2.25m4.5 0h3m-9 8.25h13.5A2.25 2.25 0 0021 18V6a2.25 2.25 0 00-2.25-2.25H5.25A2.25 2.25 0 003 6v12a2.25 2.25 0 002.25 2.25z" />
9
+ </svg>
10
+ ),
11
+ chips: ["deploy", "logs --follow", "rollback", "domains"],
12
+ chipPrefix: "openship ",
13
+ blob: "var(--th-clr-plum-blob)",
14
+ code: [
15
+ { kind: "muted", text: "$" },
16
+ { text: " openship deploy " },
17
+ { kind: "muted", text: "--prod" },
18
+ { br: true },
19
+ { kind: "muted", text: "›" },
20
+ { text: " Detecting framework… " },
21
+ { kind: "ok", text: "Next.js" },
22
+ { br: true },
23
+ { kind: "muted", text: "›" },
24
+ { text: " Building… " },
25
+ { kind: "muted", text: "34s" },
26
+ { br: true },
27
+ { kind: "ok", text: "✓" },
28
+ { text: " Deployed to " },
29
+ { kind: "accent", text: "prod" },
30
+ ],
31
+ },
32
+ {
33
+ tag: "MCP",
34
+ title: "Let your AI agent deploy",
35
+ desc: "Native Model Context Protocol support. Give Cursor, Claude, or any AI assistant the ability to deploy, rollback, and monitor — without leaving the chat.",
36
+ icon: (
37
+ <svg className="h-[18px] w-[18px]" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={1.6}>
38
+ <path strokeLinecap="round" strokeLinejoin="round" d="M9.813 15.904L9 18.75l-.813-2.846a4.5 4.5 0 00-3.09-3.09L2.25 12l2.846-.813a4.5 4.5 0 003.09-3.09L9 5.25l.813 2.846a4.5 4.5 0 003.09 3.09L15.75 12l-2.846.813a4.5 4.5 0 00-3.09 3.09zM18.259 8.715L18 9.75l-.259-1.035a3.375 3.375 0 00-2.455-2.456L14.25 6l1.036-.259a3.375 3.375 0 002.455-2.456L18 2.25l.259 1.035a3.375 3.375 0 002.455 2.456L21.75 6l-1.036.259a3.375 3.375 0 00-2.455 2.456z" />
39
+ </svg>
40
+ ),
41
+ chips: ["deploy", "rollback", "logs", "status"],
42
+ chipPrefix: "mcp/",
43
+ blob: "var(--th-clr-terra-blob)",
44
+ code: [
45
+ { kind: "muted", text: "// Cursor — MCP tool call" },
46
+ { br: true },
47
+ { kind: "accent", text: "you" },
48
+ { kind: "muted", text: ": " },
49
+ { text: "deploy my-app to production" },
50
+ { br: true },
51
+ { kind: "accent", text: "cursor" },
52
+ { kind: "muted", text: ": calling " },
53
+ { kind: "ok", text: "openship/deploy" },
54
+ { text: "…" },
55
+ { br: true },
56
+ { kind: "ok", text: "✓" },
57
+ { text: " Live at " },
58
+ { kind: "accent", text: "my-app.example.com" },
59
+ ],
60
+ },
61
+ {
62
+ tag: "REST API",
63
+ title: "Automate everything",
64
+ desc: "A complete REST API for every action in the platform. Build CI/CD pipelines, custom dashboards, or integrate deployments directly into your own product.",
65
+ icon: (
66
+ <svg className="h-[18px] w-[18px]" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={1.6}>
67
+ <path strokeLinecap="round" strokeLinejoin="round" d="M17.25 6.75L22.5 12l-5.25 5.25m-10.5 0L1.5 12l5.25-5.25m7.5-3l-4.5 16.5" />
68
+ </svg>
69
+ ),
70
+ chips: ["/deployments", "/projects", "/domains", "/logs"],
71
+ chipPrefix: "",
72
+ blob: "var(--th-clr-sea-blob)",
73
+ code: [
74
+ { kind: "accent", text: "POST" },
75
+ { text: " /api/v1/deployments" },
76
+ { br: true },
77
+ { kind: "muted", text: "Authorization: Bearer ••••••" },
78
+ { br: true },
79
+ { kind: "muted", text: "{ " },
80
+ { kind: "accent", text: '"project"' },
81
+ { kind: "muted", text: ": " },
82
+ { kind: "ok", text: '"my-app"' },
83
+ { kind: "muted", text: " }" },
84
+ { br: true },
85
+ { kind: "ok", text: "201" },
86
+ { kind: "muted", text: ' { id: "dep_01J…" }' },
87
+ ],
88
+ },
89
+ ];
90
+
91
+ const C = {
92
+ ok: "var(--th-clr-sea)",
93
+ accent: "var(--th-on-70, rgba(45,52,54,.70))",
94
+ muted: "var(--th-on-25, rgba(45,52,54,.25))",
95
+ dot: "var(--th-on-10, rgba(45,52,54,.10))",
96
+ bg: "var(--th-on-04, rgba(45,52,54,.04))",
97
+ bd: "var(--th-on-06, rgba(45,52,54,.06))",
98
+ };
99
+
100
+ function CodeLine({ tokens }: { tokens: typeof TOOLS[number]["code"] }) {
101
+ return (
102
+ <div className="font-mono text-[13px] leading-[1.7]">
103
+ {tokens.map((t, i) =>
104
+ "br" in t ? (
105
+ <br key={i} />
106
+ ) : (
107
+ <span
108
+ key={i}
109
+ style={{
110
+ color:
111
+ t.kind === "ok"
112
+ ? C.ok
113
+ : t.kind === "accent"
114
+ ? C.accent
115
+ : t.kind === "muted"
116
+ ? C.muted
117
+ : "rgba(45,52,54,.55)",
118
+ }}
119
+ >
120
+ {t.text}
121
+ </span>
122
+ )
123
+ )}
124
+ </div>
125
+ );
126
+ }
127
+
128
+ export function DeveloperExperience() {
129
+ return (
130
+ <section className="relative py-28 sm:py-36">
131
+ {/* Divider */}
132
+ <div className="section-divider mx-auto mb-28 max-w-4xl sm:mb-36" />
133
+
134
+ <div className="mx-auto max-w-7xl px-6">
135
+ {/* Header */}
136
+ <div className="grid gap-10 lg:grid-cols-[1fr_auto] lg:items-end">
137
+ <div>
138
+ <div className="mb-7 inline-flex items-center gap-2 rounded-full border border-[var(--th-on-06)] bg-white/60 px-4 py-1.5 shadow-[0_1px_3px_rgba(0,0,0,.04)] backdrop-blur-sm">
139
+ <span className="text-[12px] font-medium tracking-[0.02em] th-text-secondary">
140
+ Developer Experience
141
+ </span>
142
+ </div>
143
+ <h2>
144
+ <span className="block text-[clamp(2.75rem,6vw,4.75rem)] font-semibold leading-[1.06] tracking-[-0.035em] th-text-heading">
145
+ App first.
146
+ </span>
147
+ <span
148
+ className="block text-[clamp(2.75rem,6vw,4.75rem)] font-semibold leading-[1.06] tracking-[-0.035em]"
149
+ style={{ color: "var(--th-on-40)" }}
150
+ >
151
+ CLI when you want it.
152
+ </span>
153
+ </h2>
154
+ </div>
155
+ <p className="max-w-[340px] text-[16px] leading-[1.65] th-text-body lg:mb-1">
156
+ The app handles everything visually. CLI, MCP, and REST API
157
+ are there for developers who want deeper control.
158
+ </p>
159
+ </div>
160
+
161
+ {/* Cards */}
162
+ <div className="mt-16 grid gap-4 lg:grid-cols-3">
163
+ {TOOLS.map((t) => (
164
+ <div
165
+ key={t.tag}
166
+ className="relative flex flex-col overflow-hidden rounded-2xl border border-[var(--th-card-bd)] bg-[var(--th-card-bg)] shadow-[var(--th-card-shadow)] transition-[border-color,box-shadow] duration-200 hover:border-[var(--th-card-bd-hover)] hover:shadow-[0_4px_12px_rgba(0,0,0,.06)]"
167
+ >
168
+ {/* Ambient blob */}
169
+ <div
170
+ className="pointer-events-none absolute -top-12 -right-12 h-[180px] w-[180px] rounded-full blur-[60px]"
171
+ style={{ background: t.blob }}
172
+ aria-hidden="true"
173
+ />
174
+ {/* Top: text */}
175
+ <div className="relative flex flex-col gap-4 p-7 pb-5">
176
+ <div className="flex items-center gap-3">
177
+ <span className="flex h-9 w-9 items-center justify-center rounded-xl border border-[var(--th-card-bd)] th-text-secondary">
178
+ {t.icon}
179
+ </span>
180
+ <span className="text-[11px] font-semibold uppercase tracking-[0.12em] th-text-muted">
181
+ {t.tag}
182
+ </span>
183
+ </div>
184
+ <h3 className="text-[20px] font-semibold tracking-[-0.02em] th-text-heading">
185
+ {t.title}
186
+ </h3>
187
+ <p className="text-[14px] leading-[1.65] th-text-body">
188
+ {t.desc}
189
+ </p>
190
+ <div className="flex flex-wrap gap-2">
191
+ {t.chips.map((c) => (
192
+ <code
193
+ key={c}
194
+ className="rounded-md border border-[var(--th-card-bd)] bg-[var(--th-bg-subtle,rgba(0,0,0,.03))] px-2.5 py-1 text-[12px] font-mono th-text-secondary"
195
+ >
196
+ {t.chipPrefix}{c}
197
+ </code>
198
+ ))}
199
+ </div>
200
+ </div>
201
+
202
+ {/* Bottom: light code block */}
203
+ <div className="mt-auto border-t border-[var(--th-card-bd)]">
204
+ {/* Dot bar */}
205
+ <div className="flex items-center gap-1.5 px-5 pt-3.5">
206
+ {[0, 1, 2].map((i) => (
207
+ <span
208
+ key={i}
209
+ className="h-[7px] w-[7px] rounded-full"
210
+ style={{ background: C.dot }}
211
+ />
212
+ ))}
213
+ </div>
214
+ <div className="px-5 py-4">
215
+ <CodeLine tokens={t.code} />
216
+ </div>
217
+ </div>
218
+ </div>
219
+ ))}
220
+ </div>
221
+ </div>
222
+ </section>
223
+ );
224
+ }