claudeship 0.2.12 → 0.2.15

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 (128) hide show
  1. package/README.md +18 -0
  2. package/apps/server/dist/app.module.js +10 -0
  3. package/apps/server/dist/app.module.js.map +1 -1
  4. package/apps/server/dist/chat/prompts/fullstack-express-prompt.d.ts +1 -1
  5. package/apps/server/dist/chat/prompts/fullstack-express-prompt.js +109 -1
  6. package/apps/server/dist/chat/prompts/fullstack-express-prompt.js.map +1 -1
  7. package/apps/server/dist/chat/prompts/fullstack-fastapi-prompt.d.ts +1 -1
  8. package/apps/server/dist/chat/prompts/fullstack-fastapi-prompt.js +109 -1
  9. package/apps/server/dist/chat/prompts/fullstack-fastapi-prompt.js.map +1 -1
  10. package/apps/server/dist/chat/prompts/web-system-prompt.d.ts +1 -1
  11. package/apps/server/dist/chat/prompts/web-system-prompt.js +156 -0
  12. package/apps/server/dist/chat/prompts/web-system-prompt.js.map +1 -1
  13. package/apps/server/dist/checkpoint/checkpoint.controller.d.ts +19 -0
  14. package/apps/server/dist/checkpoint/checkpoint.controller.js +93 -0
  15. package/apps/server/dist/checkpoint/checkpoint.controller.js.map +1 -0
  16. package/apps/server/dist/checkpoint/checkpoint.module.d.ts +2 -0
  17. package/apps/server/dist/checkpoint/checkpoint.module.js +25 -0
  18. package/apps/server/dist/checkpoint/checkpoint.module.js.map +1 -0
  19. package/apps/server/dist/checkpoint/checkpoint.service.d.ts +41 -0
  20. package/apps/server/dist/checkpoint/checkpoint.service.js +261 -0
  21. package/apps/server/dist/checkpoint/checkpoint.service.js.map +1 -0
  22. package/apps/server/dist/database/database.controller.d.ts +23 -0
  23. package/apps/server/dist/database/database.controller.js +109 -0
  24. package/apps/server/dist/database/database.controller.js.map +1 -0
  25. package/apps/server/dist/database/database.module.d.ts +2 -0
  26. package/apps/server/dist/database/database.module.js +25 -0
  27. package/apps/server/dist/database/database.module.js.map +1 -0
  28. package/apps/server/dist/database/database.service.d.ts +32 -0
  29. package/apps/server/dist/database/database.service.js +238 -0
  30. package/apps/server/dist/database/database.service.js.map +1 -0
  31. package/apps/server/dist/env/env.controller.d.ts +14 -0
  32. package/apps/server/dist/env/env.controller.js +84 -0
  33. package/apps/server/dist/env/env.controller.js.map +1 -0
  34. package/apps/server/dist/env/env.module.d.ts +2 -0
  35. package/apps/server/dist/env/env.module.js +25 -0
  36. package/apps/server/dist/env/env.module.js.map +1 -0
  37. package/apps/server/dist/env/env.service.d.ts +21 -0
  38. package/apps/server/dist/env/env.service.js +194 -0
  39. package/apps/server/dist/env/env.service.js.map +1 -0
  40. package/apps/server/dist/preview/preview.controller.d.ts +5 -0
  41. package/apps/server/dist/preview/preview.controller.js +41 -0
  42. package/apps/server/dist/preview/preview.controller.js.map +1 -1
  43. package/apps/server/dist/preview/preview.service.d.ts +20 -0
  44. package/apps/server/dist/preview/preview.service.js +51 -2
  45. package/apps/server/dist/preview/preview.service.js.map +1 -1
  46. package/apps/server/dist/project/project.controller.d.ts +10 -1
  47. package/apps/server/dist/project/project.controller.js +57 -0
  48. package/apps/server/dist/project/project.controller.js.map +1 -1
  49. package/apps/server/dist/project/project.service.d.ts +15 -0
  50. package/apps/server/dist/project/project.service.js +111 -0
  51. package/apps/server/dist/project/project.service.js.map +1 -1
  52. package/apps/server/dist/project-context/project-context.controller.d.ts +42 -0
  53. package/apps/server/dist/project-context/project-context.controller.js +127 -0
  54. package/apps/server/dist/project-context/project-context.controller.js.map +1 -0
  55. package/apps/server/dist/project-context/project-context.module.d.ts +2 -0
  56. package/apps/server/dist/project-context/project-context.module.js +25 -0
  57. package/apps/server/dist/project-context/project-context.module.js.map +1 -0
  58. package/apps/server/dist/project-context/project-context.service.d.ts +36 -0
  59. package/apps/server/dist/project-context/project-context.service.js +260 -0
  60. package/apps/server/dist/project-context/project-context.service.js.map +1 -0
  61. package/apps/server/dist/testing/testing.controller.d.ts +24 -0
  62. package/apps/server/dist/testing/testing.controller.js +126 -0
  63. package/apps/server/dist/testing/testing.controller.js.map +1 -0
  64. package/apps/server/dist/testing/testing.module.d.ts +2 -0
  65. package/apps/server/dist/testing/testing.module.js +26 -0
  66. package/apps/server/dist/testing/testing.module.js.map +1 -0
  67. package/apps/server/dist/testing/testing.service.d.ts +62 -0
  68. package/apps/server/dist/testing/testing.service.js +269 -0
  69. package/apps/server/dist/testing/testing.service.js.map +1 -0
  70. package/apps/server/dist/tsconfig.tsbuildinfo +1 -1
  71. package/apps/server/package.json +1 -1
  72. package/apps/web/.next/BUILD_ID +1 -1
  73. package/apps/web/.next/app-build-manifest.json +5 -5
  74. package/apps/web/.next/build-manifest.json +2 -2
  75. package/apps/web/.next/cache/.previewinfo +1 -1
  76. package/apps/web/.next/cache/.rscinfo +1 -1
  77. package/apps/web/.next/cache/.tsbuildinfo +1 -1
  78. package/apps/web/.next/cache/config.json +3 -3
  79. package/apps/web/.next/cache/eslint/.cache_j3uhuz +1 -1
  80. package/apps/web/.next/cache/webpack/client-production/0.pack +0 -0
  81. package/apps/web/.next/cache/webpack/client-production/index.pack +0 -0
  82. package/apps/web/.next/cache/webpack/edge-server-production/index.pack +0 -0
  83. package/apps/web/.next/cache/webpack/server-production/0.pack +0 -0
  84. package/apps/web/.next/cache/webpack/server-production/index.pack +0 -0
  85. package/apps/web/.next/prerender-manifest.json +10 -10
  86. package/apps/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  87. package/apps/web/.next/server/app/_not-found.html +1 -1
  88. package/apps/web/.next/server/app/_not-found.rsc +2 -2
  89. package/apps/web/.next/server/app/index.html +1 -1
  90. package/apps/web/.next/server/app/index.rsc +3 -3
  91. package/apps/web/.next/server/app/page.js +2 -2
  92. package/apps/web/.next/server/app/page_client-reference-manifest.js +1 -1
  93. package/apps/web/.next/server/app/project/[id]/page.js +2 -2
  94. package/apps/web/.next/server/app/project/[id]/page_client-reference-manifest.js +1 -1
  95. package/apps/web/.next/server/app/settings/page_client-reference-manifest.js +1 -1
  96. package/apps/web/.next/server/app/settings.html +1 -1
  97. package/apps/web/.next/server/app/settings.rsc +3 -3
  98. package/apps/web/.next/server/chunks/392.js +1 -1
  99. package/apps/web/.next/server/pages/404.html +1 -1
  100. package/apps/web/.next/server/pages/500.html +1 -1
  101. package/apps/web/.next/server/server-reference-manifest.json +1 -1
  102. package/apps/web/.next/static/chunks/574-1fe2bcd6cfb41646.js +1 -0
  103. package/apps/web/.next/static/chunks/app/page-f19cfa58541ca83d.js +1 -0
  104. package/apps/web/.next/static/chunks/app/project/[id]/page-dffaa1d02f012216.js +1 -0
  105. package/apps/web/.next/static/chunks/app/settings/page-d1318c2fd58729a5.js +1 -0
  106. package/apps/web/.next/static/css/0a24552d9794f8c8.css +3 -0
  107. package/apps/web/.next/trace +18 -17
  108. package/apps/web/node_modules/.bin/eslint +2 -2
  109. package/apps/web/package.json +2 -1
  110. package/apps/web/src/components/checkpoint/CheckpointPanel.tsx +384 -0
  111. package/apps/web/src/components/database/DatabasePanel.tsx +405 -0
  112. package/apps/web/src/components/env/EnvPanel.tsx +356 -0
  113. package/apps/web/src/components/preview/ConsoleViewer.tsx +270 -0
  114. package/apps/web/src/components/preview/ErrorOverlay.tsx +189 -0
  115. package/apps/web/src/components/preview/PreviewPanel.tsx +148 -6
  116. package/apps/web/src/components/testing/TestRunner.tsx +481 -0
  117. package/apps/web/src/components/ui/tabs.tsx +55 -0
  118. package/apps/web/src/components/visual-editor/VisualEditor.tsx +382 -0
  119. package/apps/web/src/components/workspace/WorkspaceLayout.tsx +66 -4
  120. package/apps/web/src/lib/api.ts +5 -2
  121. package/package.json +1 -1
  122. package/apps/web/.next/static/chunks/298-6f3d6b321c288cd3.js +0 -1
  123. package/apps/web/.next/static/chunks/app/page-3d093f7f480a8599.js +0 -1
  124. package/apps/web/.next/static/chunks/app/project/[id]/page-e5cda6f9050b0a52.js +0 -1
  125. package/apps/web/.next/static/chunks/app/settings/page-92d28565c3d8c755.js +0 -1
  126. package/apps/web/.next/static/css/8f946046a2047594.css +0 -3
  127. /package/apps/web/.next/static/{aXT20mSdxaem1-z8VH2F1 → mkY_TTl_ho_ehDKiX10AN}/_buildManifest.js +0 -0
  128. /package/apps/web/.next/static/{aXT20mSdxaem1-z8VH2F1 → mkY_TTl_ho_ehDKiX10AN}/_ssgManifest.js +0 -0
