popeye-cli 2.1.0 → 2.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/adapters/gemini.d.ts +14 -0
- package/dist/adapters/gemini.d.ts.map +1 -1
- package/dist/adapters/gemini.js +41 -6
- package/dist/adapters/gemini.js.map +1 -1
- package/dist/adapters/grok.d.ts +14 -0
- package/dist/adapters/grok.d.ts.map +1 -1
- package/dist/adapters/grok.js +42 -6
- package/dist/adapters/grok.js.map +1 -1
- package/dist/adapters/openai.d.ts +10 -0
- package/dist/adapters/openai.d.ts.map +1 -1
- package/dist/adapters/openai.js +44 -5
- package/dist/adapters/openai.js.map +1 -1
- package/dist/cli/commands/create.js +1 -1
- package/dist/cli/commands/create.js.map +1 -1
- package/dist/cli/interactive.d.ts.map +1 -1
- package/dist/cli/interactive.js +328 -21
- package/dist/cli/interactive.js.map +1 -1
- package/dist/generators/all.d.ts.map +1 -1
- package/dist/generators/all.js +25 -2
- package/dist/generators/all.js.map +1 -1
- package/dist/generators/doc-parser.d.ts +21 -6
- package/dist/generators/doc-parser.d.ts.map +1 -1
- package/dist/generators/doc-parser.js +55 -4
- package/dist/generators/doc-parser.js.map +1 -1
- package/dist/generators/templates/fullstack.js +1 -1
- package/dist/generators/templates/website-components.js +1 -1
- package/dist/generators/templates/website-components.js.map +1 -1
- package/dist/generators/templates/website-config.d.ts +4 -1
- package/dist/generators/templates/website-config.d.ts.map +1 -1
- package/dist/generators/templates/website-config.js +17 -11
- package/dist/generators/templates/website-config.js.map +1 -1
- package/dist/generators/templates/website-conversion.js +1 -1
- package/dist/generators/templates/website-conversion.js.map +1 -1
- package/dist/generators/templates/website-landing.js +1 -1
- package/dist/generators/templates/website-landing.js.map +1 -1
- package/dist/generators/templates/website-layout.d.ts +36 -4
- package/dist/generators/templates/website-layout.d.ts.map +1 -1
- package/dist/generators/templates/website-layout.js +466 -23
- package/dist/generators/templates/website-layout.js.map +1 -1
- package/dist/generators/templates/website-pricing.js +1 -1
- package/dist/generators/templates/website-pricing.js.map +1 -1
- package/dist/generators/templates/website-sections.js +1 -1
- package/dist/generators/templates/website-sections.js.map +1 -1
- package/dist/generators/templates/website-seo.d.ts.map +1 -1
- package/dist/generators/templates/website-seo.js +4 -1
- package/dist/generators/templates/website-seo.js.map +1 -1
- package/dist/generators/templates/website.d.ts +1 -1
- package/dist/generators/templates/website.d.ts.map +1 -1
- package/dist/generators/templates/website.js +1 -1
- package/dist/generators/templates/website.js.map +1 -1
- package/dist/generators/website-content-ai.d.ts +52 -0
- package/dist/generators/website-content-ai.d.ts.map +1 -0
- package/dist/generators/website-content-ai.js +141 -0
- package/dist/generators/website-content-ai.js.map +1 -0
- package/dist/generators/website-content-scanner.d.ts +1 -1
- package/dist/generators/website-content-scanner.d.ts.map +1 -1
- package/dist/generators/website-content-scanner.js +98 -1
- package/dist/generators/website-content-scanner.js.map +1 -1
- package/dist/generators/website-context.d.ts +34 -1
- package/dist/generators/website-context.d.ts.map +1 -1
- package/dist/generators/website-context.js +131 -9
- package/dist/generators/website-context.js.map +1 -1
- package/dist/generators/website-debug.d.ts +12 -0
- package/dist/generators/website-debug.d.ts.map +1 -1
- package/dist/generators/website-debug.js +16 -0
- package/dist/generators/website-debug.js.map +1 -1
- package/dist/generators/website.d.ts.map +1 -1
- package/dist/generators/website.js +26 -4
- package/dist/generators/website.js.map +1 -1
- package/dist/pipeline/artifact-manager.d.ts.map +1 -1
- package/dist/pipeline/artifact-manager.js +3 -0
- package/dist/pipeline/artifact-manager.js.map +1 -1
- package/dist/pipeline/auto-recovery.d.ts +56 -0
- package/dist/pipeline/auto-recovery.d.ts.map +1 -0
- package/dist/pipeline/auto-recovery.js +185 -0
- package/dist/pipeline/auto-recovery.js.map +1 -0
- package/dist/pipeline/change-request.d.ts +39 -0
- package/dist/pipeline/change-request.d.ts.map +1 -1
- package/dist/pipeline/change-request.js +40 -1
- package/dist/pipeline/change-request.js.map +1 -1
- package/dist/pipeline/check-runner.d.ts +30 -1
- package/dist/pipeline/check-runner.d.ts.map +1 -1
- package/dist/pipeline/check-runner.js +122 -1
- package/dist/pipeline/check-runner.js.map +1 -1
- package/dist/pipeline/command-resolver.d.ts.map +1 -1
- package/dist/pipeline/command-resolver.js +33 -2
- package/dist/pipeline/command-resolver.js.map +1 -1
- package/dist/pipeline/consensus/arbitrator-query.d.ts +22 -0
- package/dist/pipeline/consensus/arbitrator-query.d.ts.map +1 -0
- package/dist/pipeline/consensus/arbitrator-query.js +70 -0
- package/dist/pipeline/consensus/arbitrator-query.js.map +1 -0
- package/dist/pipeline/consensus/consensus-runner.d.ts +131 -7
- package/dist/pipeline/consensus/consensus-runner.d.ts.map +1 -1
- package/dist/pipeline/consensus/consensus-runner.js +809 -35
- package/dist/pipeline/consensus/consensus-runner.js.map +1 -1
- package/dist/pipeline/cr-lifecycle.d.ts +42 -0
- package/dist/pipeline/cr-lifecycle.d.ts.map +1 -0
- package/dist/pipeline/cr-lifecycle.js +89 -0
- package/dist/pipeline/cr-lifecycle.js.map +1 -0
- package/dist/pipeline/gate-engine.d.ts +1 -0
- package/dist/pipeline/gate-engine.d.ts.map +1 -1
- package/dist/pipeline/gate-engine.js +27 -8
- package/dist/pipeline/gate-engine.js.map +1 -1
- package/dist/pipeline/migration.d.ts.map +1 -1
- package/dist/pipeline/migration.js +3 -26
- package/dist/pipeline/migration.js.map +1 -1
- package/dist/pipeline/orchestrator.d.ts +1 -1
- package/dist/pipeline/orchestrator.d.ts.map +1 -1
- package/dist/pipeline/orchestrator.js +311 -16
- package/dist/pipeline/orchestrator.js.map +1 -1
- package/dist/pipeline/packets/consensus-packet-builder.d.ts +15 -4
- package/dist/pipeline/packets/consensus-packet-builder.d.ts.map +1 -1
- package/dist/pipeline/packets/consensus-packet-builder.js +29 -17
- package/dist/pipeline/packets/consensus-packet-builder.js.map +1 -1
- package/dist/pipeline/phases/architecture.d.ts.map +1 -1
- package/dist/pipeline/phases/architecture.js +5 -3
- package/dist/pipeline/phases/architecture.js.map +1 -1
- package/dist/pipeline/phases/audit.d.ts.map +1 -1
- package/dist/pipeline/phases/audit.js +5 -3
- package/dist/pipeline/phases/audit.js.map +1 -1
- package/dist/pipeline/phases/consensus-architecture.d.ts.map +1 -1
- package/dist/pipeline/phases/consensus-architecture.js +10 -1
- package/dist/pipeline/phases/consensus-architecture.js.map +1 -1
- package/dist/pipeline/phases/consensus-master-plan.d.ts.map +1 -1
- package/dist/pipeline/phases/consensus-master-plan.js +10 -3
- package/dist/pipeline/phases/consensus-master-plan.js.map +1 -1
- package/dist/pipeline/phases/consensus-role-plans.d.ts.map +1 -1
- package/dist/pipeline/phases/consensus-role-plans.js +10 -1
- package/dist/pipeline/phases/consensus-role-plans.js.map +1 -1
- package/dist/pipeline/phases/done.d.ts.map +1 -1
- package/dist/pipeline/phases/done.js +9 -4
- package/dist/pipeline/phases/done.js.map +1 -1
- package/dist/pipeline/phases/intake.d.ts +1 -0
- package/dist/pipeline/phases/intake.d.ts.map +1 -1
- package/dist/pipeline/phases/intake.js +56 -13
- package/dist/pipeline/phases/intake.js.map +1 -1
- package/dist/pipeline/phases/phase-context.d.ts +2 -0
- package/dist/pipeline/phases/phase-context.d.ts.map +1 -1
- package/dist/pipeline/phases/phase-context.js +3 -1
- package/dist/pipeline/phases/phase-context.js.map +1 -1
- package/dist/pipeline/phases/production-gate.d.ts.map +1 -1
- package/dist/pipeline/phases/production-gate.js +28 -3
- package/dist/pipeline/phases/production-gate.js.map +1 -1
- package/dist/pipeline/phases/qa-validation.d.ts.map +1 -1
- package/dist/pipeline/phases/qa-validation.js +38 -5
- package/dist/pipeline/phases/qa-validation.js.map +1 -1
- package/dist/pipeline/phases/recovery-loop.d.ts +2 -0
- package/dist/pipeline/phases/recovery-loop.d.ts.map +1 -1
- package/dist/pipeline/phases/recovery-loop.js +200 -6
- package/dist/pipeline/phases/recovery-loop.js.map +1 -1
- package/dist/pipeline/phases/review.d.ts.map +1 -1
- package/dist/pipeline/phases/review.js +58 -28
- package/dist/pipeline/phases/review.js.map +1 -1
- package/dist/pipeline/phases/role-planning.d.ts.map +1 -1
- package/dist/pipeline/phases/role-planning.js +20 -5
- package/dist/pipeline/phases/role-planning.js.map +1 -1
- package/dist/pipeline/phases/stuck.d.ts.map +1 -1
- package/dist/pipeline/phases/stuck.js +10 -0
- package/dist/pipeline/phases/stuck.js.map +1 -1
- package/dist/pipeline/repo-snapshot.d.ts.map +1 -1
- package/dist/pipeline/repo-snapshot.js +3 -0
- package/dist/pipeline/repo-snapshot.js.map +1 -1
- package/dist/pipeline/role-execution-adapter.d.ts +2 -1
- package/dist/pipeline/role-execution-adapter.d.ts.map +1 -1
- package/dist/pipeline/role-execution-adapter.js +22 -7
- package/dist/pipeline/role-execution-adapter.js.map +1 -1
- package/dist/pipeline/skill-loader.d.ts +19 -0
- package/dist/pipeline/skill-loader.d.ts.map +1 -1
- package/dist/pipeline/skill-loader.js +22 -0
- package/dist/pipeline/skill-loader.js.map +1 -1
- package/dist/pipeline/skills/constitution-generator.d.ts +51 -0
- package/dist/pipeline/skills/constitution-generator.d.ts.map +1 -0
- package/dist/pipeline/skills/constitution-generator.js +210 -0
- package/dist/pipeline/skills/constitution-generator.js.map +1 -0
- package/dist/pipeline/skills/coverage-gate.d.ts +44 -0
- package/dist/pipeline/skills/coverage-gate.d.ts.map +1 -0
- package/dist/pipeline/skills/coverage-gate.js +143 -0
- package/dist/pipeline/skills/coverage-gate.js.map +1 -0
- package/dist/pipeline/skills/generator.d.ts +65 -0
- package/dist/pipeline/skills/generator.d.ts.map +1 -0
- package/dist/pipeline/skills/generator.js +221 -0
- package/dist/pipeline/skills/generator.js.map +1 -0
- package/dist/pipeline/skills/role-map.d.ts +38 -0
- package/dist/pipeline/skills/role-map.d.ts.map +1 -0
- package/dist/pipeline/skills/role-map.js +234 -0
- package/dist/pipeline/skills/role-map.js.map +1 -0
- package/dist/pipeline/skills/types.d.ts +47 -0
- package/dist/pipeline/skills/types.d.ts.map +1 -0
- package/dist/pipeline/skills/types.js +5 -0
- package/dist/pipeline/skills/types.js.map +1 -0
- package/dist/pipeline/skills/usage-registry.d.ts +48 -0
- package/dist/pipeline/skills/usage-registry.d.ts.map +1 -0
- package/dist/pipeline/skills/usage-registry.js +55 -0
- package/dist/pipeline/skills/usage-registry.js.map +1 -0
- package/dist/pipeline/strategy-context.d.ts +20 -0
- package/dist/pipeline/strategy-context.d.ts.map +1 -0
- package/dist/pipeline/strategy-context.js +55 -0
- package/dist/pipeline/strategy-context.js.map +1 -0
- package/dist/pipeline/type-defs/artifacts.d.ts +30 -5
- package/dist/pipeline/type-defs/artifacts.d.ts.map +1 -1
- package/dist/pipeline/type-defs/artifacts.js +5 -0
- package/dist/pipeline/type-defs/artifacts.js.map +1 -1
- package/dist/pipeline/type-defs/audit.d.ts +28 -13
- package/dist/pipeline/type-defs/audit.d.ts.map +1 -1
- package/dist/pipeline/type-defs/checks.d.ts +19 -8
- package/dist/pipeline/type-defs/checks.d.ts.map +1 -1
- package/dist/pipeline/type-defs/checks.js +4 -0
- package/dist/pipeline/type-defs/checks.js.map +1 -1
- package/dist/pipeline/type-defs/packets.d.ts +119 -18
- package/dist/pipeline/type-defs/packets.d.ts.map +1 -1
- package/dist/pipeline/type-defs/packets.js +17 -1
- package/dist/pipeline/type-defs/packets.js.map +1 -1
- package/dist/pipeline/type-defs/state.d.ts +165 -16
- package/dist/pipeline/type-defs/state.d.ts.map +1 -1
- package/dist/pipeline/type-defs/state.js +26 -1
- package/dist/pipeline/type-defs/state.js.map +1 -1
- package/dist/shared/text-utils.d.ts +23 -0
- package/dist/shared/text-utils.d.ts.map +1 -0
- package/dist/shared/text-utils.js +66 -0
- package/dist/shared/text-utils.js.map +1 -0
- package/dist/shared/website-strategy-format.d.ts +18 -0
- package/dist/shared/website-strategy-format.d.ts.map +1 -0
- package/dist/shared/website-strategy-format.js +47 -0
- package/dist/shared/website-strategy-format.js.map +1 -0
- package/dist/state/index.d.ts +2 -0
- package/dist/state/index.d.ts.map +1 -1
- package/dist/state/index.js +57 -8
- package/dist/state/index.js.map +1 -1
- package/dist/types/consensus.d.ts +1 -0
- package/dist/types/consensus.d.ts.map +1 -1
- package/dist/types/consensus.js.map +1 -1
- package/dist/types/website-strategy.d.ts +1 -1
- package/dist/types/workflow.d.ts +447 -0
- package/dist/types/workflow.d.ts.map +1 -1
- package/dist/types/workflow.js +3 -0
- package/dist/types/workflow.js.map +1 -1
- package/dist/upgrade/handlers.d.ts.map +1 -1
- package/dist/upgrade/handlers.js +6 -3
- package/dist/upgrade/handlers.js.map +1 -1
- package/dist/workflow/consensus.d.ts.map +1 -1
- package/dist/workflow/consensus.js +1 -0
- package/dist/workflow/consensus.js.map +1 -1
- package/dist/workflow/website-strategy.d.ts.map +1 -1
- package/dist/workflow/website-strategy.js +2 -29
- package/dist/workflow/website-strategy.js.map +1 -1
- package/dist/workflow/website-updater.d.ts.map +1 -1
- package/dist/workflow/website-updater.js +3 -2
- package/dist/workflow/website-updater.js.map +1 -1
- package/package.json +1 -1
- package/src/adapters/gemini.ts +51 -6
- package/src/adapters/grok.ts +51 -6
- package/src/adapters/openai.ts +53 -5
- package/src/cli/commands/create.ts +1 -1
- package/src/cli/interactive.ts +337 -20
- package/src/generators/all.ts +25 -2
- package/src/generators/doc-parser.ts +75 -15
- package/src/generators/templates/fullstack.ts +1 -1
- package/src/generators/templates/website-components.ts +1 -1
- package/src/generators/templates/website-config.ts +23 -11
- package/src/generators/templates/website-conversion.ts +1 -1
- package/src/generators/templates/website-landing.ts +1 -1
- package/src/generators/templates/website-layout.ts +491 -23
- package/src/generators/templates/website-pricing.ts +1 -1
- package/src/generators/templates/website-sections.ts +1 -1
- package/src/generators/templates/website-seo.ts +4 -1
- package/src/generators/templates/website.ts +3 -0
- package/src/generators/website-content-ai.ts +186 -0
- package/src/generators/website-content-scanner.ts +113 -1
- package/src/generators/website-context.ts +151 -12
- package/src/generators/website-debug.ts +26 -0
- package/src/generators/website.ts +28 -3
- package/src/pipeline/artifact-manager.ts +3 -0
- package/src/pipeline/auto-recovery.ts +283 -0
- package/src/pipeline/change-request.ts +63 -1
- package/src/pipeline/check-runner.ts +141 -2
- package/src/pipeline/command-resolver.ts +34 -2
- package/src/pipeline/consensus/arbitrator-query.ts +101 -0
- package/src/pipeline/consensus/consensus-runner.ts +1099 -42
- package/src/pipeline/cr-lifecycle.ts +103 -0
- package/src/pipeline/gate-engine.ts +36 -8
- package/src/pipeline/migration.ts +5 -30
- package/src/pipeline/orchestrator.ts +367 -16
- package/src/pipeline/packets/consensus-packet-builder.ts +44 -18
- package/src/pipeline/phases/architecture.ts +6 -3
- package/src/pipeline/phases/audit.ts +6 -3
- package/src/pipeline/phases/consensus-architecture.ts +10 -1
- package/src/pipeline/phases/consensus-master-plan.ts +10 -3
- package/src/pipeline/phases/consensus-role-plans.ts +10 -1
- package/src/pipeline/phases/done.ts +15 -4
- package/src/pipeline/phases/intake.ts +67 -14
- package/src/pipeline/phases/phase-context.ts +6 -1
- package/src/pipeline/phases/production-gate.ts +41 -3
- package/src/pipeline/phases/qa-validation.ts +51 -5
- package/src/pipeline/phases/recovery-loop.ts +229 -7
- package/src/pipeline/phases/review.ts +73 -30
- package/src/pipeline/phases/role-planning.ts +23 -5
- package/src/pipeline/phases/stuck.ts +10 -0
- package/src/pipeline/repo-snapshot.ts +3 -0
- package/src/pipeline/role-execution-adapter.ts +30 -4
- package/src/pipeline/skill-loader.ts +33 -0
- package/src/pipeline/skills/constitution-generator.ts +236 -0
- package/src/pipeline/skills/coverage-gate.ts +199 -0
- package/src/pipeline/skills/generator.ts +287 -0
- package/src/pipeline/skills/role-map.ts +248 -0
- package/src/pipeline/skills/types.ts +53 -0
- package/src/pipeline/skills/usage-registry.ts +87 -0
- package/src/pipeline/strategy-context.ts +60 -0
- package/src/pipeline/type-defs/artifacts.ts +5 -0
- package/src/pipeline/type-defs/checks.ts +4 -0
- package/src/pipeline/type-defs/packets.ts +18 -1
- package/src/pipeline/type-defs/state.ts +26 -1
- package/src/shared/text-utils.ts +70 -0
- package/src/shared/website-strategy-format.ts +56 -0
- package/src/state/index.ts +60 -8
- package/src/types/consensus.ts +1 -0
- package/src/types/workflow.ts +6 -0
- package/src/upgrade/handlers.ts +9 -3
- package/src/workflow/consensus.ts +1 -0
- package/src/workflow/website-strategy.ts +2 -36
- package/src/workflow/website-updater.ts +4 -2
- package/tests/adapters/gemini.test.ts +165 -0
- package/tests/adapters/grok.test.ts +137 -0
- package/tests/adapters/openai.test.ts +128 -0
- package/tests/generators/doc-parser.test.ts +88 -9
- package/tests/generators/quality-gate.test.ts +19 -3
- package/tests/generators/website-components.test.ts +34 -0
- package/tests/generators/website-content-ai.test.ts +308 -0
- package/tests/generators/website-content-scanner.test.ts +86 -0
- package/tests/generators/website-context.test.ts +3 -2
- package/tests/integration/smokestack-scaffold.test.ts +385 -0
- package/tests/pipeline/auto-recovery.test.ts +337 -0
- package/tests/pipeline/change-request.test.ts +70 -0
- package/tests/pipeline/command-resolver.test.ts +42 -0
- package/tests/pipeline/consensus/arbitrator-query.test.ts +107 -0
- package/tests/pipeline/consensus-runner.test.ts +1333 -10
- package/tests/pipeline/consensus-scoring.test.ts +602 -18
- package/tests/pipeline/gate-engine.test.ts +34 -0
- package/tests/pipeline/install-check.test.ts +261 -0
- package/tests/pipeline/migration.test.ts +4 -3
- package/tests/pipeline/orchestrator.test.ts +1506 -15
- package/tests/pipeline/packets/builders.test.ts +29 -6
- package/tests/pipeline/phases/role-planning.strategy.test.ts +204 -0
- package/tests/pipeline/pipeline-persistence.test.ts +230 -0
- package/tests/pipeline/recovery-loop-guidance.test.ts +280 -0
- package/tests/pipeline/role-execution-adapter.test.ts +88 -0
- package/tests/pipeline/skills/constitution-generator.test.ts +201 -0
- package/tests/pipeline/skills/coverage-gate.test.ts +370 -0
- package/tests/pipeline/skills/generator.test.ts +213 -0
- package/tests/pipeline/skills/role-map.test.ts +198 -0
- package/tests/pipeline/skills/usage-registry.test.ts +114 -0
- package/tests/pipeline/strategy-context.test.ts +148 -0
- package/tests/shared/text-utils.test.ts +155 -0
- package/tests/state/progress-analysis.test.ts +375 -0
- package/tests/upgrade/handlers.test.ts +33 -2
- package/tests/workflow/consensus.test.ts +6 -0
- package/tsconfig.json +1 -1
|
@@ -10,7 +10,7 @@ function escapeJsx(str) {
|
|
|
10
10
|
.replace(/\\/g, '\\\\')
|
|
11
11
|
.replace(/'/g, "\\'")
|
|
12
12
|
.replace(/`/g, '\\`')
|
|
13
|
-
.replace(
|
|
13
|
+
.replace(/\$(?=\{)/g, '\\$');
|
|
14
14
|
}
|
|
15
15
|
/**
|
|
16
16
|
* Convert hex color to HSL string for CSS custom properties
|
|
@@ -190,6 +190,24 @@ export default function sitemap(): MetadataRoute.Sitemap {
|
|
|
190
190
|
changeFrequency: 'daily',
|
|
191
191
|
priority: 0.7,
|
|
192
192
|
},
|
|
193
|
+
{
|
|
194
|
+
url: \`\${baseUrl}/contact\`,
|
|
195
|
+
lastModified: new Date(),
|
|
196
|
+
changeFrequency: 'monthly',
|
|
197
|
+
priority: 0.6,
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
url: \`\${baseUrl}/privacy\`,
|
|
201
|
+
lastModified: new Date(),
|
|
202
|
+
changeFrequency: 'yearly',
|
|
203
|
+
priority: 0.3,
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
url: \`\${baseUrl}/terms\`,
|
|
207
|
+
lastModified: new Date(),
|
|
208
|
+
changeFrequency: 'yearly',
|
|
209
|
+
priority: 0.3,
|
|
210
|
+
},
|
|
193
211
|
];
|
|
194
212
|
}
|
|
195
213
|
`;
|
|
@@ -356,51 +374,476 @@ describe('HomePage', () => {
|
|
|
356
374
|
`;
|
|
357
375
|
}
|
|
358
376
|
/**
|
|
359
|
-
* Generate
|
|
377
|
+
* Generate documentation landing page with real content sections
|
|
378
|
+
*
|
|
379
|
+
* @param projectName - Project name for context
|
|
380
|
+
* @param context - Optional content context for product-aware copy
|
|
381
|
+
* @returns Documentation page source code
|
|
360
382
|
*/
|
|
361
|
-
export function generateWebsiteDocsPage() {
|
|
383
|
+
export function generateWebsiteDocsPage(projectName, context) {
|
|
384
|
+
const displayName = context?.productName || projectName
|
|
385
|
+
?.split('-')
|
|
386
|
+
.map((w) => w.charAt(0).toUpperCase() + w.slice(1))
|
|
387
|
+
.join(' ') || 'our platform';
|
|
388
|
+
const desc = context?.description || `Learn how to integrate ${displayName} into your projects`;
|
|
362
389
|
return `import type { Metadata } from 'next';
|
|
390
|
+
import Header from '@/components/Header';
|
|
391
|
+
import Footer from '@/components/Footer';
|
|
363
392
|
|
|
364
393
|
export const metadata: Metadata = {
|
|
365
394
|
title: 'Documentation',
|
|
366
|
-
description: '
|
|
395
|
+
description: '${escapeJsx(desc)}.',
|
|
367
396
|
};
|
|
368
397
|
|
|
398
|
+
const sections = [
|
|
399
|
+
{
|
|
400
|
+
title: 'Quick Start',
|
|
401
|
+
description:
|
|
402
|
+
'Get ${escapeJsx(displayName)} running in your project in under five minutes. Install the SDK, configure your credentials, and make your first API call.',
|
|
403
|
+
code: \`npm install @${projectName ? escapeJsx(projectName) : 'my-project'}/sdk
|
|
404
|
+
|
|
405
|
+
import { createClient } from '@${projectName ? escapeJsx(projectName) : 'my-project'}/sdk';
|
|
406
|
+
|
|
407
|
+
const client = createClient({
|
|
408
|
+
apiKey: process.env.API_KEY,
|
|
409
|
+
});
|
|
410
|
+
|
|
411
|
+
const result = await client.run({ input: 'Hello' });
|
|
412
|
+
console.log(result);\`,
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
title: 'Core Concepts',
|
|
416
|
+
description:
|
|
417
|
+
'${escapeJsx(displayName)} is built around a small set of primitives that compose into powerful workflows. This section covers the data model, authentication, and the request lifecycle so you can design integrations with confidence.',
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
title: 'API Reference',
|
|
421
|
+
description:
|
|
422
|
+
'The ${escapeJsx(displayName)} REST API provides endpoints for all platform operations. All endpoints require authentication via API key. Requests and responses use JSON. Rate limits and quotas depend on your subscription plan.',
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
title: 'SDK Integration',
|
|
426
|
+
description:
|
|
427
|
+
'Official SDKs are available for popular languages and frameworks. Each SDK provides typed helpers, automatic retries, and idiomatic error handling so you can integrate ${escapeJsx(displayName)} without boilerplate.',
|
|
428
|
+
},
|
|
429
|
+
{
|
|
430
|
+
title: 'Deployment Guide',
|
|
431
|
+
description:
|
|
432
|
+
'${escapeJsx(displayName)} can be consumed as a managed cloud service or self-hosted in your own infrastructure. This guide covers both options including high-availability configurations, environment variables, and monitoring recommendations.',
|
|
433
|
+
},
|
|
434
|
+
];
|
|
435
|
+
|
|
369
436
|
export default function DocsPage() {
|
|
370
437
|
return (
|
|
371
|
-
|
|
372
|
-
<
|
|
373
|
-
|
|
374
|
-
<
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
438
|
+
<>
|
|
439
|
+
<Header />
|
|
440
|
+
<main className="py-20 sm:py-32">
|
|
441
|
+
<div className="container">
|
|
442
|
+
<div className="mx-auto max-w-3xl text-center">
|
|
443
|
+
<h1 className="text-4xl font-bold tracking-tight text-foreground sm:text-5xl">
|
|
444
|
+
Documentation
|
|
445
|
+
</h1>
|
|
446
|
+
<p className="mt-4 text-lg text-muted-foreground">
|
|
447
|
+
Everything you need to integrate ${escapeJsx(displayName)} into your projects.
|
|
448
|
+
</p>
|
|
449
|
+
</div>
|
|
450
|
+
<div className="mx-auto mt-16 max-w-3xl space-y-10">
|
|
451
|
+
{sections.map((section) => (
|
|
452
|
+
<div
|
|
453
|
+
key={section.title}
|
|
454
|
+
className="rounded-lg border border-border bg-card p-8"
|
|
455
|
+
>
|
|
456
|
+
<h2 className="text-2xl font-semibold text-foreground">
|
|
457
|
+
{section.title}
|
|
458
|
+
</h2>
|
|
459
|
+
<p className="mt-3 text-muted-foreground leading-7">
|
|
460
|
+
{section.description}
|
|
461
|
+
</p>
|
|
462
|
+
{section.code && (
|
|
463
|
+
<pre className="mt-6 overflow-x-auto rounded-md bg-foreground/5 p-4 text-sm leading-6">
|
|
464
|
+
<code>{section.code}</code>
|
|
465
|
+
</pre>
|
|
466
|
+
)}
|
|
467
|
+
</div>
|
|
468
|
+
))}
|
|
469
|
+
</div>
|
|
470
|
+
</div>
|
|
471
|
+
</main>
|
|
472
|
+
<Footer />
|
|
473
|
+
</>
|
|
379
474
|
);
|
|
380
475
|
}
|
|
381
476
|
`;
|
|
382
477
|
}
|
|
383
478
|
/**
|
|
384
|
-
* Generate blog listing page
|
|
479
|
+
* Generate blog listing page with starter posts
|
|
480
|
+
*
|
|
481
|
+
* @param projectName - Project name for context
|
|
482
|
+
* @param context - Optional content context for product-aware copy
|
|
483
|
+
* @returns Blog page source code
|
|
385
484
|
*/
|
|
386
|
-
export function generateWebsiteBlogPage() {
|
|
485
|
+
export function generateWebsiteBlogPage(projectName, context) {
|
|
486
|
+
const displayName = context?.productName || projectName
|
|
487
|
+
?.split('-')
|
|
488
|
+
.map((w) => w.charAt(0).toUpperCase() + w.slice(1))
|
|
489
|
+
.join(' ') || 'Our Platform';
|
|
490
|
+
const tagline = context?.tagline || context?.description || `the ${displayName} platform`;
|
|
387
491
|
return `import type { Metadata } from 'next';
|
|
492
|
+
import Header from '@/components/Header';
|
|
493
|
+
import Footer from '@/components/Footer';
|
|
388
494
|
|
|
389
495
|
export const metadata: Metadata = {
|
|
390
496
|
title: 'Blog',
|
|
391
|
-
description: 'Latest news, updates, and insights from
|
|
497
|
+
description: 'Latest news, updates, and insights from the ${escapeJsx(displayName)} team.',
|
|
392
498
|
};
|
|
393
499
|
|
|
500
|
+
const posts = [
|
|
501
|
+
{
|
|
502
|
+
title: 'Introducing ${escapeJsx(displayName)}',
|
|
503
|
+
date: 'January 15, 2025',
|
|
504
|
+
author: '${escapeJsx(displayName)} Team',
|
|
505
|
+
excerpt:
|
|
506
|
+
'We are excited to announce ${escapeJsx(displayName)}. We built this platform to address a real gap we saw in the market: ${escapeJsx(tagline)}. In this post we share the motivation behind the project, the core design decisions we made, and our roadmap for the months ahead.',
|
|
507
|
+
},
|
|
508
|
+
{
|
|
509
|
+
title: 'How ${escapeJsx(displayName)} Works Under the Hood',
|
|
510
|
+
date: 'February 5, 2025',
|
|
511
|
+
author: '${escapeJsx(displayName)} Team',
|
|
512
|
+
excerpt:
|
|
513
|
+
'A deep dive into the architecture of ${escapeJsx(displayName)}. We cover the request lifecycle, how data flows through the system, the performance optimizations that keep latency low, and the security model that keeps your data safe. Whether you are evaluating the platform or already using it, this post will help you understand what happens behind the API.',
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
title: 'Getting Started with ${escapeJsx(displayName)}: A Practical Guide',
|
|
517
|
+
date: 'February 20, 2025',
|
|
518
|
+
author: '${escapeJsx(displayName)} Team',
|
|
519
|
+
excerpt:
|
|
520
|
+
'A step-by-step walkthrough for new users. We cover account setup, creating your first project, integrating the SDK into your application, and deploying to production. By the end of this guide you will have a working integration and a solid understanding of the core workflows.',
|
|
521
|
+
},
|
|
522
|
+
];
|
|
523
|
+
|
|
394
524
|
export default function BlogPage() {
|
|
395
525
|
return (
|
|
396
|
-
|
|
397
|
-
<
|
|
398
|
-
|
|
399
|
-
<
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
526
|
+
<>
|
|
527
|
+
<Header />
|
|
528
|
+
<main className="py-20 sm:py-32">
|
|
529
|
+
<div className="container">
|
|
530
|
+
<div className="mx-auto max-w-3xl text-center">
|
|
531
|
+
<h1 className="text-4xl font-bold tracking-tight text-foreground sm:text-5xl">
|
|
532
|
+
Blog
|
|
533
|
+
</h1>
|
|
534
|
+
<p className="mt-4 text-lg text-muted-foreground">
|
|
535
|
+
News, insights, and technical deep dives from the ${escapeJsx(displayName)} team.
|
|
536
|
+
</p>
|
|
537
|
+
</div>
|
|
538
|
+
<div className="mx-auto mt-16 max-w-3xl space-y-12">
|
|
539
|
+
{posts.map((post) => (
|
|
540
|
+
<article
|
|
541
|
+
key={post.title}
|
|
542
|
+
className="rounded-lg border border-border bg-card p-8"
|
|
543
|
+
>
|
|
544
|
+
<div className="flex items-center gap-3 text-sm text-muted-foreground">
|
|
545
|
+
<time>{post.date}</time>
|
|
546
|
+
<span aria-hidden="true">·</span>
|
|
547
|
+
<span>{post.author}</span>
|
|
548
|
+
</div>
|
|
549
|
+
<h2 className="mt-3 text-2xl font-semibold text-foreground">
|
|
550
|
+
{post.title}
|
|
551
|
+
</h2>
|
|
552
|
+
<p className="mt-4 text-muted-foreground leading-7">
|
|
553
|
+
{post.excerpt}
|
|
554
|
+
</p>
|
|
555
|
+
</article>
|
|
556
|
+
))}
|
|
557
|
+
</div>
|
|
558
|
+
</div>
|
|
559
|
+
</main>
|
|
560
|
+
<Footer />
|
|
561
|
+
</>
|
|
562
|
+
);
|
|
563
|
+
}
|
|
564
|
+
`;
|
|
565
|
+
}
|
|
566
|
+
/**
|
|
567
|
+
* Generate contact page with ContactForm component
|
|
568
|
+
*
|
|
569
|
+
* @param projectName - Project name for context
|
|
570
|
+
* @param context - Optional content context for product-aware copy
|
|
571
|
+
* @returns Contact page source code
|
|
572
|
+
*/
|
|
573
|
+
export function generateWebsiteContactPage(projectName, context) {
|
|
574
|
+
const displayName = context?.productName || projectName
|
|
575
|
+
?.split('-')
|
|
576
|
+
.map((w) => w.charAt(0).toUpperCase() + w.slice(1))
|
|
577
|
+
.join(' ') || 'Our Platform';
|
|
578
|
+
return `import type { Metadata } from 'next';
|
|
579
|
+
import Header from '@/components/Header';
|
|
580
|
+
import Footer from '@/components/Footer';
|
|
581
|
+
import ContactForm from '@/components/ContactForm';
|
|
582
|
+
|
|
583
|
+
export const metadata: Metadata = {
|
|
584
|
+
title: 'Contact Us',
|
|
585
|
+
description: 'Get in touch with the ${escapeJsx(displayName)} team. We are here to help with questions, feedback, and enterprise inquiries.',
|
|
586
|
+
};
|
|
587
|
+
|
|
588
|
+
export default function ContactPage() {
|
|
589
|
+
return (
|
|
590
|
+
<>
|
|
591
|
+
<Header />
|
|
592
|
+
<main className="py-20 sm:py-32">
|
|
593
|
+
<div className="container">
|
|
594
|
+
<div className="mx-auto max-w-2xl text-center">
|
|
595
|
+
<h1 className="text-4xl font-bold tracking-tight text-foreground sm:text-5xl">
|
|
596
|
+
Contact Us
|
|
597
|
+
</h1>
|
|
598
|
+
<p className="mt-4 text-lg text-muted-foreground">
|
|
599
|
+
Have questions about ${escapeJsx(displayName)}? Our team is here to help.
|
|
600
|
+
</p>
|
|
601
|
+
</div>
|
|
602
|
+
<div className="mx-auto mt-16 grid max-w-4xl gap-12 lg:grid-cols-2">
|
|
603
|
+
<div>
|
|
604
|
+
<h2 className="text-2xl font-semibold text-foreground">Send us a message</h2>
|
|
605
|
+
<p className="mt-2 text-muted-foreground">
|
|
606
|
+
Fill out the form and we will get back to you within 24 hours.
|
|
607
|
+
</p>
|
|
608
|
+
<div className="mt-8">
|
|
609
|
+
<ContactForm />
|
|
610
|
+
</div>
|
|
611
|
+
</div>
|
|
612
|
+
<div>
|
|
613
|
+
<h2 className="text-2xl font-semibold text-foreground">Other ways to reach us</h2>
|
|
614
|
+
<div className="mt-6 space-y-6">
|
|
615
|
+
<div>
|
|
616
|
+
<h3 className="text-sm font-semibold text-foreground">Email</h3>
|
|
617
|
+
<p className="mt-1 text-muted-foreground">support@${projectName || 'example'}.com</p>
|
|
618
|
+
</div>
|
|
619
|
+
<div>
|
|
620
|
+
<h3 className="text-sm font-semibold text-foreground">Response Time</h3>
|
|
621
|
+
<p className="mt-1 text-muted-foreground">
|
|
622
|
+
We typically respond within one business day. Enterprise customers receive priority support.
|
|
623
|
+
</p>
|
|
624
|
+
</div>
|
|
625
|
+
<div>
|
|
626
|
+
<h3 className="text-sm font-semibold text-foreground">Enterprise Inquiries</h3>
|
|
627
|
+
<p className="mt-1 text-muted-foreground">
|
|
628
|
+
For custom deployments, dedicated support, and volume licensing, reach out to our enterprise team.
|
|
629
|
+
</p>
|
|
630
|
+
</div>
|
|
631
|
+
</div>
|
|
632
|
+
</div>
|
|
633
|
+
</div>
|
|
634
|
+
</div>
|
|
635
|
+
</main>
|
|
636
|
+
<Footer />
|
|
637
|
+
</>
|
|
638
|
+
);
|
|
639
|
+
}
|
|
640
|
+
`;
|
|
641
|
+
}
|
|
642
|
+
/**
|
|
643
|
+
* Generate privacy policy page
|
|
644
|
+
*
|
|
645
|
+
* @param projectName - Project name for context
|
|
646
|
+
* @param context - Optional content context for product-aware copy
|
|
647
|
+
* @returns Privacy policy page source code
|
|
648
|
+
*/
|
|
649
|
+
export function generateWebsitePrivacyPage(projectName, context) {
|
|
650
|
+
const displayName = context?.productName || projectName
|
|
651
|
+
?.split('-')
|
|
652
|
+
.map((w) => w.charAt(0).toUpperCase() + w.slice(1))
|
|
653
|
+
.join(' ') || 'Our Platform';
|
|
654
|
+
return `import type { Metadata } from 'next';
|
|
655
|
+
import Header from '@/components/Header';
|
|
656
|
+
import Footer from '@/components/Footer';
|
|
657
|
+
|
|
658
|
+
export const metadata: Metadata = {
|
|
659
|
+
title: 'Privacy Policy',
|
|
660
|
+
description: '${escapeJsx(displayName)} privacy policy. Learn how we collect, use, and protect your data.',
|
|
661
|
+
};
|
|
662
|
+
|
|
663
|
+
export default function PrivacyPage() {
|
|
664
|
+
return (
|
|
665
|
+
<>
|
|
666
|
+
<Header />
|
|
667
|
+
<main className="py-20 sm:py-32">
|
|
668
|
+
<div className="container">
|
|
669
|
+
<div className="mx-auto max-w-3xl">
|
|
670
|
+
<h1 className="text-4xl font-bold tracking-tight text-foreground sm:text-5xl">
|
|
671
|
+
Privacy Policy
|
|
672
|
+
</h1>
|
|
673
|
+
<p className="mt-4 text-sm text-muted-foreground">
|
|
674
|
+
Last updated: January 1, 2025
|
|
675
|
+
</p>
|
|
676
|
+
|
|
677
|
+
<div className="mt-12 space-y-10 text-muted-foreground leading-7">
|
|
678
|
+
<section>
|
|
679
|
+
<h2 className="text-xl font-semibold text-foreground">1. Information We Collect</h2>
|
|
680
|
+
<p className="mt-3">
|
|
681
|
+
${escapeJsx(displayName)} collects information you provide directly when you create an account, use the platform, or contact our support team. This includes your name, email address, organization name, and billing information. We also collect usage data such as API call logs and system performance metrics to improve our services.
|
|
682
|
+
</p>
|
|
683
|
+
</section>
|
|
684
|
+
|
|
685
|
+
<section>
|
|
686
|
+
<h2 className="text-xl font-semibold text-foreground">2. How We Use Your Information</h2>
|
|
687
|
+
<p className="mt-3">
|
|
688
|
+
We use collected information to provide and maintain the ${escapeJsx(displayName)} platform, process transactions, send service-related communications, improve our features, and comply with legal obligations. We do not sell your personal information to third parties.
|
|
689
|
+
</p>
|
|
690
|
+
</section>
|
|
691
|
+
|
|
692
|
+
<section>
|
|
693
|
+
<h2 className="text-xl font-semibold text-foreground">3. Data Sharing</h2>
|
|
694
|
+
<p className="mt-3">
|
|
695
|
+
${escapeJsx(displayName)} shares your information only with service providers who assist in operating our platform, when required by law, or with your explicit consent. All third-party providers are bound by data processing agreements that ensure the protection of your information.
|
|
696
|
+
</p>
|
|
697
|
+
</section>
|
|
698
|
+
|
|
699
|
+
<section>
|
|
700
|
+
<h2 className="text-xl font-semibold text-foreground">4. Data Security</h2>
|
|
701
|
+
<p className="mt-3">
|
|
702
|
+
We implement industry-standard security measures including encryption at rest and in transit, regular security audits, access controls, and monitoring to protect your information.
|
|
703
|
+
</p>
|
|
704
|
+
</section>
|
|
705
|
+
|
|
706
|
+
<section>
|
|
707
|
+
<h2 className="text-xl font-semibold text-foreground">5. Cookies and Tracking</h2>
|
|
708
|
+
<p className="mt-3">
|
|
709
|
+
${escapeJsx(displayName)} uses essential cookies to maintain your session and preferences. We use analytics cookies to understand how our website and platform are used. You can manage cookie preferences through your browser settings.
|
|
710
|
+
</p>
|
|
711
|
+
</section>
|
|
712
|
+
|
|
713
|
+
<section>
|
|
714
|
+
<h2 className="text-xl font-semibold text-foreground">6. Your Rights</h2>
|
|
715
|
+
<p className="mt-3">
|
|
716
|
+
You have the right to access, correct, or delete your personal data. You can export your data at any time through your account settings. To exercise these rights, contact us at privacy@${projectName || 'example'}.com. We will respond within 30 days.
|
|
717
|
+
</p>
|
|
718
|
+
</section>
|
|
719
|
+
|
|
720
|
+
<section>
|
|
721
|
+
<h2 className="text-xl font-semibold text-foreground">7. Changes to This Policy</h2>
|
|
722
|
+
<p className="mt-3">
|
|
723
|
+
We may update this privacy policy from time to time. We will notify you of material changes by posting the updated policy on our website and updating the last-updated date. Continued use of ${escapeJsx(displayName)} after changes constitutes acceptance of the revised policy.
|
|
724
|
+
</p>
|
|
725
|
+
</section>
|
|
726
|
+
|
|
727
|
+
<section>
|
|
728
|
+
<h2 className="text-xl font-semibold text-foreground">8. Contact</h2>
|
|
729
|
+
<p className="mt-3">
|
|
730
|
+
For questions about this privacy policy or our data practices, contact us at privacy@${projectName || 'example'}.com.
|
|
731
|
+
</p>
|
|
732
|
+
</section>
|
|
733
|
+
</div>
|
|
734
|
+
</div>
|
|
735
|
+
</div>
|
|
736
|
+
</main>
|
|
737
|
+
<Footer />
|
|
738
|
+
</>
|
|
739
|
+
);
|
|
740
|
+
}
|
|
741
|
+
`;
|
|
742
|
+
}
|
|
743
|
+
/**
|
|
744
|
+
* Generate terms of service page
|
|
745
|
+
*
|
|
746
|
+
* @param projectName - Project name for context
|
|
747
|
+
* @param context - Optional content context for product-aware copy
|
|
748
|
+
* @returns Terms of service page source code
|
|
749
|
+
*/
|
|
750
|
+
export function generateWebsiteTermsPage(projectName, context) {
|
|
751
|
+
const displayName = context?.productName || projectName
|
|
752
|
+
?.split('-')
|
|
753
|
+
.map((w) => w.charAt(0).toUpperCase() + w.slice(1))
|
|
754
|
+
.join(' ') || 'Our Platform';
|
|
755
|
+
return `import type { Metadata } from 'next';
|
|
756
|
+
import Header from '@/components/Header';
|
|
757
|
+
import Footer from '@/components/Footer';
|
|
758
|
+
|
|
759
|
+
export const metadata: Metadata = {
|
|
760
|
+
title: 'Terms of Service',
|
|
761
|
+
description: '${escapeJsx(displayName)} terms of service. Read the terms governing use of our platform.',
|
|
762
|
+
};
|
|
763
|
+
|
|
764
|
+
export default function TermsPage() {
|
|
765
|
+
return (
|
|
766
|
+
<>
|
|
767
|
+
<Header />
|
|
768
|
+
<main className="py-20 sm:py-32">
|
|
769
|
+
<div className="container">
|
|
770
|
+
<div className="mx-auto max-w-3xl">
|
|
771
|
+
<h1 className="text-4xl font-bold tracking-tight text-foreground sm:text-5xl">
|
|
772
|
+
Terms of Service
|
|
773
|
+
</h1>
|
|
774
|
+
<p className="mt-4 text-sm text-muted-foreground">
|
|
775
|
+
Last updated: January 1, 2025
|
|
776
|
+
</p>
|
|
777
|
+
|
|
778
|
+
<div className="mt-12 space-y-10 text-muted-foreground leading-7">
|
|
779
|
+
<section>
|
|
780
|
+
<h2 className="text-xl font-semibold text-foreground">1. Acceptance of Terms</h2>
|
|
781
|
+
<p className="mt-3">
|
|
782
|
+
By accessing or using the ${escapeJsx(displayName)} platform, you agree to be bound by these Terms of Service. If you are using ${escapeJsx(displayName)} on behalf of an organization, you represent that you have authority to bind that organization to these terms.
|
|
783
|
+
</p>
|
|
784
|
+
</section>
|
|
785
|
+
|
|
786
|
+
<section>
|
|
787
|
+
<h2 className="text-xl font-semibold text-foreground">2. Service Description</h2>
|
|
788
|
+
<p className="mt-3">
|
|
789
|
+
${escapeJsx(displayName)} provides a software platform accessible via APIs, SDKs, and a web dashboard. Service features and availability may vary by subscription plan.
|
|
790
|
+
</p>
|
|
791
|
+
</section>
|
|
792
|
+
|
|
793
|
+
<section>
|
|
794
|
+
<h2 className="text-xl font-semibold text-foreground">3. Accounts and Access</h2>
|
|
795
|
+
<p className="mt-3">
|
|
796
|
+
You are responsible for maintaining the confidentiality of your account credentials and for all activities under your account. You must provide accurate registration information and promptly update it if it changes.
|
|
797
|
+
</p>
|
|
798
|
+
</section>
|
|
799
|
+
|
|
800
|
+
<section>
|
|
801
|
+
<h2 className="text-xl font-semibold text-foreground">4. Acceptable Use</h2>
|
|
802
|
+
<p className="mt-3">
|
|
803
|
+
You agree not to use ${escapeJsx(displayName)} to violate any applicable law, infringe on intellectual property rights, transmit malicious code, attempt to gain unauthorized access to our systems, or interfere with the platform operation. We reserve the right to suspend accounts that violate these terms.
|
|
804
|
+
</p>
|
|
805
|
+
</section>
|
|
806
|
+
|
|
807
|
+
<section>
|
|
808
|
+
<h2 className="text-xl font-semibold text-foreground">5. Intellectual Property</h2>
|
|
809
|
+
<p className="mt-3">
|
|
810
|
+
${escapeJsx(displayName)} and its licensors retain all rights to the platform, including software, documentation, and branding. Your subscription grants a limited, non-exclusive, non-transferable license to use the platform. You retain all rights to the data and configurations you create.
|
|
811
|
+
</p>
|
|
812
|
+
</section>
|
|
813
|
+
|
|
814
|
+
<section>
|
|
815
|
+
<h2 className="text-xl font-semibold text-foreground">6. Limitation of Liability</h2>
|
|
816
|
+
<p className="mt-3">
|
|
817
|
+
To the maximum extent permitted by law, ${escapeJsx(displayName)} shall not be liable for any indirect, incidental, special, consequential, or punitive damages arising from your use of the platform. Our total liability shall not exceed the fees paid by you in the twelve months preceding the claim.
|
|
818
|
+
</p>
|
|
819
|
+
</section>
|
|
820
|
+
|
|
821
|
+
<section>
|
|
822
|
+
<h2 className="text-xl font-semibold text-foreground">7. Termination</h2>
|
|
823
|
+
<p className="mt-3">
|
|
824
|
+
Either party may terminate the agreement at any time. You may cancel your subscription through your account settings. We may suspend or terminate access for violation of these terms. Upon termination, you may export your data within 30 days, after which it will be deleted.
|
|
825
|
+
</p>
|
|
826
|
+
</section>
|
|
827
|
+
|
|
828
|
+
<section>
|
|
829
|
+
<h2 className="text-xl font-semibold text-foreground">8. Governing Law</h2>
|
|
830
|
+
<p className="mt-3">
|
|
831
|
+
These terms shall be governed by and construed in accordance with the laws of the State of Delaware, United States, without regard to conflict of law principles.
|
|
832
|
+
</p>
|
|
833
|
+
</section>
|
|
834
|
+
|
|
835
|
+
<section>
|
|
836
|
+
<h2 className="text-xl font-semibold text-foreground">9. Contact</h2>
|
|
837
|
+
<p className="mt-3">
|
|
838
|
+
For questions about these terms, contact us at legal@${projectName || 'example'}.com.
|
|
839
|
+
</p>
|
|
840
|
+
</section>
|
|
841
|
+
</div>
|
|
842
|
+
</div>
|
|
843
|
+
</div>
|
|
844
|
+
</main>
|
|
845
|
+
<Footer />
|
|
846
|
+
</>
|
|
404
847
|
);
|
|
405
848
|
}
|
|
406
849
|
`;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"website-layout.js","sourceRoot":"","sources":["../../../src/generators/templates/website-layout.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAIH;;GAEG;AACH,SAAS,SAAS,CAAC,GAAW;IAC5B,OAAO,GAAG;SACP,OAAO,CAAC,KAAK,EAAE,MAAM,CAAC;SACtB,OAAO,CAAC,IAAI,EAAE,KAAK,CAAC;SACpB,OAAO,CAAC,IAAI,EAAE,KAAK,CAAC;SACpB,OAAO,CAAC,
|
|
1
|
+
{"version":3,"file":"website-layout.js","sourceRoot":"","sources":["../../../src/generators/templates/website-layout.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"website-pricing.js","sourceRoot":"","sources":["../../../src/generators/templates/website-pricing.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAIH;;GAEG;AACH,SAAS,SAAS,CAAC,GAAW;IAC5B,OAAO,GAAG;SACP,OAAO,CAAC,KAAK,EAAE,MAAM,CAAC;SACtB,OAAO,CAAC,IAAI,EAAE,KAAK,CAAC;SACpB,OAAO,CAAC,IAAI,EAAE,KAAK,CAAC;SACpB,OAAO,CAAC,
|
|
1
|
+
{"version":3,"file":"website-pricing.js","sourceRoot":"","sources":["../../../src/generators/templates/website-pricing.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"website-sections.js","sourceRoot":"","sources":["../../../src/generators/templates/website-sections.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAKH;;GAEG;AACH,SAAS,SAAS,CAAC,GAAW;IAC5B,OAAO,GAAG;SACP,OAAO,CAAC,KAAK,EAAE,MAAM,CAAC;SACtB,OAAO,CAAC,IAAI,EAAE,KAAK,CAAC;SACpB,OAAO,CAAC,IAAI,EAAE,KAAK,CAAC;SACpB,OAAO,CAAC,
|
|
1
|
+
{"version":3,"file":"website-sections.js","sourceRoot":"","sources":["../../../src/generators/templates/website-sections.ts"],"names":[],"mappings":"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"}
|