@contractspec/bundle.marketing 1.12.0 → 1.14.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/.turbo/turbo-build.log +146 -175
- package/.turbo/turbo-prebuild.log +1 -0
- package/CHANGELOG.md +57 -0
- package/dist/browser/components/marketing/ChangelogPage.js +92 -0
- package/dist/browser/components/marketing/CofounderPage.js +581 -0
- package/dist/browser/components/marketing/ContactClient.js +1379 -0
- package/dist/browser/components/marketing/ContributePage.js +487 -0
- package/dist/browser/components/marketing/DesignPartnerPage.js +272 -0
- package/dist/browser/components/marketing/LandingPage.js +629 -0
- package/dist/browser/components/marketing/PricingClient.js +1972 -0
- package/dist/browser/components/marketing/ProductClientPage.js +563 -0
- package/dist/browser/components/marketing/index.js +4818 -0
- package/dist/browser/components/marketing/pricing-thinking-modal.js +258 -0
- package/dist/browser/components/marketing/sections/AudienceSection.js +90 -0
- package/dist/browser/components/marketing/sections/CorePositioningSection.js +72 -0
- package/dist/browser/components/marketing/sections/CtaSection.js +67 -0
- package/dist/browser/components/marketing/sections/DevelopersSection.js +50 -0
- package/dist/browser/components/marketing/sections/FearsSection.js +105 -0
- package/dist/browser/components/marketing/sections/HeroMarketingSection.js +93 -0
- package/dist/browser/components/marketing/sections/IconGridSection.js +63 -0
- package/dist/browser/components/marketing/sections/OutputsSection.js +116 -0
- package/dist/browser/components/marketing/sections/ProblemSection.js +103 -0
- package/dist/browser/components/marketing/sections/SolutionSection.js +103 -0
- package/dist/browser/components/marketing/sections/StepsSection.js +109 -0
- package/dist/browser/components/marketing/waitlist-section.js +1104 -0
- package/dist/browser/components/templates/TemplatesClientPage.js +5662 -0
- package/dist/browser/components/templates/TemplatesPage.js +177 -0
- package/dist/browser/components/templates/TemplatesPreviewModal.js +124 -0
- package/dist/browser/components/templates/index.js +5831 -0
- package/dist/browser/index.js +6485 -0
- package/dist/browser/libs/email/client.js +122 -0
- package/dist/browser/libs/email/contact.js +190 -0
- package/dist/browser/libs/email/newsletter.js +215 -0
- package/dist/browser/libs/email/types.js +2 -0
- package/dist/browser/libs/email/utils.js +16 -0
- package/dist/browser/libs/email/waitlist-application.js +295 -0
- package/dist/browser/libs/email/waitlist.js +225 -0
- package/dist/browser/libs/pricing-examples.js +26 -0
- package/dist/browser/registry/engine.js +5293 -0
- package/dist/browser/registry/factory.js +52 -0
- package/dist/browser/registry/index.js +5358 -0
- package/dist/browser/registry/registry-docs.js +343 -0
- package/dist/browser/registry/registry-landing.js +4937 -0
- package/dist/browser/registry/registry.js +5279 -0
- package/dist/browser/registry/types.js +0 -0
- package/dist/browser/registry/utils.js +5340 -0
- package/dist/components/marketing/ChangelogPage.d.ts +11 -17
- package/dist/components/marketing/ChangelogPage.d.ts.map +1 -1
- package/dist/components/marketing/ChangelogPage.js +84 -62
- package/dist/components/marketing/CofounderPage.d.ts +1 -6
- package/dist/components/marketing/CofounderPage.d.ts.map +1 -1
- package/dist/components/marketing/CofounderPage.js +544 -436
- package/dist/components/marketing/ContactClient.d.ts +1 -6
- package/dist/components/marketing/ContactClient.d.ts.map +1 -1
- package/dist/components/marketing/ContactClient.js +1371 -155
- package/dist/components/marketing/ContributePage.d.ts +3 -8
- package/dist/components/marketing/ContributePage.d.ts.map +1 -1
- package/dist/components/marketing/ContributePage.js +478 -358
- package/dist/components/marketing/DesignPartnerPage.d.ts +3 -8
- package/dist/components/marketing/DesignPartnerPage.d.ts.map +1 -1
- package/dist/components/marketing/DesignPartnerPage.js +263 -211
- package/dist/components/marketing/LandingPage.d.ts +1 -6
- package/dist/components/marketing/LandingPage.d.ts.map +1 -1
- package/dist/components/marketing/LandingPage.js +623 -37
- package/dist/components/marketing/PricingClient.d.ts +1 -6
- package/dist/components/marketing/PricingClient.d.ts.map +1 -1
- package/dist/components/marketing/PricingClient.js +1962 -516
- package/dist/components/marketing/ProductClientPage.d.ts +1 -6
- package/dist/components/marketing/ProductClientPage.d.ts.map +1 -1
- package/dist/components/marketing/ProductClientPage.js +556 -458
- package/dist/components/marketing/index.d.ts +11 -11
- package/dist/components/marketing/index.d.ts.map +1 -0
- package/dist/components/marketing/index.js +4813 -12
- package/dist/components/marketing/pricing-thinking-modal.d.ts +5 -13
- package/dist/components/marketing/pricing-thinking-modal.d.ts.map +1 -1
- package/dist/components/marketing/pricing-thinking-modal.js +248 -197
- package/dist/components/marketing/sections/AudienceSection.d.ts +1 -6
- package/dist/components/marketing/sections/AudienceSection.d.ts.map +1 -1
- package/dist/components/marketing/sections/AudienceSection.js +80 -63
- package/dist/components/marketing/sections/CorePositioningSection.d.ts +1 -6
- package/dist/components/marketing/sections/CorePositioningSection.d.ts.map +1 -1
- package/dist/components/marketing/sections/CorePositioningSection.js +62 -54
- package/dist/components/marketing/sections/CtaSection.d.ts +1 -6
- package/dist/components/marketing/sections/CtaSection.d.ts.map +1 -1
- package/dist/components/marketing/sections/CtaSection.js +58 -50
- package/dist/components/marketing/sections/DevelopersSection.d.ts +1 -6
- package/dist/components/marketing/sections/DevelopersSection.d.ts.map +1 -1
- package/dist/components/marketing/sections/DevelopersSection.js +40 -40
- package/dist/components/marketing/sections/FearsSection.d.ts +1 -6
- package/dist/components/marketing/sections/FearsSection.d.ts.map +1 -1
- package/dist/components/marketing/sections/FearsSection.js +96 -44
- package/dist/components/marketing/sections/HeroMarketingSection.d.ts +1 -6
- package/dist/components/marketing/sections/HeroMarketingSection.d.ts.map +1 -1
- package/dist/components/marketing/sections/HeroMarketingSection.js +82 -71
- package/dist/components/marketing/sections/IconGridSection.d.ts +25 -39
- package/dist/components/marketing/sections/IconGridSection.d.ts.map +1 -1
- package/dist/components/marketing/sections/IconGridSection.js +55 -41
- package/dist/components/marketing/sections/OutputsSection.d.ts +1 -6
- package/dist/components/marketing/sections/OutputsSection.d.ts.map +1 -1
- package/dist/components/marketing/sections/OutputsSection.js +107 -55
- package/dist/components/marketing/sections/ProblemSection.d.ts +1 -6
- package/dist/components/marketing/sections/ProblemSection.d.ts.map +1 -1
- package/dist/components/marketing/sections/ProblemSection.js +94 -42
- package/dist/components/marketing/sections/SolutionSection.d.ts +1 -6
- package/dist/components/marketing/sections/SolutionSection.d.ts.map +1 -1
- package/dist/components/marketing/sections/SolutionSection.js +94 -42
- package/dist/components/marketing/sections/StepsSection.d.ts +1 -6
- package/dist/components/marketing/sections/StepsSection.d.ts.map +1 -1
- package/dist/components/marketing/sections/StepsSection.js +100 -48
- package/dist/components/marketing/waitlist-section.d.ts +5 -12
- package/dist/components/marketing/waitlist-section.d.ts.map +1 -1
- package/dist/components/marketing/waitlist-section.js +1089 -568
- package/dist/components/templates/TemplatesClientPage.d.ts +1 -6
- package/dist/components/templates/TemplatesClientPage.d.ts.map +1 -1
- package/dist/components/templates/TemplatesClientPage.js +5649 -617
- package/dist/components/templates/TemplatesPage.d.ts +1 -6
- package/dist/components/templates/TemplatesPage.d.ts.map +1 -1
- package/dist/components/templates/TemplatesPage.js +163 -116
- package/dist/components/templates/TemplatesPreviewModal.d.ts +5 -12
- package/dist/components/templates/TemplatesPreviewModal.d.ts.map +1 -1
- package/dist/components/templates/TemplatesPreviewModal.js +113 -131
- package/dist/components/templates/index.d.ts +4 -4
- package/dist/components/templates/index.d.ts.map +1 -0
- package/dist/components/templates/index.js +5825 -4
- package/dist/index.d.ts +9 -29
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +6480 -28
- package/dist/libs/email/client.d.ts +9 -12
- package/dist/libs/email/client.d.ts.map +1 -1
- package/dist/libs/email/client.js +109 -105
- package/dist/libs/email/client.test.d.ts +2 -0
- package/dist/libs/email/client.test.d.ts.map +1 -0
- package/dist/libs/email/contact.d.ts +2 -6
- package/dist/libs/email/contact.d.ts.map +1 -1
- package/dist/libs/email/contact.js +155 -41
- package/dist/libs/email/newsletter.d.ts +2 -6
- package/dist/libs/email/newsletter.d.ts.map +1 -1
- package/dist/libs/email/newsletter.js +169 -54
- package/dist/libs/email/types.d.ts +48 -52
- package/dist/libs/email/types.d.ts.map +1 -1
- package/dist/libs/email/types.js +3 -1
- package/dist/libs/email/utils.d.ts +2 -5
- package/dist/libs/email/utils.d.ts.map +1 -1
- package/dist/libs/email/utils.js +10 -6
- package/dist/libs/email/waitlist-application.d.ts +2 -6
- package/dist/libs/email/waitlist-application.d.ts.map +1 -1
- package/dist/libs/email/waitlist-application.js +191 -71
- package/dist/libs/email/waitlist.d.ts +2 -6
- package/dist/libs/email/waitlist.d.ts.map +1 -1
- package/dist/libs/email/waitlist.js +171 -56
- package/dist/libs/pricing-examples.d.ts +13 -16
- package/dist/libs/pricing-examples.d.ts.map +1 -1
- package/dist/libs/pricing-examples.js +20 -20
- package/dist/node/components/marketing/ChangelogPage.js +87 -0
- package/dist/node/components/marketing/CofounderPage.js +576 -0
- package/dist/node/components/marketing/ContactClient.js +1374 -0
- package/dist/node/components/marketing/ContributePage.js +482 -0
- package/dist/node/components/marketing/DesignPartnerPage.js +267 -0
- package/dist/node/components/marketing/LandingPage.js +624 -0
- package/dist/node/components/marketing/PricingClient.js +1967 -0
- package/dist/node/components/marketing/ProductClientPage.js +558 -0
- package/dist/node/components/marketing/index.js +4813 -0
- package/dist/node/components/marketing/pricing-thinking-modal.js +253 -0
- package/dist/node/components/marketing/sections/AudienceSection.js +85 -0
- package/dist/node/components/marketing/sections/CorePositioningSection.js +67 -0
- package/dist/node/components/marketing/sections/CtaSection.js +62 -0
- package/dist/node/components/marketing/sections/DevelopersSection.js +45 -0
- package/dist/node/components/marketing/sections/FearsSection.js +100 -0
- package/dist/node/components/marketing/sections/HeroMarketingSection.js +88 -0
- package/dist/node/components/marketing/sections/IconGridSection.js +58 -0
- package/dist/node/components/marketing/sections/OutputsSection.js +111 -0
- package/dist/node/components/marketing/sections/ProblemSection.js +98 -0
- package/dist/node/components/marketing/sections/SolutionSection.js +98 -0
- package/dist/node/components/marketing/sections/StepsSection.js +104 -0
- package/dist/node/components/marketing/waitlist-section.js +1099 -0
- package/dist/node/components/templates/TemplatesClientPage.js +5657 -0
- package/dist/node/components/templates/TemplatesPage.js +172 -0
- package/dist/node/components/templates/TemplatesPreviewModal.js +119 -0
- package/dist/node/components/templates/index.js +5826 -0
- package/dist/node/index.js +6480 -0
- package/dist/node/libs/email/client.js +117 -0
- package/dist/node/libs/email/contact.js +185 -0
- package/dist/node/libs/email/newsletter.js +210 -0
- package/dist/node/libs/email/types.js +2 -0
- package/dist/node/libs/email/utils.js +11 -0
- package/dist/node/libs/email/waitlist-application.js +290 -0
- package/dist/node/libs/email/waitlist.js +220 -0
- package/dist/node/libs/pricing-examples.js +21 -0
- package/dist/node/registry/engine.js +5288 -0
- package/dist/node/registry/factory.js +47 -0
- package/dist/node/registry/index.js +5353 -0
- package/dist/node/registry/registry-docs.js +338 -0
- package/dist/node/registry/registry-landing.js +4932 -0
- package/dist/node/registry/registry.js +5274 -0
- package/dist/node/registry/types.js +0 -0
- package/dist/node/registry/utils.js +5335 -0
- package/dist/registry/engine.d.ts +4 -8
- package/dist/registry/engine.d.ts.map +1 -1
- package/dist/registry/engine.js +5287 -23
- package/dist/registry/factory.d.ts +30 -34
- package/dist/registry/factory.d.ts.map +1 -1
- package/dist/registry/factory.js +42 -56
- package/dist/registry/index.d.ts +8 -8
- package/dist/registry/index.d.ts.map +1 -0
- package/dist/registry/index.js +5353 -8
- package/dist/registry/registry-docs.d.ts +4 -8
- package/dist/registry/registry-docs.d.ts.map +1 -1
- package/dist/registry/registry-docs.js +242 -209
- package/dist/registry/registry-landing.d.ts +5 -9
- package/dist/registry/registry-landing.d.ts.map +1 -1
- package/dist/registry/registry-landing.js +4930 -93
- package/dist/registry/registry.d.ts +7 -11
- package/dist/registry/registry.d.ts.map +1 -1
- package/dist/registry/registry.js +5262 -49
- package/dist/registry/types.d.ts +6 -10
- package/dist/registry/types.d.ts.map +1 -1
- package/dist/registry/types.js +1 -0
- package/dist/registry/utils.d.ts +10 -14
- package/dist/registry/utils.d.ts.map +1 -1
- package/dist/registry/utils.js +5330 -49
- package/package.json +355 -73
- package/tsdown.config.js +1 -2
- package/.turbo/turbo-build$colon$types.log +0 -1
- package/.turbo/turbo-lint.log +0 -3
- package/dist/components/marketing/ChangelogPage.js.map +0 -1
- package/dist/components/marketing/CofounderPage.js.map +0 -1
- package/dist/components/marketing/ContactClient.js.map +0 -1
- package/dist/components/marketing/ContributePage.js.map +0 -1
- package/dist/components/marketing/DesignPartnerPage.js.map +0 -1
- package/dist/components/marketing/LandingPage.js.map +0 -1
- package/dist/components/marketing/PricingClient.js.map +0 -1
- package/dist/components/marketing/ProductClientPage.js.map +0 -1
- package/dist/components/marketing/pricing-thinking-modal.js.map +0 -1
- package/dist/components/marketing/sections/AudienceSection.js.map +0 -1
- package/dist/components/marketing/sections/CorePositioningSection.js.map +0 -1
- package/dist/components/marketing/sections/CtaSection.js.map +0 -1
- package/dist/components/marketing/sections/DevelopersSection.js.map +0 -1
- package/dist/components/marketing/sections/FearsSection.js.map +0 -1
- package/dist/components/marketing/sections/HeroMarketingSection.js.map +0 -1
- package/dist/components/marketing/sections/IconGridSection.js.map +0 -1
- package/dist/components/marketing/sections/OutputsSection.js.map +0 -1
- package/dist/components/marketing/sections/ProblemSection.js.map +0 -1
- package/dist/components/marketing/sections/SolutionSection.js.map +0 -1
- package/dist/components/marketing/sections/StepsSection.js.map +0 -1
- package/dist/components/marketing/waitlist-section.js.map +0 -1
- package/dist/components/templates/TemplatesClientPage.js.map +0 -1
- package/dist/components/templates/TemplatesPage.js.map +0 -1
- package/dist/components/templates/TemplatesPreviewModal.js.map +0 -1
- package/dist/libs/email/client.js.map +0 -1
- package/dist/libs/email/contact.js.map +0 -1
- package/dist/libs/email/newsletter.js.map +0 -1
- package/dist/libs/email/utils.js.map +0 -1
- package/dist/libs/email/waitlist-application.js.map +0 -1
- package/dist/libs/email/waitlist.js.map +0 -1
- package/dist/libs/pricing-examples.js.map +0 -1
- package/dist/registry/engine.js.map +0 -1
- package/dist/registry/factory.js.map +0 -1
- package/dist/registry/registry-docs.js.map +0 -1
- package/dist/registry/registry-landing.js.map +0 -1
- package/dist/registry/registry.js.map +0 -1
- package/dist/registry/utils.js.map +0 -1
- package/tsconfig.tsbuildinfo +0 -1
|
@@ -1,16 +1,8 @@
|
|
|
1
|
-
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
2
|
-
|
|
3
|
-
//#region src/components/marketing/pricing-thinking-modal.d.ts
|
|
4
1
|
interface PricingThinkingModalProps {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
2
|
+
open: boolean;
|
|
3
|
+
onOpenChange: (open: boolean) => void;
|
|
4
|
+
onApplyClick?: () => void;
|
|
8
5
|
}
|
|
9
|
-
declare function PricingThinkingModal({
|
|
10
|
-
|
|
11
|
-
onOpenChange,
|
|
12
|
-
onApplyClick
|
|
13
|
-
}: PricingThinkingModalProps): react_jsx_runtime0.JSX.Element;
|
|
14
|
-
//#endregion
|
|
15
|
-
export { PricingThinkingModal };
|
|
6
|
+
export declare function PricingThinkingModal({ open, onOpenChange, onApplyClick, }: PricingThinkingModalProps): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export {};
|
|
16
8
|
//# sourceMappingURL=pricing-thinking-modal.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pricing-thinking-modal.d.ts","
|
|
1
|
+
{"version":3,"file":"pricing-thinking-modal.d.ts","sourceRoot":"","sources":["../../../src/components/marketing/pricing-thinking-modal.tsx"],"names":[],"mappings":"AAwFA,UAAU,yBAAyB;IACjC,IAAI,EAAE,OAAO,CAAC;IACd,YAAY,EAAE,CAAC,IAAI,EAAE,OAAO,KAAK,IAAI,CAAC;IACtC,YAAY,CAAC,EAAE,MAAM,IAAI,CAAC;CAC3B;AAED,wBAAgB,oBAAoB,CAAC,EACnC,IAAI,EACJ,YAAY,EACZ,YAAY,GACb,EAAE,yBAAyB,2CA6H3B"}
|
|
@@ -1,202 +1,253 @@
|
|
|
1
|
-
|
|
1
|
+
// @bun
|
|
2
|
+
var __require = import.meta.require;
|
|
2
3
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
4
|
+
// src/libs/pricing-examples.ts
|
|
5
|
+
var PRICING_EXAMPLES = {
|
|
6
|
+
free: {
|
|
7
|
+
regenerationsPerMonth: 200,
|
|
8
|
+
aiActionsPerMonth: 100,
|
|
9
|
+
projects: 1
|
|
10
|
+
},
|
|
11
|
+
builder: {
|
|
12
|
+
regenerationsPerMonthHint: "1,000\u20132,000+",
|
|
13
|
+
aiActionsPerMonthHint: "1,000+"
|
|
14
|
+
},
|
|
15
|
+
team: {
|
|
16
|
+
description: "Higher limits + cheaper per-regen at scale"
|
|
17
|
+
}
|
|
18
|
+
};
|
|
8
19
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
20
|
+
// src/components/marketing/pricing-thinking-modal.tsx
|
|
21
|
+
import { CheckCircle } from "lucide-react";
|
|
22
|
+
import {
|
|
23
|
+
Dialog,
|
|
24
|
+
DialogContent,
|
|
25
|
+
DialogDescription,
|
|
26
|
+
DialogHeader,
|
|
27
|
+
DialogTitle
|
|
28
|
+
} from "@contractspec/lib.ui-kit-web/ui/dialog";
|
|
29
|
+
import { Button } from "@contractspec/lib.design-system";
|
|
30
|
+
import { jsxDEV } from "react/jsx-dev-runtime";
|
|
31
|
+
"use client";
|
|
32
|
+
var pricingTiers = [
|
|
33
|
+
{
|
|
34
|
+
tag: "Planned",
|
|
35
|
+
title: "Free",
|
|
36
|
+
priceLine: "For hobbyists and pre-PMF teams",
|
|
37
|
+
bullets: [
|
|
38
|
+
"1 active project",
|
|
39
|
+
"Small spec size",
|
|
40
|
+
`Example: ~${PRICING_EXAMPLES.free.regenerationsPerMonth} free regenerations per month`,
|
|
41
|
+
`Example: ~${PRICING_EXAMPLES.free.aiActionsPerMonth} free AI agent actions per month`,
|
|
42
|
+
"Unlimited collaborators"
|
|
43
|
+
],
|
|
44
|
+
note: "Good enough to build and launch a real product before paying."
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
tag: "Planned",
|
|
48
|
+
title: "Builder",
|
|
49
|
+
priceLine: "Usage-based, for solo builders and small teams",
|
|
50
|
+
bullets: [
|
|
51
|
+
"More projects",
|
|
52
|
+
`More monthly regenerations included (e.g. ${PRICING_EXAMPLES.builder.regenerationsPerMonthHint})`,
|
|
53
|
+
`More AI agent actions included (e.g. ${PRICING_EXAMPLES.builder.aiActionsPerMonthHint})`,
|
|
54
|
+
"Pay-as-you-go for extra regenerations and AI",
|
|
55
|
+
"Basic environments (dev / prod)"
|
|
56
|
+
],
|
|
57
|
+
note: "Pay for how fast and how often you evolve your system, not for seats."
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
tag: "Planned",
|
|
61
|
+
title: "Team & Platform",
|
|
62
|
+
priceLine: "For teams standardizing on ContractSpec",
|
|
63
|
+
bullets: [
|
|
64
|
+
"Multiple projects and environments",
|
|
65
|
+
"Higher regeneration and AI action limits",
|
|
66
|
+
"Cheaper overages as you scale",
|
|
67
|
+
"Advanced RBAC and governance",
|
|
68
|
+
"SSO, audit trails, and longer retention"
|
|
69
|
+
],
|
|
70
|
+
note: "For platform teams using ContractSpec as infra for multiple apps."
|
|
71
|
+
}
|
|
50
72
|
];
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
73
|
+
var usageMetrics = [
|
|
74
|
+
{
|
|
75
|
+
name: "Regenerations",
|
|
76
|
+
freeTier: `Free tier: e.g. ~${PRICING_EXAMPLES.free.regenerationsPerMonth} regenerations / month`,
|
|
77
|
+
beyond: "Beyond: pay per additional regeneration, with volume discounts."
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
name: "AI agent actions",
|
|
81
|
+
freeTier: `Free tier: e.g. ~${PRICING_EXAMPLES.free.aiActionsPerMonth} AI agent actions / month`,
|
|
82
|
+
beyond: "Beyond: pay-as-you-go for extra AI usage."
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
name: "Projects",
|
|
86
|
+
freeTier: `Free tier: ${PRICING_EXAMPLES.free.projects} project`,
|
|
87
|
+
beyond: "Builder / Team: more projects included; extra projects available as you scale."
|
|
88
|
+
}
|
|
67
89
|
];
|
|
68
|
-
function PricingThinkingModal({
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
90
|
+
function PricingThinkingModal({
|
|
91
|
+
open,
|
|
92
|
+
onOpenChange,
|
|
93
|
+
onApplyClick
|
|
94
|
+
}) {
|
|
95
|
+
return /* @__PURE__ */ jsxDEV(Dialog, {
|
|
96
|
+
open,
|
|
97
|
+
onOpenChange,
|
|
98
|
+
children: /* @__PURE__ */ jsxDEV(DialogContent, {
|
|
99
|
+
className: "max-h-[90vh] w-full overflow-y-auto md:max-w-5xl",
|
|
100
|
+
children: [
|
|
101
|
+
/* @__PURE__ */ jsxDEV(DialogHeader, {
|
|
102
|
+
children: [
|
|
103
|
+
/* @__PURE__ */ jsxDEV(DialogTitle, {
|
|
104
|
+
children: "Tentative pricing (work in progress)"
|
|
105
|
+
}, undefined, false, undefined, this),
|
|
106
|
+
/* @__PURE__ */ jsxDEV(DialogDescription, {
|
|
107
|
+
children: "We're still in design-partner mode. This is a draft of how we expect pricing to look once we open public access."
|
|
108
|
+
}, undefined, false, undefined, this)
|
|
109
|
+
]
|
|
110
|
+
}, undefined, true, undefined, this),
|
|
111
|
+
/* @__PURE__ */ jsxDEV("div", {
|
|
112
|
+
className: "space-y-8",
|
|
113
|
+
children: [
|
|
114
|
+
/* @__PURE__ */ jsxDEV("div", {
|
|
115
|
+
className: "space-y-4",
|
|
116
|
+
children: [
|
|
117
|
+
/* @__PURE__ */ jsxDEV("div", {
|
|
118
|
+
className: "flex items-center gap-2",
|
|
119
|
+
children: [
|
|
120
|
+
/* @__PURE__ */ jsxDEV("span", {
|
|
121
|
+
className: "text-muted-foreground text-xs font-medium",
|
|
122
|
+
children: "Draft"
|
|
123
|
+
}, undefined, false, undefined, this),
|
|
124
|
+
/* @__PURE__ */ jsxDEV("span", {
|
|
125
|
+
className: "text-muted-foreground text-xs",
|
|
126
|
+
children: "\u2022"
|
|
127
|
+
}, undefined, false, undefined, this),
|
|
128
|
+
/* @__PURE__ */ jsxDEV("span", {
|
|
129
|
+
className: "text-muted-foreground text-xs",
|
|
130
|
+
children: "Subject to change"
|
|
131
|
+
}, undefined, false, undefined, this)
|
|
132
|
+
]
|
|
133
|
+
}, undefined, true, undefined, this),
|
|
134
|
+
/* @__PURE__ */ jsxDEV("div", {
|
|
135
|
+
className: "grid gap-4 md:grid-cols-3",
|
|
136
|
+
children: pricingTiers.map((tier) => /* @__PURE__ */ jsxDEV("div", {
|
|
137
|
+
className: "card-subtle relative space-y-4 p-6",
|
|
138
|
+
children: [
|
|
139
|
+
/* @__PURE__ */ jsxDEV("div", {
|
|
140
|
+
className: "bg-muted border-border absolute -top-2 left-1/2 -translate-x-1/2 rounded-full border px-2 py-0.5 text-xs font-medium",
|
|
141
|
+
children: tier.tag
|
|
142
|
+
}, undefined, false, undefined, this),
|
|
143
|
+
/* @__PURE__ */ jsxDEV("div", {
|
|
144
|
+
className: "space-y-2 pt-2",
|
|
145
|
+
children: [
|
|
146
|
+
/* @__PURE__ */ jsxDEV("h3", {
|
|
147
|
+
className: "text-xl font-bold",
|
|
148
|
+
children: tier.title
|
|
149
|
+
}, undefined, false, undefined, this),
|
|
150
|
+
/* @__PURE__ */ jsxDEV("p", {
|
|
151
|
+
className: "text-muted-foreground text-sm",
|
|
152
|
+
children: tier.priceLine
|
|
153
|
+
}, undefined, false, undefined, this)
|
|
154
|
+
]
|
|
155
|
+
}, undefined, true, undefined, this),
|
|
156
|
+
/* @__PURE__ */ jsxDEV("ul", {
|
|
157
|
+
className: "space-y-2",
|
|
158
|
+
children: tier.bullets.map((bullet, i) => /* @__PURE__ */ jsxDEV("li", {
|
|
159
|
+
className: "text-muted-foreground flex gap-2 text-sm",
|
|
160
|
+
children: [
|
|
161
|
+
/* @__PURE__ */ jsxDEV(CheckCircle, {
|
|
162
|
+
size: 14,
|
|
163
|
+
className: "mt-0.5 shrink-0 text-violet-400"
|
|
164
|
+
}, undefined, false, undefined, this),
|
|
165
|
+
bullet
|
|
166
|
+
]
|
|
167
|
+
}, i, true, undefined, this))
|
|
168
|
+
}, undefined, false, undefined, this),
|
|
169
|
+
/* @__PURE__ */ jsxDEV("p", {
|
|
170
|
+
className: "text-muted-foreground text-xs italic",
|
|
171
|
+
children: tier.note
|
|
172
|
+
}, undefined, false, undefined, this)
|
|
173
|
+
]
|
|
174
|
+
}, tier.title, true, undefined, this))
|
|
175
|
+
}, undefined, false, undefined, this)
|
|
176
|
+
]
|
|
177
|
+
}, undefined, true, undefined, this),
|
|
178
|
+
/* @__PURE__ */ jsxDEV("div", {
|
|
179
|
+
className: "border-border space-y-4 border-t pt-6",
|
|
180
|
+
children: [
|
|
181
|
+
/* @__PURE__ */ jsxDEV("div", {
|
|
182
|
+
children: [
|
|
183
|
+
/* @__PURE__ */ jsxDEV("h3", {
|
|
184
|
+
className: "text-lg font-bold",
|
|
185
|
+
children: "Usage-based, with a generous free tier"
|
|
186
|
+
}, undefined, false, undefined, this),
|
|
187
|
+
/* @__PURE__ */ jsxDEV("p", {
|
|
188
|
+
className: "text-muted-foreground mt-2 text-sm",
|
|
189
|
+
children: "Inspired by products like PostHog, we plan to keep a generous free tier on all plans, then charge based on actual usage: regenerations, AI agent actions, and the number of projects you run on ContractSpec."
|
|
190
|
+
}, undefined, false, undefined, this),
|
|
191
|
+
/* @__PURE__ */ jsxDEV("p", {
|
|
192
|
+
className: "text-muted-foreground mt-3 text-xs italic",
|
|
193
|
+
children: "Free tier limits are intentionally small but useful: enough to try the agent and regenerate a real project, not enough to run a full team's workload for free."
|
|
194
|
+
}, undefined, false, undefined, this)
|
|
195
|
+
]
|
|
196
|
+
}, undefined, true, undefined, this),
|
|
197
|
+
/* @__PURE__ */ jsxDEV("div", {
|
|
198
|
+
className: "grid gap-4 md:grid-cols-3",
|
|
199
|
+
children: usageMetrics.map((metric) => /* @__PURE__ */ jsxDEV("div", {
|
|
200
|
+
className: "card-subtle space-y-2 p-4",
|
|
201
|
+
children: [
|
|
202
|
+
/* @__PURE__ */ jsxDEV("h4", {
|
|
203
|
+
className: "text-sm font-semibold",
|
|
204
|
+
children: metric.name
|
|
205
|
+
}, undefined, false, undefined, this),
|
|
206
|
+
/* @__PURE__ */ jsxDEV("p", {
|
|
207
|
+
className: "text-muted-foreground text-xs",
|
|
208
|
+
children: metric.freeTier
|
|
209
|
+
}, undefined, false, undefined, this),
|
|
210
|
+
/* @__PURE__ */ jsxDEV("p", {
|
|
211
|
+
className: "text-muted-foreground text-xs",
|
|
212
|
+
children: metric.beyond
|
|
213
|
+
}, undefined, false, undefined, this)
|
|
214
|
+
]
|
|
215
|
+
}, metric.name, true, undefined, this))
|
|
216
|
+
}, undefined, false, undefined, this)
|
|
217
|
+
]
|
|
218
|
+
}, undefined, true, undefined, this),
|
|
219
|
+
/* @__PURE__ */ jsxDEV("div", {
|
|
220
|
+
className: "border-border space-y-4 border-t pt-6",
|
|
221
|
+
children: [
|
|
222
|
+
/* @__PURE__ */ jsxDEV("p", {
|
|
223
|
+
className: "text-muted-foreground text-xs",
|
|
224
|
+
children: "These numbers are examples only. Final pricing and limits will evolve as we learn from design partners."
|
|
225
|
+
}, undefined, false, undefined, this),
|
|
226
|
+
/* @__PURE__ */ jsxDEV("p", {
|
|
227
|
+
className: "text-muted-foreground text-xs",
|
|
228
|
+
children: "This is a tentative pricing model. We're pre-PMF and pricing is still in draft, subject to change based on what we learn."
|
|
229
|
+
}, undefined, false, undefined, this),
|
|
230
|
+
/* @__PURE__ */ jsxDEV("p", {
|
|
231
|
+
className: "text-muted-foreground text-xs",
|
|
232
|
+
children: "Design partners get early access and a founding discount when paid plans launch."
|
|
233
|
+
}, undefined, false, undefined, this),
|
|
234
|
+
onApplyClick && /* @__PURE__ */ jsxDEV(Button, {
|
|
235
|
+
onClick: () => {
|
|
236
|
+
onOpenChange(false);
|
|
237
|
+
onApplyClick();
|
|
238
|
+
},
|
|
239
|
+
className: "w-full",
|
|
240
|
+
variant: "outline",
|
|
241
|
+
children: "Apply as a design partner"
|
|
242
|
+
}, undefined, false, undefined, this)
|
|
243
|
+
]
|
|
244
|
+
}, undefined, true, undefined, this)
|
|
245
|
+
]
|
|
246
|
+
}, undefined, true, undefined, this)
|
|
247
|
+
]
|
|
248
|
+
}, undefined, true, undefined, this)
|
|
249
|
+
}, undefined, false, undefined, this);
|
|
198
250
|
}
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
//# sourceMappingURL=pricing-thinking-modal.js.map
|
|
251
|
+
export {
|
|
252
|
+
PricingThinkingModal
|
|
253
|
+
};
|
|
@@ -1,7 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
//#region src/components/marketing/sections/AudienceSection.d.ts
|
|
4
|
-
declare function AudienceSection(): react_jsx_runtime0.JSX.Element;
|
|
5
|
-
//#endregion
|
|
6
|
-
export { AudienceSection };
|
|
1
|
+
export declare function AudienceSection(): import("react/jsx-runtime").JSX.Element;
|
|
7
2
|
//# sourceMappingURL=AudienceSection.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AudienceSection.d.ts","
|
|
1
|
+
{"version":3,"file":"AudienceSection.d.ts","sourceRoot":"","sources":["../../../../src/components/marketing/sections/AudienceSection.tsx"],"names":[],"mappings":"AAsCA,wBAAgB,eAAe,4CA2B9B"}
|