@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,68 +1,85 @@
|
|
|
1
|
+
// @bun
|
|
2
|
+
var __require = import.meta.require;
|
|
3
|
+
|
|
4
|
+
// src/components/marketing/sections/AudienceSection.tsx
|
|
5
|
+
import {
|
|
6
|
+
MarketingCard,
|
|
7
|
+
MarketingCardContent,
|
|
8
|
+
MarketingCardHeader,
|
|
9
|
+
MarketingCardTitle,
|
|
10
|
+
MarketingCardsSection
|
|
11
|
+
} from "@contractspec/lib.design-system";
|
|
1
12
|
import { VStack } from "@contractspec/lib.ui-kit-web/ui/stack";
|
|
2
|
-
import { MarketingCard, MarketingCardContent, MarketingCardHeader, MarketingCardTitle, MarketingCardsSection } from "@contractspec/lib.design-system";
|
|
3
13
|
import { Muted, Small } from "@contractspec/lib.ui-kit-web/ui/typography";
|
|
4
|
-
import {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
body: "Growing companies that need audit trails, API governance, or regulatory compliance. AI-generated code doesn't meet compliance requirements.",
|
|
31
|
-
need: "Need: Governance layer, change tracking, contract enforcement."
|
|
32
|
-
}
|
|
14
|
+
import { jsxDEV } from "react/jsx-dev-runtime";
|
|
15
|
+
var audiences = [
|
|
16
|
+
{
|
|
17
|
+
tier: "Tier 1: Priority",
|
|
18
|
+
title: "AI-Native Startups & Technical Founders",
|
|
19
|
+
body: "Solo founders or small teams using Cursor, Copilot, Claude, or AI agents heavily. Messy AI-generated backends and frontends, inconsistent APIs, code that is hard to refactor.",
|
|
20
|
+
need: "Need: A way to stabilize AI-generated code without rewriting it."
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
tier: "Tier 1: Priority",
|
|
24
|
+
title: "Small Teams with AI-Generated Chaos",
|
|
25
|
+
body: "2-10 person teams that shipped fast with AI and now have tech debt. Multiple surfaces out of sync, no source of truth, afraid to touch AI-generated code.",
|
|
26
|
+
need: "Need: Incremental stabilization, safe regeneration, contracts as guardrails."
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
tier: "Tier 2: Growth",
|
|
30
|
+
title: "AI Dev Agencies",
|
|
31
|
+
body: "Agencies building many projects for clients using AI-assisted development. Repeating the same patterns, inconsistent quality across projects, handoff nightmares.",
|
|
32
|
+
need: "Need: Reusable templates, consistent contracts, professional handoff artifacts."
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
tier: "Tier 2: Growth",
|
|
36
|
+
title: "Scaleups with Compliance Needs",
|
|
37
|
+
body: "Growing companies that need audit trails, API governance, or regulatory compliance. AI-generated code doesn't meet compliance requirements.",
|
|
38
|
+
need: "Need: Governance layer, change tracking, contract enforcement."
|
|
39
|
+
}
|
|
33
40
|
];
|
|
34
41
|
function AudienceSection() {
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
42
|
+
return /* @__PURE__ */ jsxDEV(MarketingCardsSection, {
|
|
43
|
+
tone: "default",
|
|
44
|
+
columns: 2,
|
|
45
|
+
eyebrow: "Who It's For",
|
|
46
|
+
title: "Built for teams drowning in AI-generated code",
|
|
47
|
+
maxWidth: "xl",
|
|
48
|
+
children: audiences.map((item) => /* @__PURE__ */ jsxDEV(MarketingCard, {
|
|
49
|
+
tone: "muted",
|
|
50
|
+
children: [
|
|
51
|
+
/* @__PURE__ */ jsxDEV(MarketingCardHeader, {
|
|
52
|
+
className: "space-y-2",
|
|
53
|
+
children: [
|
|
54
|
+
/* @__PURE__ */ jsxDEV(Small, {
|
|
55
|
+
className: "font-semibold text-blue-400",
|
|
56
|
+
children: item.tier
|
|
57
|
+
}, undefined, false, undefined, this),
|
|
58
|
+
/* @__PURE__ */ jsxDEV(MarketingCardTitle, {
|
|
59
|
+
className: "text-xl",
|
|
60
|
+
children: item.title
|
|
61
|
+
}, undefined, false, undefined, this)
|
|
62
|
+
]
|
|
63
|
+
}, undefined, true, undefined, this),
|
|
64
|
+
/* @__PURE__ */ jsxDEV(MarketingCardContent, {
|
|
65
|
+
children: /* @__PURE__ */ jsxDEV(VStack, {
|
|
66
|
+
gap: "sm",
|
|
67
|
+
children: [
|
|
68
|
+
/* @__PURE__ */ jsxDEV(Muted, {
|
|
69
|
+
className: "text-sm leading-relaxed",
|
|
70
|
+
children: item.body
|
|
71
|
+
}, undefined, false, undefined, this),
|
|
72
|
+
/* @__PURE__ */ jsxDEV(Small, {
|
|
73
|
+
className: "font-medium text-violet-400",
|
|
74
|
+
children: item.need
|
|
75
|
+
}, undefined, false, undefined, this)
|
|
76
|
+
]
|
|
77
|
+
}, undefined, true, undefined, this)
|
|
78
|
+
}, undefined, false, undefined, this)
|
|
79
|
+
]
|
|
80
|
+
}, item.title, true, undefined, this))
|
|
81
|
+
}, undefined, false, undefined, this);
|
|
64
82
|
}
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
//# sourceMappingURL=AudienceSection.js.map
|
|
83
|
+
export {
|
|
84
|
+
AudienceSection
|
|
85
|
+
};
|
|
@@ -1,7 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
//#region src/components/marketing/sections/CorePositioningSection.d.ts
|
|
4
|
-
declare function CorePositioningSection(): react_jsx_runtime0.JSX.Element;
|
|
5
|
-
//#endregion
|
|
6
|
-
export { CorePositioningSection };
|
|
1
|
+
export declare function CorePositioningSection(): import("react/jsx-runtime").JSX.Element;
|
|
7
2
|
//# sourceMappingURL=CorePositioningSection.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CorePositioningSection.d.ts","
|
|
1
|
+
{"version":3,"file":"CorePositioningSection.d.ts","sourceRoot":"","sources":["../../../../src/components/marketing/sections/CorePositioningSection.tsx"],"names":[],"mappings":"AAMA,wBAAgB,sBAAsB,4CAqCrC"}
|
|
@@ -1,59 +1,67 @@
|
|
|
1
|
+
// @bun
|
|
2
|
+
var __require = import.meta.require;
|
|
3
|
+
|
|
4
|
+
// src/components/marketing/sections/CorePositioningSection.tsx
|
|
5
|
+
import { MarketingSection, ButtonLink } from "@contractspec/lib.design-system";
|
|
1
6
|
import { VStack } from "@contractspec/lib.ui-kit-web/ui/stack";
|
|
2
|
-
import { ButtonLink, MarketingSection } from "@contractspec/lib.design-system";
|
|
3
7
|
import { H2, Lead, Small } from "@contractspec/lib.ui-kit-web/ui/typography";
|
|
4
8
|
import { ChevronRight } from "lucide-react";
|
|
5
|
-
import {
|
|
6
|
-
import "react";
|
|
7
|
-
|
|
8
|
-
//#region src/components/marketing/sections/CorePositioningSection.tsx
|
|
9
|
+
import { jsxDEV } from "react/jsx-dev-runtime";
|
|
9
10
|
function CorePositioningSection() {
|
|
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
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
11
|
+
return /* @__PURE__ */ jsxDEV(MarketingSection, {
|
|
12
|
+
tone: "gradient",
|
|
13
|
+
padding: "comfortable",
|
|
14
|
+
align: "center",
|
|
15
|
+
maxWidth: "lg",
|
|
16
|
+
children: /* @__PURE__ */ jsxDEV(VStack, {
|
|
17
|
+
gap: "md",
|
|
18
|
+
align: "center",
|
|
19
|
+
children: [
|
|
20
|
+
/* @__PURE__ */ jsxDEV(H2, {
|
|
21
|
+
className: "text-center text-3xl font-bold md:text-4xl",
|
|
22
|
+
children: [
|
|
23
|
+
"You keep your app.",
|
|
24
|
+
/* @__PURE__ */ jsxDEV("br", {}, undefined, false, undefined, this),
|
|
25
|
+
"We stabilize it, one module at a time."
|
|
26
|
+
]
|
|
27
|
+
}, undefined, true, undefined, this),
|
|
28
|
+
/* @__PURE__ */ jsxDEV(Lead, {
|
|
29
|
+
className: "text-center",
|
|
30
|
+
children: [
|
|
31
|
+
"You own the code. It's standard tech.",
|
|
32
|
+
/* @__PURE__ */ jsxDEV("br", {}, undefined, false, undefined, this),
|
|
33
|
+
/* @__PURE__ */ jsxDEV(Small, {
|
|
34
|
+
className: "font-semibold text-violet-400",
|
|
35
|
+
children: "We're the compiler, not the prison."
|
|
36
|
+
}, undefined, false, undefined, this)
|
|
37
|
+
]
|
|
38
|
+
}, undefined, true, undefined, this),
|
|
39
|
+
/* @__PURE__ */ jsxDEV(VStack, {
|
|
40
|
+
as: "div",
|
|
41
|
+
gap: "sm",
|
|
42
|
+
align: "center",
|
|
43
|
+
className: "pt-2 sm:flex sm:flex-row sm:flex-wrap sm:items-center sm:justify-center",
|
|
44
|
+
children: [
|
|
45
|
+
/* @__PURE__ */ jsxDEV(ButtonLink, {
|
|
46
|
+
href: "/pricing#waitlist",
|
|
47
|
+
children: [
|
|
48
|
+
"Join waitlist ",
|
|
49
|
+
/* @__PURE__ */ jsxDEV(ChevronRight, {
|
|
50
|
+
size: 16
|
|
51
|
+
}, undefined, false, undefined, this)
|
|
52
|
+
]
|
|
53
|
+
}, undefined, true, undefined, this),
|
|
54
|
+
/* @__PURE__ */ jsxDEV(ButtonLink, {
|
|
55
|
+
variant: "ghost",
|
|
56
|
+
href: "/contact",
|
|
57
|
+
children: "Book a call"
|
|
58
|
+
}, undefined, false, undefined, this)
|
|
59
|
+
]
|
|
60
|
+
}, undefined, true, undefined, this)
|
|
61
|
+
]
|
|
62
|
+
}, undefined, true, undefined, this)
|
|
63
|
+
}, undefined, false, undefined, this);
|
|
55
64
|
}
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
//# sourceMappingURL=CorePositioningSection.js.map
|
|
65
|
+
export {
|
|
66
|
+
CorePositioningSection
|
|
67
|
+
};
|
|
@@ -1,7 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
//#region src/components/marketing/sections/CtaSection.d.ts
|
|
4
|
-
declare function CtaSection(): react_jsx_runtime0.JSX.Element;
|
|
5
|
-
//#endregion
|
|
6
|
-
export { CtaSection };
|
|
1
|
+
export declare function CtaSection(): import("react/jsx-runtime").JSX.Element;
|
|
7
2
|
//# sourceMappingURL=CtaSection.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CtaSection.d.ts","
|
|
1
|
+
{"version":3,"file":"CtaSection.d.ts","sourceRoot":"","sources":["../../../../src/components/marketing/sections/CtaSection.tsx"],"names":[],"mappings":"AASA,wBAAgB,UAAU,4CA+CzB"}
|
|
@@ -1,54 +1,62 @@
|
|
|
1
|
+
// @bun
|
|
2
|
+
var __require = import.meta.require;
|
|
3
|
+
|
|
4
|
+
// src/components/marketing/sections/CtaSection.tsx
|
|
5
|
+
import { MarketingSection, ButtonLink } from "@contractspec/lib.design-system";
|
|
6
|
+
import {
|
|
7
|
+
analyticsEventNames,
|
|
8
|
+
captureAnalyticsEvent
|
|
9
|
+
} from "@contractspec/bundle.library/libs/posthog/client";
|
|
1
10
|
import { VStack } from "@contractspec/lib.ui-kit-web/ui/stack";
|
|
2
|
-
import { ButtonLink, MarketingSection } from "@contractspec/lib.design-system";
|
|
3
|
-
import { analyticsEventNames, captureAnalyticsEvent } from "@contractspec/bundle.library/libs/posthog/client";
|
|
4
11
|
import { H2, Lead } from "@contractspec/lib.ui-kit-web/ui/typography";
|
|
5
|
-
import {
|
|
6
|
-
import "react";
|
|
7
|
-
|
|
8
|
-
//#region src/components/marketing/sections/CtaSection.tsx
|
|
12
|
+
import { jsxDEV } from "react/jsx-dev-runtime";
|
|
9
13
|
function CtaSection() {
|
|
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
|
-
|
|
14
|
+
return /* @__PURE__ */ jsxDEV(MarketingSection, {
|
|
15
|
+
tone: "gradient",
|
|
16
|
+
padding: "comfortable",
|
|
17
|
+
align: "center",
|
|
18
|
+
maxWidth: "lg",
|
|
19
|
+
children: /* @__PURE__ */ jsxDEV(VStack, {
|
|
20
|
+
gap: "md",
|
|
21
|
+
align: "center",
|
|
22
|
+
className: "text-center",
|
|
23
|
+
children: [
|
|
24
|
+
/* @__PURE__ */ jsxDEV(H2, {
|
|
25
|
+
className: "text-4xl font-bold md:text-5xl",
|
|
26
|
+
children: "Ready to stabilize your codebase?"
|
|
27
|
+
}, undefined, false, undefined, this),
|
|
28
|
+
/* @__PURE__ */ jsxDEV(Lead, {
|
|
29
|
+
className: "text-muted-foreground text-lg",
|
|
30
|
+
children: "Start with one module. See the difference. Expand at your own pace."
|
|
31
|
+
}, undefined, false, undefined, this),
|
|
32
|
+
/* @__PURE__ */ jsxDEV(VStack, {
|
|
33
|
+
as: "div",
|
|
34
|
+
gap: "sm",
|
|
35
|
+
align: "center",
|
|
36
|
+
className: "pt-2 sm:flex sm:flex-row sm:flex-wrap sm:items-center sm:justify-center",
|
|
37
|
+
children: [
|
|
38
|
+
/* @__PURE__ */ jsxDEV(ButtonLink, {
|
|
39
|
+
href: "/pricing#waitlist",
|
|
40
|
+
onClick: () => captureAnalyticsEvent(analyticsEventNames.CTA_STUDIO_CLICK, {
|
|
41
|
+
surface: "cta-section"
|
|
42
|
+
}),
|
|
43
|
+
children: "Join waitlist"
|
|
44
|
+
}, undefined, false, undefined, this),
|
|
45
|
+
/* @__PURE__ */ jsxDEV(ButtonLink, {
|
|
46
|
+
variant: "ghost",
|
|
47
|
+
href: "/contact",
|
|
48
|
+
onClick: () => captureAnalyticsEvent(analyticsEventNames.CTA_STUDIO_CLICK, {
|
|
49
|
+
surface: "cta-section",
|
|
50
|
+
variant: "contact"
|
|
51
|
+
}),
|
|
52
|
+
children: "Book a call"
|
|
53
|
+
}, undefined, false, undefined, this)
|
|
54
|
+
]
|
|
55
|
+
}, undefined, true, undefined, this)
|
|
56
|
+
]
|
|
57
|
+
}, undefined, true, undefined, this)
|
|
58
|
+
}, undefined, false, undefined, this);
|
|
50
59
|
}
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
//# sourceMappingURL=CtaSection.js.map
|
|
60
|
+
export {
|
|
61
|
+
CtaSection
|
|
62
|
+
};
|
|
@@ -1,7 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
//#region src/components/marketing/sections/DevelopersSection.d.ts
|
|
4
|
-
declare function DevelopersSection(): react_jsx_runtime0.JSX.Element;
|
|
5
|
-
//#endregion
|
|
6
|
-
export { DevelopersSection };
|
|
1
|
+
export declare function DevelopersSection(): import("react/jsx-runtime").JSX.Element;
|
|
7
2
|
//# sourceMappingURL=DevelopersSection.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DevelopersSection.d.ts","
|
|
1
|
+
{"version":3,"file":"DevelopersSection.d.ts","sourceRoot":"","sources":["../../../../src/components/marketing/sections/DevelopersSection.tsx"],"names":[],"mappings":"AAsBA,wBAAgB,iBAAiB,4CAehC"}
|
|
@@ -1,45 +1,45 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
import "react";
|
|
1
|
+
// @bun
|
|
2
|
+
var __require = import.meta.require;
|
|
4
3
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
4
|
+
// src/components/marketing/sections/DevelopersSection.tsx
|
|
5
|
+
import {
|
|
6
|
+
ButtonLink,
|
|
7
|
+
MarketingComparisonSection
|
|
8
|
+
} from "@contractspec/lib.design-system";
|
|
9
|
+
import { jsxDEV } from "react/jsx-dev-runtime";
|
|
10
|
+
var standardTech = [
|
|
11
|
+
"TypeScript & Zod \u2014 schemas you already know",
|
|
12
|
+
"Prisma \u2014 standard database access",
|
|
13
|
+
"GraphQL or REST \u2014 your choice",
|
|
14
|
+
"React or any UI framework",
|
|
15
|
+
"Bun, Node, Deno \u2014 all supported"
|
|
12
16
|
];
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
17
|
+
var noMagic = [
|
|
18
|
+
"Generated code is readable & modifiable",
|
|
19
|
+
"No proprietary runtime dependencies",
|
|
20
|
+
"Eject anytime, keep everything",
|
|
21
|
+
"Works with your existing CI/CD",
|
|
22
|
+
"Open spec format"
|
|
19
23
|
];
|
|
20
24
|
function DevelopersSection() {
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
})]
|
|
39
|
-
})
|
|
40
|
-
});
|
|
25
|
+
return /* @__PURE__ */ jsxDEV(MarketingComparisonSection, {
|
|
26
|
+
tone: "muted",
|
|
27
|
+
title: "Built for developers",
|
|
28
|
+
padding: "comfortable",
|
|
29
|
+
left: { title: "Standard Tech Stack", items: standardTech },
|
|
30
|
+
right: { title: "No Magic, No Lock-in", items: noMagic },
|
|
31
|
+
subtitle: /* @__PURE__ */ jsxDEV(ButtonLink, {
|
|
32
|
+
href: "/docs",
|
|
33
|
+
children: [
|
|
34
|
+
"Read the docs ",
|
|
35
|
+
/* @__PURE__ */ jsxDEV("span", {
|
|
36
|
+
"aria-hidden": true,
|
|
37
|
+
children: "\u2192"
|
|
38
|
+
}, undefined, false, undefined, this)
|
|
39
|
+
]
|
|
40
|
+
}, undefined, true, undefined, this)
|
|
41
|
+
}, undefined, false, undefined, this);
|
|
41
42
|
}
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
//# sourceMappingURL=DevelopersSection.js.map
|
|
43
|
+
export {
|
|
44
|
+
DevelopersSection
|
|
45
|
+
};
|
|
@@ -1,7 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
//#region src/components/marketing/sections/FearsSection.d.ts
|
|
4
|
-
declare function FearsSection(): react_jsx_runtime0.JSX.Element;
|
|
5
|
-
//#endregion
|
|
6
|
-
export { FearsSection };
|
|
1
|
+
export declare function FearsSection(): import("react/jsx-runtime").JSX.Element;
|
|
7
2
|
//# sourceMappingURL=FearsSection.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FearsSection.d.ts","
|
|
1
|
+
{"version":3,"file":"FearsSection.d.ts","sourceRoot":"","sources":["../../../../src/components/marketing/sections/FearsSection.tsx"],"names":[],"mappings":"AA2BA,wBAAgB,YAAY,4CAiB3B"}
|