@@ -1 +1 @@
1
- globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/project/[id]/page"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"476":{"*":{"id":"1400","name":"*","chunks":[],"async":false}},"496":{"*":{"id":"7934","name":"*","chunks":[],"async":false}},"882":{"*":{"id":"4406","name":"*","chunks":[],"async":false}},"1684":{"*":{"id":"9494","name":"*","chunks":[],"async":false}},"2207":{"*":{"id":"3927","name":"*","chunks":[],"async":false}},"3597":{"*":{"id":"7735","name":"*","chunks":[],"async":false}},"3609":{"*":{"id":"5897","name":"*","chunks":[],"async":false}},"3701":{"*":{"id":"2317","name":"*","chunks":[],"async":false}},"3737":{"*":{"id":"9671","name":"*","chunks":[],"async":false}},"4989":{"*":{"id":"4937","name":"*","chunks":[],"async":false}},"5965":{"*":{"id":"6719","name":"*","chunks":[],"async":false}},"7275":{"*":{"id":"5091","name":"*","chunks":[],"async":false}},"8009":{"*":{"id":"8247","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/builtin/global-error.js":{"id":2207,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":2207,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/client-page.js":{"id":1684,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/esm/client/components/client-page.js":{"id":1684,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/client-segment.js":{"id":476,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/esm/client/components/client-segment.js":{"id":476,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":3597,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":3597,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/layout-router.js":{"id":5965,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/esm/client/components/layout-router.js":{"id":5965,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/metadata/async-metadata.js":{"id":3737,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/esm/client/components/metadata/async-metadata.js":{"id":3737,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/render-from-template-context.js":{"id":3609,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":3609,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/framework/boundary-components.js":{"id":496,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":496,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":8009,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":8009,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/DevErrorRecovery.tsx":{"id":4989,"name":"*","chunks":["177","static/chunks/app/layout-2079789d2a8cf3e0.js"],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist\",\"arguments\":[{\"variable\":\"--font-geist-sans\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistSans\"}":{"id":5016,"name":"*","chunks":["177","static/chunks/app/layout-2079789d2a8cf3e0.js"],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist_Mono\",\"arguments\":[{\"variable\":\"--font-geist-mono\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistMono\"}":{"id":2872,"name":"*","chunks":["177","static/chunks/app/layout-2079789d2a8cf3e0.js"],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/globals.css":{"id":8183,"name":"*","chunks":["177","static/chunks/app/layout-2079789d2a8cf3e0.js"],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/page.tsx":{"id":882,"name":"*","chunks":["992","static/chunks/992-806bad722ba16222.js","974","static/chunks/app/page-3d093f7f480a8599.js"],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/project/[id]/page.tsx":{"id":7275,"name":"*","chunks":["992","static/chunks/992-806bad722ba16222.js","298","static/chunks/298-6f3d6b321c288cd3.js","78","static/chunks/app/project/%5Bid%5D/page-e5cda6f9050b0a52.js"],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/settings/page.tsx":{"id":3701,"name":"*","chunks":[],"async":false}},"entryCSSFiles":{"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/":[],"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/layout":[{"inlined":false,"path":"static/css/8f946046a2047594.css"}],"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/page":[],"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/project/[id]/page":[]},"rscModuleMapping":{"476":{"*":{"id":"8662","name":"*","chunks":[],"async":false}},"496":{"*":{"id":"400","name":"*","chunks":[],"async":false}},"882":{"*":{"id":"6479","name":"*","chunks":[],"async":false}},"1684":{"*":{"id":"9296","name":"*","chunks":[],"async":false}},"2207":{"*":{"id":"1865","name":"*","chunks":[],"async":false}},"3597":{"*":{"id":"6145","name":"*","chunks":[],"async":false}},"3609":{"*":{"id":"8791","name":"*","chunks":[],"async":false}},"3701":{"*":{"id":"2527","name":"*","chunks":[],"async":false}},"3737":{"*":{"id":"3741","name":"*","chunks":[],"async":false}},"4989":{"*":{"id":"7619","name":"*","chunks":[],"async":false}},"5965":{"*":{"id":"1461","name":"*","chunks":[],"async":false}},"7275":{"*":{"id":"2983","name":"*","chunks":[],"async":false}},"8009":{"*":{"id":"941","name":"*","chunks":[],"async":false}},"8183":{"*":{"id":"414","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{"476":{"*":{"id":"1400","name":"*","chunks":[],"async":false}},"496":{"*":{"id":"7934","name":"*","chunks":[],"async":false}},"1684":{"*":{"id":"9494","name":"*","chunks":[],"async":false}},"2207":{"*":{"id":"3927","name":"*","chunks":[],"async":false}},"3597":{"*":{"id":"7735","name":"*","chunks":[],"async":false}},"3609":{"*":{"id":"5897","name":"*","chunks":[],"async":false}},"3737":{"*":{"id":"9671","name":"*","chunks":[],"async":false}},"5965":{"*":{"id":"6719","name":"*","chunks":[],"async":false}},"8009":{"*":{"id":"8247","name":"*","chunks":[],"async":false}}}}
1
+ globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/project/[id]/page"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"476":{"*":{"id":"1400","name":"*","chunks":[],"async":false}},"496":{"*":{"id":"7934","name":"*","chunks":[],"async":false}},"959":{"*":{"id":"3769","name":"*","chunks":[],"async":false}},"1684":{"*":{"id":"9494","name":"*","chunks":[],"async":false}},"2207":{"*":{"id":"3927","name":"*","chunks":[],"async":false}},"3597":{"*":{"id":"7735","name":"*","chunks":[],"async":false}},"3609":{"*":{"id":"5897","name":"*","chunks":[],"async":false}},"3701":{"*":{"id":"2317","name":"*","chunks":[],"async":false}},"3737":{"*":{"id":"9671","name":"*","chunks":[],"async":false}},"4989":{"*":{"id":"4937","name":"*","chunks":[],"async":false}},"5965":{"*":{"id":"6719","name":"*","chunks":[],"async":false}},"8009":{"*":{"id":"8247","name":"*","chunks":[],"async":false}},"8028":{"*":{"id":"4224","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/builtin/global-error.js":{"id":2207,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":2207,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/client-page.js":{"id":1684,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/esm/client/components/client-page.js":{"id":1684,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/client-segment.js":{"id":476,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/esm/client/components/client-segment.js":{"id":476,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":3597,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":3597,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/layout-router.js":{"id":5965,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/esm/client/components/layout-router.js":{"id":5965,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/metadata/async-metadata.js":{"id":3737,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/esm/client/components/metadata/async-metadata.js":{"id":3737,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/render-from-template-context.js":{"id":3609,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":3609,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/framework/boundary-components.js":{"id":496,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":496,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":8009,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":8009,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/DevErrorRecovery.tsx":{"id":4989,"name":"*","chunks":["177","static/chunks/app/layout-2079789d2a8cf3e0.js"],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist\",\"arguments\":[{\"variable\":\"--font-geist-sans\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistSans\"}":{"id":5016,"name":"*","chunks":["177","static/chunks/app/layout-2079789d2a8cf3e0.js"],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist_Mono\",\"arguments\":[{\"variable\":\"--font-geist-mono\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistMono\"}":{"id":2872,"name":"*","chunks":["177","static/chunks/app/layout-2079789d2a8cf3e0.js"],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/globals.css":{"id":8183,"name":"*","chunks":["177","static/chunks/app/layout-2079789d2a8cf3e0.js"],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/page.tsx":{"id":8028,"name":"*","chunks":["992","static/chunks/992-806bad722ba16222.js","974","static/chunks/app/page-f19cfa58541ca83d.js"],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/project/[id]/page.tsx":{"id":959,"name":"*","chunks":["992","static/chunks/992-806bad722ba16222.js","574","static/chunks/574-1fe2bcd6cfb41646.js","78","static/chunks/app/project/%5Bid%5D/page-dffaa1d02f012216.js"],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/settings/page.tsx":{"id":3701,"name":"*","chunks":[],"async":false}},"entryCSSFiles":{"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/":[],"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/layout":[{"inlined":false,"path":"static/css/0a24552d9794f8c8.css"}],"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/page":[],"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/project/[id]/page":[]},"rscModuleMapping":{"476":{"*":{"id":"8662","name":"*","chunks":[],"async":false}},"496":{"*":{"id":"400","name":"*","chunks":[],"async":false}},"959":{"*":{"id":"2983","name":"*","chunks":[],"async":false}},"1684":{"*":{"id":"9296","name":"*","chunks":[],"async":false}},"2207":{"*":{"id":"1865","name":"*","chunks":[],"async":false}},"3597":{"*":{"id":"6145","name":"*","chunks":[],"async":false}},"3609":{"*":{"id":"8791","name":"*","chunks":[],"async":false}},"3701":{"*":{"id":"2527","name":"*","chunks":[],"async":false}},"3737":{"*":{"id":"3741","name":"*","chunks":[],"async":false}},"4989":{"*":{"id":"7619","name":"*","chunks":[],"async":false}},"5965":{"*":{"id":"1461","name":"*","chunks":[],"async":false}},"8009":{"*":{"id":"941","name":"*","chunks":[],"async":false}},"8028":{"*":{"id":"6479","name":"*","chunks":[],"async":false}},"8183":{"*":{"id":"414","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{"476":{"*":{"id":"1400","name":"*","chunks":[],"async":false}},"496":{"*":{"id":"7934","name":"*","chunks":[],"async":false}},"1684":{"*":{"id":"9494","name":"*","chunks":[],"async":false}},"2207":{"*":{"id":"3927","name":"*","chunks":[],"async":false}},"3597":{"*":{"id":"7735","name":"*","chunks":[],"async":false}},"3609":{"*":{"id":"5897","name":"*","chunks":[],"async":false}},"3737":{"*":{"id":"9671","name":"*","chunks":[],"async":false}},"5965":{"*":{"id":"6719","name":"*","chunks":[],"async":false}},"8009":{"*":{"id":"8247","name":"*","chunks":[],"async":false}}}}
@@ -1 +1 @@
1
- globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/settings/page"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"476":{"*":{"id":"1400","name":"*","chunks":[],"async":false}},"496":{"*":{"id":"7934","name":"*","chunks":[],"async":false}},"882":{"*":{"id":"4406","name":"*","chunks":[],"async":false}},"1684":{"*":{"id":"9494","name":"*","chunks":[],"async":false}},"2207":{"*":{"id":"3927","name":"*","chunks":[],"async":false}},"3597":{"*":{"id":"7735","name":"*","chunks":[],"async":false}},"3609":{"*":{"id":"5897","name":"*","chunks":[],"async":false}},"3701":{"*":{"id":"2317","name":"*","chunks":[],"async":false}},"3737":{"*":{"id":"9671","name":"*","chunks":[],"async":false}},"4989":{"*":{"id":"4937","name":"*","chunks":[],"async":false}},"5965":{"*":{"id":"6719","name":"*","chunks":[],"async":false}},"7275":{"*":{"id":"5091","name":"*","chunks":[],"async":false}},"8009":{"*":{"id":"8247","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/builtin/global-error.js":{"id":2207,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":2207,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/client-page.js":{"id":1684,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/esm/client/components/client-page.js":{"id":1684,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/client-segment.js":{"id":476,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/esm/client/components/client-segment.js":{"id":476,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":3597,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":3597,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/layout-router.js":{"id":5965,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/esm/client/components/layout-router.js":{"id":5965,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/metadata/async-metadata.js":{"id":3737,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/esm/client/components/metadata/async-metadata.js":{"id":3737,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/render-from-template-context.js":{"id":3609,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":3609,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/framework/boundary-components.js":{"id":496,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":496,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":8009,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":8009,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/DevErrorRecovery.tsx":{"id":4989,"name":"*","chunks":["177","static/chunks/app/layout-2079789d2a8cf3e0.js"],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist\",\"arguments\":[{\"variable\":\"--font-geist-sans\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistSans\"}":{"id":5016,"name":"*","chunks":["177","static/chunks/app/layout-2079789d2a8cf3e0.js"],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist_Mono\",\"arguments\":[{\"variable\":\"--font-geist-mono\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistMono\"}":{"id":2872,"name":"*","chunks":["177","static/chunks/app/layout-2079789d2a8cf3e0.js"],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/globals.css":{"id":8183,"name":"*","chunks":["177","static/chunks/app/layout-2079789d2a8cf3e0.js"],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/page.tsx":{"id":882,"name":"*","chunks":["992","static/chunks/992-806bad722ba16222.js","974","static/chunks/app/page-3d093f7f480a8599.js"],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/project/[id]/page.tsx":{"id":7275,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/settings/page.tsx":{"id":3701,"name":"*","chunks":["992","static/chunks/992-806bad722ba16222.js","662","static/chunks/app/settings/page-92d28565c3d8c755.js"],"async":false}},"entryCSSFiles":{"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/":[],"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/layout":[{"inlined":false,"path":"static/css/8f946046a2047594.css"}],"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/page":[],"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/settings/page":[]},"rscModuleMapping":{"476":{"*":{"id":"8662","name":"*","chunks":[],"async":false}},"496":{"*":{"id":"400","name":"*","chunks":[],"async":false}},"882":{"*":{"id":"6479","name":"*","chunks":[],"async":false}},"1684":{"*":{"id":"9296","name":"*","chunks":[],"async":false}},"2207":{"*":{"id":"1865","name":"*","chunks":[],"async":false}},"3597":{"*":{"id":"6145","name":"*","chunks":[],"async":false}},"3609":{"*":{"id":"8791","name":"*","chunks":[],"async":false}},"3701":{"*":{"id":"2527","name":"*","chunks":[],"async":false}},"3737":{"*":{"id":"3741","name":"*","chunks":[],"async":false}},"4989":{"*":{"id":"7619","name":"*","chunks":[],"async":false}},"5965":{"*":{"id":"1461","name":"*","chunks":[],"async":false}},"7275":{"*":{"id":"2983","name":"*","chunks":[],"async":false}},"8009":{"*":{"id":"941","name":"*","chunks":[],"async":false}},"8183":{"*":{"id":"414","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{"476":{"*":{"id":"1400","name":"*","chunks":[],"async":false}},"496":{"*":{"id":"7934","name":"*","chunks":[],"async":false}},"1684":{"*":{"id":"9494","name":"*","chunks":[],"async":false}},"2207":{"*":{"id":"3927","name":"*","chunks":[],"async":false}},"3597":{"*":{"id":"7735","name":"*","chunks":[],"async":false}},"3609":{"*":{"id":"5897","name":"*","chunks":[],"async":false}},"3737":{"*":{"id":"9671","name":"*","chunks":[],"async":false}},"5965":{"*":{"id":"6719","name":"*","chunks":[],"async":false}},"8009":{"*":{"id":"8247","name":"*","chunks":[],"async":false}}}}
1
+ globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/settings/page"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"476":{"*":{"id":"1400","name":"*","chunks":[],"async":false}},"496":{"*":{"id":"7934","name":"*","chunks":[],"async":false}},"959":{"*":{"id":"3769","name":"*","chunks":[],"async":false}},"1684":{"*":{"id":"9494","name":"*","chunks":[],"async":false}},"2207":{"*":{"id":"3927","name":"*","chunks":[],"async":false}},"3597":{"*":{"id":"7735","name":"*","chunks":[],"async":false}},"3609":{"*":{"id":"5897","name":"*","chunks":[],"async":false}},"3701":{"*":{"id":"2317","name":"*","chunks":[],"async":false}},"3737":{"*":{"id":"9671","name":"*","chunks":[],"async":false}},"4989":{"*":{"id":"4937","name":"*","chunks":[],"async":false}},"5965":{"*":{"id":"6719","name":"*","chunks":[],"async":false}},"8009":{"*":{"id":"8247","name":"*","chunks":[],"async":false}},"8028":{"*":{"id":"4224","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/builtin/global-error.js":{"id":2207,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":2207,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/client-page.js":{"id":1684,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/esm/client/components/client-page.js":{"id":1684,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/client-segment.js":{"id":476,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/esm/client/components/client-segment.js":{"id":476,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":3597,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":3597,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/layout-router.js":{"id":5965,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/esm/client/components/layout-router.js":{"id":5965,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/metadata/async-metadata.js":{"id":3737,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/esm/client/components/metadata/async-metadata.js":{"id":3737,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/render-from-template-context.js":{"id":3609,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":3609,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/framework/boundary-components.js":{"id":496,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":496,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":8009,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":8009,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/DevErrorRecovery.tsx":{"id":4989,"name":"*","chunks":["177","static/chunks/app/layout-2079789d2a8cf3e0.js"],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist\",\"arguments\":[{\"variable\":\"--font-geist-sans\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistSans\"}":{"id":5016,"name":"*","chunks":["177","static/chunks/app/layout-2079789d2a8cf3e0.js"],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist_Mono\",\"arguments\":[{\"variable\":\"--font-geist-mono\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistMono\"}":{"id":2872,"name":"*","chunks":["177","static/chunks/app/layout-2079789d2a8cf3e0.js"],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/globals.css":{"id":8183,"name":"*","chunks":["177","static/chunks/app/layout-2079789d2a8cf3e0.js"],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/page.tsx":{"id":8028,"name":"*","chunks":["992","static/chunks/992-806bad722ba16222.js","974","static/chunks/app/page-f19cfa58541ca83d.js"],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/project/[id]/page.tsx":{"id":959,"name":"*","chunks":[],"async":false},"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/settings/page.tsx":{"id":3701,"name":"*","chunks":["992","static/chunks/992-806bad722ba16222.js","662","static/chunks/app/settings/page-d1318c2fd58729a5.js"],"async":false}},"entryCSSFiles":{"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/":[],"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/layout":[{"inlined":false,"path":"static/css/0a24552d9794f8c8.css"}],"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/page":[],"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/settings/page":[]},"rscModuleMapping":{"476":{"*":{"id":"8662","name":"*","chunks":[],"async":false}},"496":{"*":{"id":"400","name":"*","chunks":[],"async":false}},"959":{"*":{"id":"2983","name":"*","chunks":[],"async":false}},"1684":{"*":{"id":"9296","name":"*","chunks":[],"async":false}},"2207":{"*":{"id":"1865","name":"*","chunks":[],"async":false}},"3597":{"*":{"id":"6145","name":"*","chunks":[],"async":false}},"3609":{"*":{"id":"8791","name":"*","chunks":[],"async":false}},"3701":{"*":{"id":"2527","name":"*","chunks":[],"async":false}},"3737":{"*":{"id":"3741","name":"*","chunks":[],"async":false}},"4989":{"*":{"id":"7619","name":"*","chunks":[],"async":false}},"5965":{"*":{"id":"1461","name":"*","chunks":[],"async":false}},"8009":{"*":{"id":"941","name":"*","chunks":[],"async":false}},"8028":{"*":{"id":"6479","name":"*","chunks":[],"async":false}},"8183":{"*":{"id":"414","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{"476":{"*":{"id":"1400","name":"*","chunks":[],"async":false}},"496":{"*":{"id":"7934","name":"*","chunks":[],"async":false}},"1684":{"*":{"id":"9494","name":"*","chunks":[],"async":false}},"2207":{"*":{"id":"3927","name":"*","chunks":[],"async":false}},"3597":{"*":{"id":"7735","name":"*","chunks":[],"async":false}},"3609":{"*":{"id":"5897","name":"*","chunks":[],"async":false}},"3737":{"*":{"id":"9671","name":"*","chunks":[],"async":false}},"5965":{"*":{"id":"6719","name":"*","chunks":[],"async":false}},"8009":{"*":{"id":"8247","name":"*","chunks":[],"async":false}}}}
@@ -1 +1 @@
1
- <!DOCTYPE html><!--aXT20mSdxaem1_z8VH2F1--><html lang="ko"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" href="/_next/static/media/4cf2300e9c8272f7-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="preload" href="/_next/static/media/93f479601ee12b01-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="stylesheet" href="/_next/static/css/8f946046a2047594.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-1ff95075f86c177e.js"/><script src="/_next/static/chunks/c476d598-9099ed8b975ae1d6.js" async=""></script><script src="/_next/static/chunks/498-ad4e539d948e058e.js" async=""></script><script src="/_next/static/chunks/main-app-de4b9be4b7d2b049.js" async=""></script><script src="/_next/static/chunks/app/layout-2079789d2a8cf3e0.js" async=""></script><script src="/_next/static/chunks/992-806bad722ba16222.js" async=""></script><script src="/_next/static/chunks/app/settings/page-92d28565c3d8c755.js" async=""></script><meta name="next-size-adjust" content=""/><title>ClaudeShip</title><meta name="description" content="AI-Powered App Builder using Claude Code"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body class="__variable_188709 __variable_9a8899 antialiased"><div hidden=""><!--$--><!--/$--></div><div class="flex min-h-screen flex-col"><header class="sticky top-0 z-40 border-b bg-background/95 backdrop-blur supports-[backdrop-filter]:bg-background/60"><div class="flex h-14 w-full items-center justify-between px-4"><div class="flex items-center gap-3"><a href="/"><button class="inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 hover:bg-accent hover:text-accent-foreground h-9 w-9"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-arrow-left h-5 w-5"><path d="m12 19-7-7 7-7"></path><path d="M19 12H5"></path></svg></button></a><h1 class="text-lg font-semibold">설정</h1></div><div class="flex items-center gap-1"><button class="inline-flex items-center justify-center whitespace-nowrap rounded-md transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 hover:bg-accent hover:text-accent-foreground h-9 w-9 text-xs font-medium" title="언어">KO</button><a href="/settings"><button class="inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 hover:bg-accent hover:text-accent-foreground h-9 w-9" title="설정"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-settings h-5 w-5"><path d="M12.22 2h-.44a2 2 0 0 0-2 2v.18a2 2 0 0 1-1 1.73l-.43.25a2 2 0 0 1-2 0l-.15-.08a2 2 0 0 0-2.73.73l-.22.38a2 2 0 0 0 .73 2.73l.15.1a2 2 0 0 1 1 1.72v.51a2 2 0 0 1-1 1.74l-.15.09a2 2 0 0 0-.73 2.73l.22.38a2 2 0 0 0 2.73.73l.15-.08a2 2 0 0 1 2 0l.43.25a2 2 0 0 1 1 1.73V20a2 2 0 0 0 2 2h.44a2 2 0 0 0 2-2v-.18a2 2 0 0 1 1-1.73l.43-.25a2 2 0 0 1 2 0l.15.08a2 2 0 0 0 2.73-.73l.22-.39a2 2 0 0 0-.73-2.73l-.15-.08a2 2 0 0 1-1-1.74v-.5a2 2 0 0 1 1-1.74l.15-.09a2 2 0 0 0 .73-2.73l-.22-.38a2 2 0 0 0-2.73-.73l-.15.08a2 2 0 0 1-2 0l-.43-.25a2 2 0 0 1-1-1.73V4a2 2 0 0 0-2-2z"></path><circle cx="12" cy="12" r="3"></circle></svg></button></a></div></div></header><main class="flex-1 p-6"><div class="mx-auto max-w-2xl space-y-8"><section class="rounded-lg border bg-card p-6"><div class="flex items-center gap-3 mb-4"><div class="flex h-10 w-10 items-center justify-center rounded-lg bg-primary/10"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-folder-open h-5 w-5 text-primary"><path d="m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2"></path></svg></div><div><h2 class="text-lg font-semibold">프로젝트 폴더</h2><p class="text-sm text-muted-foreground">프로젝트가 저장되는 위치</p></div></div><div class="flex items-center justify-center py-8"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-loader-circle h-6 w-6 animate-spin text-muted-foreground"><path d="M21 12a9 9 0 1 1-6.219-8.56"></path></svg></div></section></div></main></div><!--$--><!--/$--><script src="/_next/static/chunks/webpack-1ff95075f86c177e.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[4989,[\"177\",\"static/chunks/app/layout-2079789d2a8cf3e0.js\"],\"DevErrorRecovery\"]\n3:I[5965,[],\"\"]\n4:I[3609,[],\"\"]\n5:I[1684,[],\"ClientPageRoot\"]\n6:I[3701,[\"992\",\"static/chunks/992-806bad722ba16222.js\",\"662\",\"static/chunks/app/settings/page-92d28565c3d8c755.js\"],\"default\"]\n9:I[496,[],\"OutletBoundary\"]\nb:I[3737,[],\"AsyncMetadataOutlet\"]\nd:I[496,[],\"ViewportBoundary\"]\nf:I[496,[],\"MetadataBoundary\"]\n10:\"$Sreact.suspense\"\n12:I[2207,[],\"\"]\n:HL[\"/_next/static/media/4cf2300e9c8272f7-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/media/93f479601ee12b01-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/css/8f946046a2047594.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"aXT20mSdxaem1-z8VH2F1\",\"p\":\"\",\"c\":[\"\",\"settings\"],\"i\":false,\"f\":[[[\"\",{\"children\":[\"settings\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[\"\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/8f946046a2047594.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"ko\",\"children\":[\"$\",\"body\",null,{\"className\":\"__variable_188709 __variable_9a8899 antialiased\",\"children\":[[\"$\",\"$L2\",null,{}],[\"$\",\"$L3\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L4\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}]}]]}],{\"children\":[\"settings\",[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L3\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L4\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[\"__PAGE__\",[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"$L5\",null,{\"Component\":\"$6\",\"searchParams\":{},\"params\":{},\"promises\":[\"$@7\",\"$@8\"]}],null,[\"$\",\"$L9\",null,{\"children\":[\"$La\",[\"$\",\"$Lb\",null,{\"promise\":\"$@c\"}]]}]]}],{},null,false]},null,false]},null,false],[\"$\",\"$1\",\"h\",{\"children\":[null,[[\"$\",\"$Ld\",null,{\"children\":\"$Le\"}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]],[\"$\",\"$Lf\",null,{\"children\":[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$10\",null,{\"fallback\":null,\"children\":\"$L11\"}]}]}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$12\",[]],\"s\":false,\"S\":true}\n"])</script><script>self.__next_f.push([1,"7:{}\n8:\"$0:f:0:1:2:children:2:children:1:props:children:0:props:params\"\n"])</script><script>self.__next_f.push([1,"e:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\na:null\n"])</script><script>self.__next_f.push([1,"c:{\"metadata\":[[\"$\",\"title\",\"0\",{\"children\":\"ClaudeShip\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"AI-Powered App Builder using Claude Code\"}]],\"error\":null,\"digest\":\"$undefined\"}\n"])</script><script>self.__next_f.push([1,"11:\"$c:metadata\"\n"])</script></body></html>
1
+ <!DOCTYPE html><!--mkY_TTl_ho_ehDKiX10AN--><html lang="ko"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" href="/_next/static/media/4cf2300e9c8272f7-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="preload" href="/_next/static/media/93f479601ee12b01-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="stylesheet" href="/_next/static/css/0a24552d9794f8c8.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-1ff95075f86c177e.js"/><script src="/_next/static/chunks/c476d598-9099ed8b975ae1d6.js" async=""></script><script src="/_next/static/chunks/498-ad4e539d948e058e.js" async=""></script><script src="/_next/static/chunks/main-app-de4b9be4b7d2b049.js" async=""></script><script src="/_next/static/chunks/app/layout-2079789d2a8cf3e0.js" async=""></script><script src="/_next/static/chunks/992-806bad722ba16222.js" async=""></script><script src="/_next/static/chunks/app/settings/page-d1318c2fd58729a5.js" async=""></script><meta name="next-size-adjust" content=""/><title>ClaudeShip</title><meta name="description" content="AI-Powered App Builder using Claude Code"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body class="__variable_188709 __variable_9a8899 antialiased"><div hidden=""><!--$--><!--/$--></div><div class="flex min-h-screen flex-col"><header class="sticky top-0 z-40 border-b bg-background/95 backdrop-blur supports-[backdrop-filter]:bg-background/60"><div class="flex h-14 w-full items-center justify-between px-4"><div class="flex items-center gap-3"><a href="/"><button class="inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 hover:bg-accent hover:text-accent-foreground h-9 w-9"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-arrow-left h-5 w-5"><path d="m12 19-7-7 7-7"></path><path d="M19 12H5"></path></svg></button></a><h1 class="text-lg font-semibold">설정</h1></div><div class="flex items-center gap-1"><button class="inline-flex items-center justify-center whitespace-nowrap rounded-md transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 hover:bg-accent hover:text-accent-foreground h-9 w-9 text-xs font-medium" title="언어">KO</button><a href="/settings"><button class="inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 hover:bg-accent hover:text-accent-foreground h-9 w-9" title="설정"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-settings h-5 w-5"><path d="M12.22 2h-.44a2 2 0 0 0-2 2v.18a2 2 0 0 1-1 1.73l-.43.25a2 2 0 0 1-2 0l-.15-.08a2 2 0 0 0-2.73.73l-.22.38a2 2 0 0 0 .73 2.73l.15.1a2 2 0 0 1 1 1.72v.51a2 2 0 0 1-1 1.74l-.15.09a2 2 0 0 0-.73 2.73l.22.38a2 2 0 0 0 2.73.73l.15-.08a2 2 0 0 1 2 0l.43.25a2 2 0 0 1 1 1.73V20a2 2 0 0 0 2 2h.44a2 2 0 0 0 2-2v-.18a2 2 0 0 1 1-1.73l.43-.25a2 2 0 0 1 2 0l.15.08a2 2 0 0 0 2.73-.73l.22-.39a2 2 0 0 0-.73-2.73l-.15-.08a2 2 0 0 1-1-1.74v-.5a2 2 0 0 1 1-1.74l.15-.09a2 2 0 0 0 .73-2.73l-.22-.38a2 2 0 0 0-2.73-.73l-.15.08a2 2 0 0 1-2 0l-.43-.25a2 2 0 0 1-1-1.73V4a2 2 0 0 0-2-2z"></path><circle cx="12" cy="12" r="3"></circle></svg></button></a></div></div></header><main class="flex-1 p-6"><div class="mx-auto max-w-2xl space-y-8"><section class="rounded-lg border bg-card p-6"><div class="flex items-center gap-3 mb-4"><div class="flex h-10 w-10 items-center justify-center rounded-lg bg-primary/10"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-folder-open h-5 w-5 text-primary"><path d="m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2"></path></svg></div><div><h2 class="text-lg font-semibold">프로젝트 폴더</h2><p class="text-sm text-muted-foreground">프로젝트가 저장되는 위치</p></div></div><div class="flex items-center justify-center py-8"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-loader-circle h-6 w-6 animate-spin text-muted-foreground"><path d="M21 12a9 9 0 1 1-6.219-8.56"></path></svg></div></section></div></main></div><!--$--><!--/$--><script src="/_next/static/chunks/webpack-1ff95075f86c177e.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[4989,[\"177\",\"static/chunks/app/layout-2079789d2a8cf3e0.js\"],\"DevErrorRecovery\"]\n3:I[5965,[],\"\"]\n4:I[3609,[],\"\"]\n5:I[1684,[],\"ClientPageRoot\"]\n6:I[3701,[\"992\",\"static/chunks/992-806bad722ba16222.js\",\"662\",\"static/chunks/app/settings/page-d1318c2fd58729a5.js\"],\"default\"]\n9:I[496,[],\"OutletBoundary\"]\nb:I[3737,[],\"AsyncMetadataOutlet\"]\nd:I[496,[],\"ViewportBoundary\"]\nf:I[496,[],\"MetadataBoundary\"]\n10:\"$Sreact.suspense\"\n12:I[2207,[],\"\"]\n:HL[\"/_next/static/media/4cf2300e9c8272f7-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/media/93f479601ee12b01-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/css/0a24552d9794f8c8.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"mkY_TTl_ho_ehDKiX10AN\",\"p\":\"\",\"c\":[\"\",\"settings\"],\"i\":false,\"f\":[[[\"\",{\"children\":[\"settings\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[\"\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/0a24552d9794f8c8.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"ko\",\"children\":[\"$\",\"body\",null,{\"className\":\"__variable_188709 __variable_9a8899 antialiased\",\"children\":[[\"$\",\"$L2\",null,{}],[\"$\",\"$L3\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L4\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}]}]]}],{\"children\":[\"settings\",[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L3\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L4\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[\"__PAGE__\",[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"$L5\",null,{\"Component\":\"$6\",\"searchParams\":{},\"params\":{},\"promises\":[\"$@7\",\"$@8\"]}],null,[\"$\",\"$L9\",null,{\"children\":[\"$La\",[\"$\",\"$Lb\",null,{\"promise\":\"$@c\"}]]}]]}],{},null,false]},null,false]},null,false],[\"$\",\"$1\",\"h\",{\"children\":[null,[[\"$\",\"$Ld\",null,{\"children\":\"$Le\"}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]],[\"$\",\"$Lf\",null,{\"children\":[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$10\",null,{\"fallback\":null,\"children\":\"$L11\"}]}]}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$12\",[]],\"s\":false,\"S\":true}\n"])</script><script>self.__next_f.push([1,"7:{}\n8:\"$0:f:0:1:2:children:2:children:1:props:children:0:props:params\"\n"])</script><script>self.__next_f.push([1,"e:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\na:null\n"])</script><script>self.__next_f.push([1,"c:{\"metadata\":[[\"$\",\"title\",\"0\",{\"children\":\"ClaudeShip\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"AI-Powered App Builder using Claude Code\"}]],\"error\":null,\"digest\":\"$undefined\"}\n"])</script><script>self.__next_f.push([1,"11:\"$c:metadata\"\n"])</script></body></html>
@@ -3,7 +3,7 @@
3
3
  3:I[5965,[],""]
4
4
  4:I[3609,[],""]
5
5
  5:I[1684,[],"ClientPageRoot"]
6
- 6:I[3701,["992","static/chunks/992-806bad722ba16222.js","662","static/chunks/app/settings/page-92d28565c3d8c755.js"],"default"]
6
+ 6:I[3701,["992","static/chunks/992-806bad722ba16222.js","662","static/chunks/app/settings/page-d1318c2fd58729a5.js"],"default"]
7
7
  9:I[496,[],"OutletBoundary"]
8
8
  b:I[3737,[],"AsyncMetadataOutlet"]
9
9
  d:I[496,[],"ViewportBoundary"]
@@ -12,8 +12,8 @@ f:I[496,[],"MetadataBoundary"]
12
12
  12:I[2207,[],""]
13
13
  :HL["/_next/static/media/4cf2300e9c8272f7-s.p.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
14
14
  :HL["/_next/static/media/93f479601ee12b01-s.p.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
15
- :HL["/_next/static/css/8f946046a2047594.css","style"]
16
- 0:{"P":null,"b":"aXT20mSdxaem1-z8VH2F1","p":"","c":["","settings"],"i":false,"f":[[["",{"children":["settings",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],["",["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/8f946046a2047594.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"ko","children":["$","body",null,{"className":"__variable_188709 __variable_9a8899 antialiased","children":[["$","$L2",null,{}],["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]]}]}]]}],{"children":["settings",["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":["__PAGE__",["$","$1","c",{"children":[["$","$L5",null,{"Component":"$6","searchParams":{},"params":{},"promises":["$@7","$@8"]}],null,["$","$L9",null,{"children":["$La",["$","$Lb",null,{"promise":"$@c"}]]}]]}],{},null,false]},null,false]},null,false],["$","$1","h",{"children":[null,[["$","$Ld",null,{"children":"$Le"}],["$","meta",null,{"name":"next-size-adjust","content":""}]],["$","$Lf",null,{"children":["$","div",null,{"hidden":true,"children":["$","$10",null,{"fallback":null,"children":"$L11"}]}]}]]}],false]],"m":"$undefined","G":["$12",[]],"s":false,"S":true}
15
+ :HL["/_next/static/css/0a24552d9794f8c8.css","style"]
16
+ 0:{"P":null,"b":"mkY_TTl_ho_ehDKiX10AN","p":"","c":["","settings"],"i":false,"f":[[["",{"children":["settings",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],["",["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/0a24552d9794f8c8.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"ko","children":["$","body",null,{"className":"__variable_188709 __variable_9a8899 antialiased","children":[["$","$L2",null,{}],["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]]}]}]]}],{"children":["settings",["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":["__PAGE__",["$","$1","c",{"children":[["$","$L5",null,{"Component":"$6","searchParams":{},"params":{},"promises":["$@7","$@8"]}],null,["$","$L9",null,{"children":["$La",["$","$Lb",null,{"promise":"$@c"}]]}]]}],{},null,false]},null,false]},null,false],["$","$1","h",{"children":[null,[["$","$Ld",null,{"children":"$Le"}],["$","meta",null,{"name":"next-size-adjust","content":""}]],["$","$Lf",null,{"children":["$","div",null,{"hidden":true,"children":["$","$10",null,{"fallback":null,"children":"$L11"}]}]}]]}],false]],"m":"$undefined","G":["$12",[]],"s":false,"S":true}
17
17
  7:{}
18
18
  8:"$0:f:0:1:2:children:2:children:1:props:children:0:props:params"
19
19
  e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
@@ -1 +1 @@
1
- exports.id=392,exports.ids=[392],exports.modules={414:()=>{},1401:(a,b,c)=>{Promise.resolve().then(c.bind(c,4937))},2120:(a,b,c)=>{"use strict";c.d(b,{$:()=>i});var d=c(8403),e=c(6038),f=c(8682),g=c(2835);let h=(0,f.F)("inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50",{variants:{variant:{default:"bg-primary text-primary-foreground shadow hover:bg-primary/90",destructive:"bg-destructive text-destructive-foreground shadow-sm hover:bg-destructive/90",outline:"border border-input bg-background shadow-sm hover:bg-accent hover:text-accent-foreground",secondary:"bg-secondary text-secondary-foreground shadow-sm hover:bg-secondary/80",ghost:"hover:bg-accent hover:text-accent-foreground",link:"text-primary underline-offset-4 hover:underline"},size:{default:"h-9 px-4 py-2",sm:"h-8 rounded-md px-3 text-xs",lg:"h-10 rounded-md px-8",icon:"h-9 w-9"}},defaultVariants:{variant:"default",size:"default"}}),i=e.forwardRef(({className:a,variant:b,size:c,...e},f)=>(0,d.jsx)("button",{className:(0,g.cn)(h({variant:b,size:c,className:a})),ref:f,...e}));i.displayName="Button"},2282:(a,b,c)=>{"use strict";c.d(b,{p:()=>g});var d=c(8403),e=c(6038),f=c(2835);let g=e.forwardRef(({className:a,type:b,...c},e)=>(0,d.jsx)("input",{type:b,className:(0,f.cn)("flex h-9 w-full rounded-md border border-input bg-transparent px-3 py-1 text-sm shadow-sm transition-colors file:border-0 file:bg-transparent file:text-sm file:font-medium placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50",a),ref:e,...c}));g.displayName="Input"},2835:(a,b,c)=>{"use strict";c.d(b,{cn:()=>f});var d=c(5282),e=c(1091);function f(...a){return(0,e.QP)((0,d.$)(a))}},3826:(a,b,c)=>{"use strict";c.d(b,{F:()=>f});let d=process.env.NEXT_PUBLIC_API_URL||"http://localhost:14000/api";async function e(a,b){let c=`${d}${a}`,e=await fetch(c,{...b,headers:{"Content-Type":"application/json",...b?.headers}});if(!e.ok)throw Error((await e.json().catch(()=>({message:"Request failed"}))).message||`HTTP error! status: ${e.status}`);if(204!==e.status)return e.json()}let f={get:a=>e(a),post:(a,b)=>e(a,{method:"POST",body:b?JSON.stringify(b):void 0}),put:(a,b)=>e(a,{method:"PUT",body:b?JSON.stringify(b):void 0}),delete:a=>e(a,{method:"DELETE"}),uploadFiles:async(a,b)=>{let c=new FormData;b.forEach(a=>c.append("files",a));let e=`${d}/projects/${a}/files/upload`,f=await fetch(e,{method:"POST",body:c});if(!f.ok)throw Error((await f.json().catch(()=>({message:"Upload failed"}))).message||`HTTP error! status: ${f.status}`);return f.json()}}},4824:(a,b,c)=>{"use strict";c.d(b,{B:()=>h});var d=c(4906),e=c(3539);let f={en:JSON.parse('{"common":{"appName":"ClaudeShip","loading":"Loading...","error":"Error","save":"Save","cancel":"Cancel","delete":"Delete","create":"Create","close":"Close","refresh":"Refresh","settings":"Settings"},"header":{"home":"Home","settings":"Settings"},"home":{"title":"My Projects","noProjects":"No projects yet","createFirst":"Create your first project to get started"},"project":{"create":"New Project","createDescription":"Build with AI","createTitle":"Create New Project","name":"Project Name","namePlaceholder":"my-awesome-app","type":"Project Type","typeWeb":"Web App","typeNative":"Native App","backendStack":"Backend Stack","backendNone":"Frontend Only","backendExpress":"Express (Node.js)","backendFastapi":"FastAPI (Python)","delete":"Delete Project","deleteConfirm":"Are you sure you want to delete this project?","updated":"Updated"},"chat":{"title":"Chat","placeholder":"Describe what you want to build...","askPlaceholder":"Ask a question about your project...","queuePlaceholder":"Queue another message...","send":"Send","thinking":"AI is thinking...","uploading":"Uploading files...","queueCount":"{count} message(s) queued","toolRunning":"Running","toolCompleted":"Completed","newConversation":"New Chat","modeAsk":"Ask","modeBuild":"Build"},"preview":{"title":"Preview","start":"Start Preview","stop":"Stop Preview","starting":"Starting...","notReady":"Project not ready for preview","waitForAI":"Wait for AI to create the project files","openInNewTab":"Open in New Tab"},"fileExplorer":{"title":"Files","empty":"No files yet","loading":"Loading files...","error":"Failed to load files","open":"Open File Explorer","close":"Close File Explorer"},"language":{"select":"Language","en":"English","ko":"한국어"},"settings":{"title":"Settings","projectsPath":{"title":"Projects Folder","description":"Location where your projects are stored","saved":"Settings saved successfully","note":"New projects will be created in this folder. Existing projects are not affected."}}}'),ko:JSON.parse('{"common":{"appName":"ClaudeShip","loading":"로딩 중...","error":"오류","save":"저장","cancel":"취소","delete":"삭제","create":"생성","close":"닫기","refresh":"새로고침","settings":"설정"},"header":{"home":"홈","settings":"설정"},"home":{"title":"내 프로젝트","noProjects":"프로젝트가 없습니다","createFirst":"첫 번째 프로젝트를 만들어 시작하세요"},"project":{"create":"새 프로젝트","createDescription":"AI와 함께 만들기","createTitle":"새 프로젝트 생성","name":"프로젝트 이름","namePlaceholder":"my-awesome-app","type":"프로젝트 유형","typeWeb":"웹 앱","typeNative":"네이티브 앱","backendStack":"백엔드 스택","backendNone":"프론트엔드 전용","backendExpress":"Express (Node.js)","backendFastapi":"FastAPI (Python)","delete":"프로젝트 삭제","deleteConfirm":"이 프로젝트를 삭제하시겠습니까?","updated":"업데이트"},"chat":{"title":"채팅","placeholder":"만들고 싶은 것을 설명하세요...","askPlaceholder":"프로젝트에 대해 질문하세요...","queuePlaceholder":"다음 메시지를 입력하세요...","send":"전송","thinking":"AI가 생각 중...","uploading":"파일 업로드 중...","queueCount":"{count}개의 메시지가 대기 중","toolRunning":"실행 중","toolCompleted":"완료","newConversation":"새 대화","modeAsk":"Ask","modeBuild":"Build"},"preview":{"title":"미리보기","start":"미리보기 시작","stop":"미리보기 중지","starting":"시작 중...","notReady":"프로젝트가 미리보기 준비가 되지 않았습니다","waitForAI":"AI가 프로젝트 파일을 생성할 때까지 기다려주세요","openInNewTab":"새 탭에서 열기"},"fileExplorer":{"title":"파일","empty":"파일이 없습니다","loading":"파일 로딩 중...","error":"파일 로드 실패","open":"파일 탐색기 열기","close":"파일 탐색기 닫기"},"language":{"select":"언어","en":"English","ko":"한국어"},"settings":{"title":"설정","projectsPath":{"title":"프로젝트 폴더","description":"프로젝트가 저장되는 위치","saved":"설정이 저장되었습니다","note":"새 프로젝트는 이 폴더에 생성됩니다. 기존 프로젝트에는 영향을 주지 않습니다."}}}')},g=(0,d.v)()((0,e.Zr)(a=>({locale:"ko",setLocale:b=>a({locale:b})}),{name:"claudeship-locale"}));function h(){let a=g(a=>a.locale);return{t:(b,c)=>(function(a,b,c){let d=b||g.getState().locale,e=a.split("."),h=f[d];for(let b of e)if(h&&"object"==typeof h&&b in h)h=h[b];else{for(let b of(h=f.en,e))if(!h||"object"!=typeof h||!(b in h))return a;else h=h[b];break}let i="string"==typeof h?h:a;if(c)for(let[a,b]of Object.entries(c))i=i.replace(RegExp(`\\{${a}\\}`,"g"),String(b));return i})(b,a,c),locale:a,setLocale:g(a=>a.setLocale)}}},4937:(a,b,c)=>{"use strict";function d(){return null}c.d(b,{DevErrorRecovery:()=>d}),c(6038)},4953:(a,b,c)=>{Promise.resolve().then(c.bind(c,7619))},7056:(a,b,c)=>{Promise.resolve().then(c.t.bind(c,3927,23)),Promise.resolve().then(c.t.bind(c,9494,23)),Promise.resolve().then(c.t.bind(c,1400,23)),Promise.resolve().then(c.t.bind(c,7735,23)),Promise.resolve().then(c.t.bind(c,6719,23)),Promise.resolve().then(c.t.bind(c,9671,23)),Promise.resolve().then(c.t.bind(c,5897,23)),Promise.resolve().then(c.t.bind(c,7934,23)),Promise.resolve().then(c.bind(c,8247))},7328:(a,b,c)=>{Promise.resolve().then(c.t.bind(c,1865,23)),Promise.resolve().then(c.t.bind(c,9296,23)),Promise.resolve().then(c.t.bind(c,8662,23)),Promise.resolve().then(c.t.bind(c,6145,23)),Promise.resolve().then(c.t.bind(c,1461,23)),Promise.resolve().then(c.t.bind(c,3741,23)),Promise.resolve().then(c.t.bind(c,8791,23)),Promise.resolve().then(c.t.bind(c,400,23)),Promise.resolve().then(c.t.bind(c,941,23))},7339:(a,b,c)=>{"use strict";c.d(b,{Y:()=>m});var d=c(8403),e=c(9266),f=c.n(e),g=c(3686),h=c(4818),i=c(4610),j=c(2120),k=c(4824);function l(){let{locale:a,setLocale:b,t:c}=(0,k.B)();return(0,d.jsx)(j.$,{variant:"ghost",size:"icon",onClick:()=>{b("en"===a?"ko":"en")},className:"h-9 w-9 text-xs font-medium",title:c("language.select"),children:"en"===a?"EN":"KO"})}function m({title:a,showBack:b,backHref:c="/"}){let{t:e}=(0,k.B)(),m=a||e("common.appName");return(0,d.jsx)("header",{className:"sticky top-0 z-40 border-b bg-background/95 backdrop-blur supports-[backdrop-filter]:bg-background/60",children:(0,d.jsxs)("div",{className:"flex h-14 w-full items-center justify-between px-4",children:[(0,d.jsxs)("div",{className:"flex items-center gap-3",children:[b?(0,d.jsx)(f(),{href:c,children:(0,d.jsx)(j.$,{variant:"ghost",size:"icon",className:"h-9 w-9",children:(0,d.jsx)(h.A,{className:"h-5 w-5"})})}):(0,d.jsx)(g.default,{src:"/logo.svg",alt:"ClaudeShip",width:36,height:36,className:"rounded-lg"}),(0,d.jsx)("h1",{className:"text-lg font-semibold",children:m})]}),(0,d.jsxs)("div",{className:"flex items-center gap-1",children:[(0,d.jsx)(l,{}),(0,d.jsx)(f(),{href:"/settings",children:(0,d.jsx)(j.$,{variant:"ghost",size:"icon",className:"h-9 w-9",title:e("header.settings"),children:(0,d.jsx)(i.A,{className:"h-5 w-5"})})})]})]})})}},7619:(a,b,c)=>{"use strict";c.d(b,{DevErrorRecovery:()=>d});let d=(0,c(4405).registerClientReference)(function(){throw Error("Attempted to call DevErrorRecovery() from the server but DevErrorRecovery is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.")},"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/DevErrorRecovery.tsx","DevErrorRecovery")},9080:(a,b,c)=>{"use strict";c.r(b),c.d(b,{default:()=>k,metadata:()=>j});var d=c(2689),e=c(9125),f=c.n(e),g=c(9157),h=c.n(g);c(414);var i=c(7619);let j={title:"ClaudeShip",description:"AI-Powered App Builder using Claude Code"};function k({children:a}){return(0,d.jsx)("html",{lang:"ko",children:(0,d.jsxs)("body",{className:`${f().variable} ${h().variable} antialiased`,children:[(0,d.jsx)(i.DevErrorRecovery,{}),a]})})}}};
1
+ exports.id=392,exports.ids=[392],exports.modules={414:()=>{},1401:(a,b,c)=>{Promise.resolve().then(c.bind(c,4937))},2120:(a,b,c)=>{"use strict";c.d(b,{$:()=>i});var d=c(8403),e=c(6038),f=c(8682),g=c(2835);let h=(0,f.F)("inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50",{variants:{variant:{default:"bg-primary text-primary-foreground shadow hover:bg-primary/90",destructive:"bg-destructive text-destructive-foreground shadow-sm hover:bg-destructive/90",outline:"border border-input bg-background shadow-sm hover:bg-accent hover:text-accent-foreground",secondary:"bg-secondary text-secondary-foreground shadow-sm hover:bg-secondary/80",ghost:"hover:bg-accent hover:text-accent-foreground",link:"text-primary underline-offset-4 hover:underline"},size:{default:"h-9 px-4 py-2",sm:"h-8 rounded-md px-3 text-xs",lg:"h-10 rounded-md px-8",icon:"h-9 w-9"}},defaultVariants:{variant:"default",size:"default"}}),i=e.forwardRef(({className:a,variant:b,size:c,...e},f)=>(0,d.jsx)("button",{className:(0,g.cn)(h({variant:b,size:c,className:a})),ref:f,...e}));i.displayName="Button"},2282:(a,b,c)=>{"use strict";c.d(b,{p:()=>g});var d=c(8403),e=c(6038),f=c(2835);let g=e.forwardRef(({className:a,type:b,...c},e)=>(0,d.jsx)("input",{type:b,className:(0,f.cn)("flex h-9 w-full rounded-md border border-input bg-transparent px-3 py-1 text-sm shadow-sm transition-colors file:border-0 file:bg-transparent file:text-sm file:font-medium placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50",a),ref:e,...c}));g.displayName="Input"},2835:(a,b,c)=>{"use strict";c.d(b,{cn:()=>f});var d=c(5282),e=c(1091);function f(...a){return(0,e.QP)((0,d.$)(a))}},3826:(a,b,c)=>{"use strict";c.d(b,{F:()=>f});let d=process.env.NEXT_PUBLIC_API_URL||"http://localhost:14000/api";async function e(a,b){let c=`${d}${a}`,e=await fetch(c,{...b,headers:{"Content-Type":"application/json",...b?.headers}});if(!e.ok)throw Error((await e.json().catch(()=>({message:"Request failed"}))).message||`HTTP error! status: ${e.status}`);if(204!==e.status)return e.json()}let f={get:a=>e(a),post:(a,b)=>e(a,{method:"POST",body:b?JSON.stringify(b):void 0}),put:(a,b)=>e(a,{method:"PUT",body:b?JSON.stringify(b):void 0}),delete:(a,b)=>e(a,{method:"DELETE",body:b?JSON.stringify(b):void 0}),uploadFiles:async(a,b)=>{let c=new FormData;b.forEach(a=>c.append("files",a));let e=`${d}/projects/${a}/files/upload`,f=await fetch(e,{method:"POST",body:c});if(!f.ok)throw Error((await f.json().catch(()=>({message:"Upload failed"}))).message||`HTTP error! status: ${f.status}`);return f.json()}}},4824:(a,b,c)=>{"use strict";c.d(b,{B:()=>h});var d=c(4906),e=c(3539);let f={en:JSON.parse('{"common":{"appName":"ClaudeShip","loading":"Loading...","error":"Error","save":"Save","cancel":"Cancel","delete":"Delete","create":"Create","close":"Close","refresh":"Refresh","settings":"Settings"},"header":{"home":"Home","settings":"Settings"},"home":{"title":"My Projects","noProjects":"No projects yet","createFirst":"Create your first project to get started"},"project":{"create":"New Project","createDescription":"Build with AI","createTitle":"Create New Project","name":"Project Name","namePlaceholder":"my-awesome-app","type":"Project Type","typeWeb":"Web App","typeNative":"Native App","backendStack":"Backend Stack","backendNone":"Frontend Only","backendExpress":"Express (Node.js)","backendFastapi":"FastAPI (Python)","delete":"Delete Project","deleteConfirm":"Are you sure you want to delete this project?","updated":"Updated"},"chat":{"title":"Chat","placeholder":"Describe what you want to build...","askPlaceholder":"Ask a question about your project...","queuePlaceholder":"Queue another message...","send":"Send","thinking":"AI is thinking...","uploading":"Uploading files...","queueCount":"{count} message(s) queued","toolRunning":"Running","toolCompleted":"Completed","newConversation":"New Chat","modeAsk":"Ask","modeBuild":"Build"},"preview":{"title":"Preview","start":"Start Preview","stop":"Stop Preview","starting":"Starting...","notReady":"Project not ready for preview","waitForAI":"Wait for AI to create the project files","openInNewTab":"Open in New Tab"},"fileExplorer":{"title":"Files","empty":"No files yet","loading":"Loading files...","error":"Failed to load files","open":"Open File Explorer","close":"Close File Explorer"},"language":{"select":"Language","en":"English","ko":"한국어"},"settings":{"title":"Settings","projectsPath":{"title":"Projects Folder","description":"Location where your projects are stored","saved":"Settings saved successfully","note":"New projects will be created in this folder. Existing projects are not affected."}}}'),ko:JSON.parse('{"common":{"appName":"ClaudeShip","loading":"로딩 중...","error":"오류","save":"저장","cancel":"취소","delete":"삭제","create":"생성","close":"닫기","refresh":"새로고침","settings":"설정"},"header":{"home":"홈","settings":"설정"},"home":{"title":"내 프로젝트","noProjects":"프로젝트가 없습니다","createFirst":"첫 번째 프로젝트를 만들어 시작하세요"},"project":{"create":"새 프로젝트","createDescription":"AI와 함께 만들기","createTitle":"새 프로젝트 생성","name":"프로젝트 이름","namePlaceholder":"my-awesome-app","type":"프로젝트 유형","typeWeb":"웹 앱","typeNative":"네이티브 앱","backendStack":"백엔드 스택","backendNone":"프론트엔드 전용","backendExpress":"Express (Node.js)","backendFastapi":"FastAPI (Python)","delete":"프로젝트 삭제","deleteConfirm":"이 프로젝트를 삭제하시겠습니까?","updated":"업데이트"},"chat":{"title":"채팅","placeholder":"만들고 싶은 것을 설명하세요...","askPlaceholder":"프로젝트에 대해 질문하세요...","queuePlaceholder":"다음 메시지를 입력하세요...","send":"전송","thinking":"AI가 생각 중...","uploading":"파일 업로드 중...","queueCount":"{count}개의 메시지가 대기 중","toolRunning":"실행 중","toolCompleted":"완료","newConversation":"새 대화","modeAsk":"Ask","modeBuild":"Build"},"preview":{"title":"미리보기","start":"미리보기 시작","stop":"미리보기 중지","starting":"시작 중...","notReady":"프로젝트가 미리보기 준비가 되지 않았습니다","waitForAI":"AI가 프로젝트 파일을 생성할 때까지 기다려주세요","openInNewTab":"새 탭에서 열기"},"fileExplorer":{"title":"파일","empty":"파일이 없습니다","loading":"파일 로딩 중...","error":"파일 로드 실패","open":"파일 탐색기 열기","close":"파일 탐색기 닫기"},"language":{"select":"언어","en":"English","ko":"한국어"},"settings":{"title":"설정","projectsPath":{"title":"프로젝트 폴더","description":"프로젝트가 저장되는 위치","saved":"설정이 저장되었습니다","note":"새 프로젝트는 이 폴더에 생성됩니다. 기존 프로젝트에는 영향을 주지 않습니다."}}}')},g=(0,d.v)()((0,e.Zr)(a=>({locale:"ko",setLocale:b=>a({locale:b})}),{name:"claudeship-locale"}));function h(){let a=g(a=>a.locale);return{t:(b,c)=>(function(a,b,c){let d=b||g.getState().locale,e=a.split("."),h=f[d];for(let b of e)if(h&&"object"==typeof h&&b in h)h=h[b];else{for(let b of(h=f.en,e))if(!h||"object"!=typeof h||!(b in h))return a;else h=h[b];break}let i="string"==typeof h?h:a;if(c)for(let[a,b]of Object.entries(c))i=i.replace(RegExp(`\\{${a}\\}`,"g"),String(b));return i})(b,a,c),locale:a,setLocale:g(a=>a.setLocale)}}},4937:(a,b,c)=>{"use strict";function d(){return null}c.d(b,{DevErrorRecovery:()=>d}),c(6038)},4953:(a,b,c)=>{Promise.resolve().then(c.bind(c,7619))},7056:(a,b,c)=>{Promise.resolve().then(c.t.bind(c,3927,23)),Promise.resolve().then(c.t.bind(c,9494,23)),Promise.resolve().then(c.t.bind(c,1400,23)),Promise.resolve().then(c.t.bind(c,7735,23)),Promise.resolve().then(c.t.bind(c,6719,23)),Promise.resolve().then(c.t.bind(c,9671,23)),Promise.resolve().then(c.t.bind(c,5897,23)),Promise.resolve().then(c.t.bind(c,7934,23)),Promise.resolve().then(c.bind(c,8247))},7328:(a,b,c)=>{Promise.resolve().then(c.t.bind(c,1865,23)),Promise.resolve().then(c.t.bind(c,9296,23)),Promise.resolve().then(c.t.bind(c,8662,23)),Promise.resolve().then(c.t.bind(c,6145,23)),Promise.resolve().then(c.t.bind(c,1461,23)),Promise.resolve().then(c.t.bind(c,3741,23)),Promise.resolve().then(c.t.bind(c,8791,23)),Promise.resolve().then(c.t.bind(c,400,23)),Promise.resolve().then(c.t.bind(c,941,23))},7339:(a,b,c)=>{"use strict";c.d(b,{Y:()=>m});var d=c(8403),e=c(9266),f=c.n(e),g=c(3686),h=c(4818),i=c(4610),j=c(2120),k=c(4824);function l(){let{locale:a,setLocale:b,t:c}=(0,k.B)();return(0,d.jsx)(j.$,{variant:"ghost",size:"icon",onClick:()=>{b("en"===a?"ko":"en")},className:"h-9 w-9 text-xs font-medium",title:c("language.select"),children:"en"===a?"EN":"KO"})}function m({title:a,showBack:b,backHref:c="/"}){let{t:e}=(0,k.B)(),m=a||e("common.appName");return(0,d.jsx)("header",{className:"sticky top-0 z-40 border-b bg-background/95 backdrop-blur supports-[backdrop-filter]:bg-background/60",children:(0,d.jsxs)("div",{className:"flex h-14 w-full items-center justify-between px-4",children:[(0,d.jsxs)("div",{className:"flex items-center gap-3",children:[b?(0,d.jsx)(f(),{href:c,children:(0,d.jsx)(j.$,{variant:"ghost",size:"icon",className:"h-9 w-9",children:(0,d.jsx)(h.A,{className:"h-5 w-5"})})}):(0,d.jsx)(g.default,{src:"/logo.svg",alt:"ClaudeShip",width:36,height:36,className:"rounded-lg"}),(0,d.jsx)("h1",{className:"text-lg font-semibold",children:m})]}),(0,d.jsxs)("div",{className:"flex items-center gap-1",children:[(0,d.jsx)(l,{}),(0,d.jsx)(f(),{href:"/settings",children:(0,d.jsx)(j.$,{variant:"ghost",size:"icon",className:"h-9 w-9",title:e("header.settings"),children:(0,d.jsx)(i.A,{className:"h-5 w-5"})})})]})]})})}},7619:(a,b,c)=>{"use strict";c.d(b,{DevErrorRecovery:()=>d});let d=(0,c(4405).registerClientReference)(function(){throw Error("Attempted to call DevErrorRecovery() from the server but DevErrorRecovery is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.")},"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/DevErrorRecovery.tsx","DevErrorRecovery")},9080:(a,b,c)=>{"use strict";c.r(b),c.d(b,{default:()=>k,metadata:()=>j});var d=c(2689),e=c(9125),f=c.n(e),g=c(9157),h=c.n(g);c(414);var i=c(7619);let j={title:"ClaudeShip",description:"AI-Powered App Builder using Claude Code"};function k({children:a}){return(0,d.jsx)("html",{lang:"ko",children:(0,d.jsxs)("body",{className:`${f().variable} ${h().variable} antialiased`,children:[(0,d.jsx)(i.DevErrorRecovery,{}),a]})})}}};
@@ -1 +1 @@
1
- <!DOCTYPE html><!--aXT20mSdxaem1_z8VH2F1--><html lang="ko"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" href="/_next/static/media/4cf2300e9c8272f7-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="preload" href="/_next/static/media/93f479601ee12b01-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="stylesheet" href="/_next/static/css/8f946046a2047594.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-1ff95075f86c177e.js"/><script src="/_next/static/chunks/c476d598-9099ed8b975ae1d6.js" async=""></script><script src="/_next/static/chunks/498-ad4e539d948e058e.js" async=""></script><script src="/_next/static/chunks/main-app-de4b9be4b7d2b049.js" async=""></script><script src="/_next/static/chunks/app/layout-2079789d2a8cf3e0.js" async=""></script><meta name="robots" content="noindex"/><meta name="next-size-adjust" content=""/><title>404: This page could not be found.</title><title>ClaudeShip</title><meta name="description" content="AI-Powered App Builder using Claude Code"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body class="__variable_188709 __variable_9a8899 antialiased"><div hidden=""><!--$--><!--/$--></div><div style="font-family:system-ui,&quot;Segoe UI&quot;,Roboto,Helvetica,Arial,sans-serif,&quot;Apple Color Emoji&quot;,&quot;Segoe UI Emoji&quot;;height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><!--$--><!--/$--><script src="/_next/static/chunks/webpack-1ff95075f86c177e.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[4989,[\"177\",\"static/chunks/app/layout-2079789d2a8cf3e0.js\"],\"DevErrorRecovery\"]\n3:I[5965,[],\"\"]\n4:I[3609,[],\"\"]\n5:I[496,[],\"OutletBoundary\"]\n7:I[3737,[],\"AsyncMetadataOutlet\"]\n9:I[496,[],\"ViewportBoundary\"]\nb:I[496,[],\"MetadataBoundary\"]\nc:\"$Sreact.suspense\"\ne:I[2207,[],\"\"]\n:HL[\"/_next/static/media/4cf2300e9c8272f7-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/media/93f479601ee12b01-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/css/8f946046a2047594.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"aXT20mSdxaem1-z8VH2F1\",\"p\":\"\",\"c\":[\"\",\"_not-found\"],\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[\"\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/8f946046a2047594.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"ko\",\"children\":[\"$\",\"body\",null,{\"className\":\"__variable_188709 __variable_9a8899 antialiased\",\"children\":[[\"$\",\"$L2\",null,{}],[\"$\",\"$L3\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L4\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}]}]]}],{\"children\":[\"/_not-found\",[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L3\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L4\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[\"__PAGE__\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],null,[\"$\",\"$L5\",null,{\"children\":[\"$L6\",[\"$\",\"$L7\",null,{\"promise\":\"$@8\"}]]}]]}],{},null,false]},null,false]},null,false],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[[\"$\",\"$L9\",null,{\"children\":\"$La\"}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]],[\"$\",\"$Lb\",null,{\"children\":[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$c\",null,{\"fallback\":null,\"children\":\"$Ld\"}]}]}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$e\",[]],\"s\":false,\"S\":true}\n"])</script><script>self.__next_f.push([1,"a:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n6:null\n"])</script><script>self.__next_f.push([1,"8:{\"metadata\":[[\"$\",\"title\",\"0\",{\"children\":\"ClaudeShip\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"AI-Powered App Builder using Claude Code\"}]],\"error\":null,\"digest\":\"$undefined\"}\n"])</script><script>self.__next_f.push([1,"d:\"$8:metadata\"\n"])</script></body></html>
1
+ <!DOCTYPE html><!--mkY_TTl_ho_ehDKiX10AN--><html lang="ko"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" href="/_next/static/media/4cf2300e9c8272f7-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="preload" href="/_next/static/media/93f479601ee12b01-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="stylesheet" href="/_next/static/css/0a24552d9794f8c8.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-1ff95075f86c177e.js"/><script src="/_next/static/chunks/c476d598-9099ed8b975ae1d6.js" async=""></script><script src="/_next/static/chunks/498-ad4e539d948e058e.js" async=""></script><script src="/_next/static/chunks/main-app-de4b9be4b7d2b049.js" async=""></script><script src="/_next/static/chunks/app/layout-2079789d2a8cf3e0.js" async=""></script><meta name="robots" content="noindex"/><meta name="next-size-adjust" content=""/><title>404: This page could not be found.</title><title>ClaudeShip</title><meta name="description" content="AI-Powered App Builder using Claude Code"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body class="__variable_188709 __variable_9a8899 antialiased"><div hidden=""><!--$--><!--/$--></div><div style="font-family:system-ui,&quot;Segoe UI&quot;,Roboto,Helvetica,Arial,sans-serif,&quot;Apple Color Emoji&quot;,&quot;Segoe UI Emoji&quot;;height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><!--$--><!--/$--><script src="/_next/static/chunks/webpack-1ff95075f86c177e.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[4989,[\"177\",\"static/chunks/app/layout-2079789d2a8cf3e0.js\"],\"DevErrorRecovery\"]\n3:I[5965,[],\"\"]\n4:I[3609,[],\"\"]\n5:I[496,[],\"OutletBoundary\"]\n7:I[3737,[],\"AsyncMetadataOutlet\"]\n9:I[496,[],\"ViewportBoundary\"]\nb:I[496,[],\"MetadataBoundary\"]\nc:\"$Sreact.suspense\"\ne:I[2207,[],\"\"]\n:HL[\"/_next/static/media/4cf2300e9c8272f7-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/media/93f479601ee12b01-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/css/0a24552d9794f8c8.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"mkY_TTl_ho_ehDKiX10AN\",\"p\":\"\",\"c\":[\"\",\"_not-found\"],\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[\"\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/0a24552d9794f8c8.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"ko\",\"children\":[\"$\",\"body\",null,{\"className\":\"__variable_188709 __variable_9a8899 antialiased\",\"children\":[[\"$\",\"$L2\",null,{}],[\"$\",\"$L3\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L4\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}]}]]}],{\"children\":[\"/_not-found\",[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L3\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L4\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[\"__PAGE__\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],null,[\"$\",\"$L5\",null,{\"children\":[\"$L6\",[\"$\",\"$L7\",null,{\"promise\":\"$@8\"}]]}]]}],{},null,false]},null,false]},null,false],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[[\"$\",\"$L9\",null,{\"children\":\"$La\"}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]],[\"$\",\"$Lb\",null,{\"children\":[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$c\",null,{\"fallback\":null,\"children\":\"$Ld\"}]}]}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$e\",[]],\"s\":false,\"S\":true}\n"])</script><script>self.__next_f.push([1,"a:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n6:null\n"])</script><script>self.__next_f.push([1,"8:{\"metadata\":[[\"$\",\"title\",\"0\",{\"children\":\"ClaudeShip\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"AI-Powered App Builder using Claude Code\"}]],\"error\":null,\"digest\":\"$undefined\"}\n"])</script><script>self.__next_f.push([1,"d:\"$8:metadata\"\n"])</script></body></html>
@@ -1 +1 @@
1
- <!DOCTYPE html><html><head><meta charSet="utf-8" data-next-head=""/><meta name="viewport" content="width=device-width" data-next-head=""/><title data-next-head="">500: Internal Server Error</title><noscript data-n-css=""></noscript><script defer="" noModule="" src="/_next/static/chunks/polyfills-42372ed130431b0a.js"></script><script src="/_next/static/chunks/webpack-1ff95075f86c177e.js" defer=""></script><script src="/_next/static/chunks/framework-1c6a486f6592f084.js" defer=""></script><script src="/_next/static/chunks/main-24dc3671587f4aaa.js" defer=""></script><script src="/_next/static/chunks/pages/_app-55552e79b4ca5b96.js" defer=""></script><script src="/_next/static/chunks/pages/_error-da3c1b00689f457b.js" defer=""></script><script src="/_next/static/aXT20mSdxaem1-z8VH2F1/_buildManifest.js" defer=""></script><script src="/_next/static/aXT20mSdxaem1-z8VH2F1/_ssgManifest.js" defer=""></script></head><body><div id="__next"><div style="font-family:system-ui,&quot;Segoe UI&quot;,Roboto,Helvetica,Arial,sans-serif,&quot;Apple Color Emoji&quot;,&quot;Segoe UI Emoji&quot;;height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div style="line-height:48px"><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding-right:23px;font-size:24px;font-weight:500;vertical-align:top">500</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:28px">Internal Server Error<!-- -->.</h2></div></div></div></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"statusCode":500}},"page":"/_error","query":{},"buildId":"aXT20mSdxaem1-z8VH2F1","nextExport":true,"isFallback":false,"gip":true,"scriptLoader":[]}</script></body></html>
1
+ <!DOCTYPE html><html><head><meta charSet="utf-8" data-next-head=""/><meta name="viewport" content="width=device-width" data-next-head=""/><title data-next-head="">500: Internal Server Error</title><noscript data-n-css=""></noscript><script defer="" noModule="" src="/_next/static/chunks/polyfills-42372ed130431b0a.js"></script><script src="/_next/static/chunks/webpack-1ff95075f86c177e.js" defer=""></script><script src="/_next/static/chunks/framework-1c6a486f6592f084.js" defer=""></script><script src="/_next/static/chunks/main-24dc3671587f4aaa.js" defer=""></script><script src="/_next/static/chunks/pages/_app-55552e79b4ca5b96.js" defer=""></script><script src="/_next/static/chunks/pages/_error-da3c1b00689f457b.js" defer=""></script><script src="/_next/static/mkY_TTl_ho_ehDKiX10AN/_buildManifest.js" defer=""></script><script src="/_next/static/mkY_TTl_ho_ehDKiX10AN/_ssgManifest.js" defer=""></script></head><body><div id="__next"><div style="font-family:system-ui,&quot;Segoe UI&quot;,Roboto,Helvetica,Arial,sans-serif,&quot;Apple Color Emoji&quot;,&quot;Segoe UI Emoji&quot;;height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div style="line-height:48px"><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding-right:23px;font-size:24px;font-weight:500;vertical-align:top">500</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:28px">Internal Server Error<!-- -->.</h2></div></div></div></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"statusCode":500}},"page":"/_error","query":{},"buildId":"mkY_TTl_ho_ehDKiX10AN","nextExport":true,"isFallback":false,"gip":true,"scriptLoader":[]}</script></body></html>
@@ -1 +1 @@
1
- {"node":{},"edge":{},"encryptionKey":"UQ9TJyvXCBZv5gDs2XX19SjyHA2XgyASMJUmKb6uvVY="}
1
+ {"node":{},"edge":{},"encryptionKey":"VzfNpjdFv1QSRk9H2pAA/hmLfoXHqSiLp0iOfopK54s="}