@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.
Files changed (262) hide show
  1. package/.turbo/turbo-build.log +146 -175
  2. package/.turbo/turbo-prebuild.log +1 -0
  3. package/CHANGELOG.md +57 -0
  4. package/dist/browser/components/marketing/ChangelogPage.js +92 -0
  5. package/dist/browser/components/marketing/CofounderPage.js +581 -0
  6. package/dist/browser/components/marketing/ContactClient.js +1379 -0
  7. package/dist/browser/components/marketing/ContributePage.js +487 -0
  8. package/dist/browser/components/marketing/DesignPartnerPage.js +272 -0
  9. package/dist/browser/components/marketing/LandingPage.js +629 -0
  10. package/dist/browser/components/marketing/PricingClient.js +1972 -0
  11. package/dist/browser/components/marketing/ProductClientPage.js +563 -0
  12. package/dist/browser/components/marketing/index.js +4818 -0
  13. package/dist/browser/components/marketing/pricing-thinking-modal.js +258 -0
  14. package/dist/browser/components/marketing/sections/AudienceSection.js +90 -0
  15. package/dist/browser/components/marketing/sections/CorePositioningSection.js +72 -0
  16. package/dist/browser/components/marketing/sections/CtaSection.js +67 -0
  17. package/dist/browser/components/marketing/sections/DevelopersSection.js +50 -0
  18. package/dist/browser/components/marketing/sections/FearsSection.js +105 -0
  19. package/dist/browser/components/marketing/sections/HeroMarketingSection.js +93 -0
  20. package/dist/browser/components/marketing/sections/IconGridSection.js +63 -0
  21. package/dist/browser/components/marketing/sections/OutputsSection.js +116 -0
  22. package/dist/browser/components/marketing/sections/ProblemSection.js +103 -0
  23. package/dist/browser/components/marketing/sections/SolutionSection.js +103 -0
  24. package/dist/browser/components/marketing/sections/StepsSection.js +109 -0
  25. package/dist/browser/components/marketing/waitlist-section.js +1104 -0
  26. package/dist/browser/components/templates/TemplatesClientPage.js +5662 -0
  27. package/dist/browser/components/templates/TemplatesPage.js +177 -0
  28. package/dist/browser/components/templates/TemplatesPreviewModal.js +124 -0
  29. package/dist/browser/components/templates/index.js +5831 -0
  30. package/dist/browser/index.js +6485 -0
  31. package/dist/browser/libs/email/client.js +122 -0
  32. package/dist/browser/libs/email/contact.js +190 -0
  33. package/dist/browser/libs/email/newsletter.js +215 -0
  34. package/dist/browser/libs/email/types.js +2 -0
  35. package/dist/browser/libs/email/utils.js +16 -0
  36. package/dist/browser/libs/email/waitlist-application.js +295 -0
  37. package/dist/browser/libs/email/waitlist.js +225 -0
  38. package/dist/browser/libs/pricing-examples.js +26 -0
  39. package/dist/browser/registry/engine.js +5293 -0
  40. package/dist/browser/registry/factory.js +52 -0
  41. package/dist/browser/registry/index.js +5358 -0
  42. package/dist/browser/registry/registry-docs.js +343 -0
  43. package/dist/browser/registry/registry-landing.js +4937 -0
  44. package/dist/browser/registry/registry.js +5279 -0
  45. package/dist/browser/registry/types.js +0 -0
  46. package/dist/browser/registry/utils.js +5340 -0
  47. package/dist/components/marketing/ChangelogPage.d.ts +11 -17
  48. package/dist/components/marketing/ChangelogPage.d.ts.map +1 -1
  49. package/dist/components/marketing/ChangelogPage.js +84 -62
  50. package/dist/components/marketing/CofounderPage.d.ts +1 -6
  51. package/dist/components/marketing/CofounderPage.d.ts.map +1 -1
  52. package/dist/components/marketing/CofounderPage.js +544 -436
  53. package/dist/components/marketing/ContactClient.d.ts +1 -6
  54. package/dist/components/marketing/ContactClient.d.ts.map +1 -1
  55. package/dist/components/marketing/ContactClient.js +1371 -155
  56. package/dist/components/marketing/ContributePage.d.ts +3 -8
  57. package/dist/components/marketing/ContributePage.d.ts.map +1 -1
  58. package/dist/components/marketing/ContributePage.js +478 -358
  59. package/dist/components/marketing/DesignPartnerPage.d.ts +3 -8
  60. package/dist/components/marketing/DesignPartnerPage.d.ts.map +1 -1
  61. package/dist/components/marketing/DesignPartnerPage.js +263 -211
  62. package/dist/components/marketing/LandingPage.d.ts +1 -6
  63. package/dist/components/marketing/LandingPage.d.ts.map +1 -1
  64. package/dist/components/marketing/LandingPage.js +623 -37
  65. package/dist/components/marketing/PricingClient.d.ts +1 -6
  66. package/dist/components/marketing/PricingClient.d.ts.map +1 -1
  67. package/dist/components/marketing/PricingClient.js +1962 -516
  68. package/dist/components/marketing/ProductClientPage.d.ts +1 -6
  69. package/dist/components/marketing/ProductClientPage.d.ts.map +1 -1
  70. package/dist/components/marketing/ProductClientPage.js +556 -458
  71. package/dist/components/marketing/index.d.ts +11 -11
  72. package/dist/components/marketing/index.d.ts.map +1 -0
  73. package/dist/components/marketing/index.js +4813 -12
  74. package/dist/components/marketing/pricing-thinking-modal.d.ts +5 -13
  75. package/dist/components/marketing/pricing-thinking-modal.d.ts.map +1 -1
  76. package/dist/components/marketing/pricing-thinking-modal.js +248 -197
  77. package/dist/components/marketing/sections/AudienceSection.d.ts +1 -6
  78. package/dist/components/marketing/sections/AudienceSection.d.ts.map +1 -1
  79. package/dist/components/marketing/sections/AudienceSection.js +80 -63
  80. package/dist/components/marketing/sections/CorePositioningSection.d.ts +1 -6
  81. package/dist/components/marketing/sections/CorePositioningSection.d.ts.map +1 -1
  82. package/dist/components/marketing/sections/CorePositioningSection.js +62 -54
  83. package/dist/components/marketing/sections/CtaSection.d.ts +1 -6
  84. package/dist/components/marketing/sections/CtaSection.d.ts.map +1 -1
  85. package/dist/components/marketing/sections/CtaSection.js +58 -50
  86. package/dist/components/marketing/sections/DevelopersSection.d.ts +1 -6
  87. package/dist/components/marketing/sections/DevelopersSection.d.ts.map +1 -1
  88. package/dist/components/marketing/sections/DevelopersSection.js +40 -40
  89. package/dist/components/marketing/sections/FearsSection.d.ts +1 -6
  90. package/dist/components/marketing/sections/FearsSection.d.ts.map +1 -1
  91. package/dist/components/marketing/sections/FearsSection.js +96 -44
  92. package/dist/components/marketing/sections/HeroMarketingSection.d.ts +1 -6
  93. package/dist/components/marketing/sections/HeroMarketingSection.d.ts.map +1 -1
  94. package/dist/components/marketing/sections/HeroMarketingSection.js +82 -71
  95. package/dist/components/marketing/sections/IconGridSection.d.ts +25 -39
  96. package/dist/components/marketing/sections/IconGridSection.d.ts.map +1 -1
  97. package/dist/components/marketing/sections/IconGridSection.js +55 -41
  98. package/dist/components/marketing/sections/OutputsSection.d.ts +1 -6
  99. package/dist/components/marketing/sections/OutputsSection.d.ts.map +1 -1
  100. package/dist/components/marketing/sections/OutputsSection.js +107 -55
  101. package/dist/components/marketing/sections/ProblemSection.d.ts +1 -6
  102. package/dist/components/marketing/sections/ProblemSection.d.ts.map +1 -1
  103. package/dist/components/marketing/sections/ProblemSection.js +94 -42
  104. package/dist/components/marketing/sections/SolutionSection.d.ts +1 -6
  105. package/dist/components/marketing/sections/SolutionSection.d.ts.map +1 -1
  106. package/dist/components/marketing/sections/SolutionSection.js +94 -42
  107. package/dist/components/marketing/sections/StepsSection.d.ts +1 -6
  108. package/dist/components/marketing/sections/StepsSection.d.ts.map +1 -1
  109. package/dist/components/marketing/sections/StepsSection.js +100 -48
  110. package/dist/components/marketing/waitlist-section.d.ts +5 -12
  111. package/dist/components/marketing/waitlist-section.d.ts.map +1 -1
  112. package/dist/components/marketing/waitlist-section.js +1089 -568
  113. package/dist/components/templates/TemplatesClientPage.d.ts +1 -6
  114. package/dist/components/templates/TemplatesClientPage.d.ts.map +1 -1
  115. package/dist/components/templates/TemplatesClientPage.js +5649 -617
  116. package/dist/components/templates/TemplatesPage.d.ts +1 -6
  117. package/dist/components/templates/TemplatesPage.d.ts.map +1 -1
  118. package/dist/components/templates/TemplatesPage.js +163 -116
  119. package/dist/components/templates/TemplatesPreviewModal.d.ts +5 -12
  120. package/dist/components/templates/TemplatesPreviewModal.d.ts.map +1 -1
  121. package/dist/components/templates/TemplatesPreviewModal.js +113 -131
  122. package/dist/components/templates/index.d.ts +4 -4
  123. package/dist/components/templates/index.d.ts.map +1 -0
  124. package/dist/components/templates/index.js +5825 -4
  125. package/dist/index.d.ts +9 -29
  126. package/dist/index.d.ts.map +1 -0
  127. package/dist/index.js +6480 -28
  128. package/dist/libs/email/client.d.ts +9 -12
  129. package/dist/libs/email/client.d.ts.map +1 -1
  130. package/dist/libs/email/client.js +109 -105
  131. package/dist/libs/email/client.test.d.ts +2 -0
  132. package/dist/libs/email/client.test.d.ts.map +1 -0
  133. package/dist/libs/email/contact.d.ts +2 -6
  134. package/dist/libs/email/contact.d.ts.map +1 -1
  135. package/dist/libs/email/contact.js +155 -41
  136. package/dist/libs/email/newsletter.d.ts +2 -6
  137. package/dist/libs/email/newsletter.d.ts.map +1 -1
  138. package/dist/libs/email/newsletter.js +169 -54
  139. package/dist/libs/email/types.d.ts +48 -52
  140. package/dist/libs/email/types.d.ts.map +1 -1
  141. package/dist/libs/email/types.js +3 -1
  142. package/dist/libs/email/utils.d.ts +2 -5
  143. package/dist/libs/email/utils.d.ts.map +1 -1
  144. package/dist/libs/email/utils.js +10 -6
  145. package/dist/libs/email/waitlist-application.d.ts +2 -6
  146. package/dist/libs/email/waitlist-application.d.ts.map +1 -1
  147. package/dist/libs/email/waitlist-application.js +191 -71
  148. package/dist/libs/email/waitlist.d.ts +2 -6
  149. package/dist/libs/email/waitlist.d.ts.map +1 -1
  150. package/dist/libs/email/waitlist.js +171 -56
  151. package/dist/libs/pricing-examples.d.ts +13 -16
  152. package/dist/libs/pricing-examples.d.ts.map +1 -1
  153. package/dist/libs/pricing-examples.js +20 -20
  154. package/dist/node/components/marketing/ChangelogPage.js +87 -0
  155. package/dist/node/components/marketing/CofounderPage.js +576 -0
  156. package/dist/node/components/marketing/ContactClient.js +1374 -0
  157. package/dist/node/components/marketing/ContributePage.js +482 -0
  158. package/dist/node/components/marketing/DesignPartnerPage.js +267 -0
  159. package/dist/node/components/marketing/LandingPage.js +624 -0
  160. package/dist/node/components/marketing/PricingClient.js +1967 -0
  161. package/dist/node/components/marketing/ProductClientPage.js +558 -0
  162. package/dist/node/components/marketing/index.js +4813 -0
  163. package/dist/node/components/marketing/pricing-thinking-modal.js +253 -0
  164. package/dist/node/components/marketing/sections/AudienceSection.js +85 -0
  165. package/dist/node/components/marketing/sections/CorePositioningSection.js +67 -0
  166. package/dist/node/components/marketing/sections/CtaSection.js +62 -0
  167. package/dist/node/components/marketing/sections/DevelopersSection.js +45 -0
  168. package/dist/node/components/marketing/sections/FearsSection.js +100 -0
  169. package/dist/node/components/marketing/sections/HeroMarketingSection.js +88 -0
  170. package/dist/node/components/marketing/sections/IconGridSection.js +58 -0
  171. package/dist/node/components/marketing/sections/OutputsSection.js +111 -0
  172. package/dist/node/components/marketing/sections/ProblemSection.js +98 -0
  173. package/dist/node/components/marketing/sections/SolutionSection.js +98 -0
  174. package/dist/node/components/marketing/sections/StepsSection.js +104 -0
  175. package/dist/node/components/marketing/waitlist-section.js +1099 -0
  176. package/dist/node/components/templates/TemplatesClientPage.js +5657 -0
  177. package/dist/node/components/templates/TemplatesPage.js +172 -0
  178. package/dist/node/components/templates/TemplatesPreviewModal.js +119 -0
  179. package/dist/node/components/templates/index.js +5826 -0
  180. package/dist/node/index.js +6480 -0
  181. package/dist/node/libs/email/client.js +117 -0
  182. package/dist/node/libs/email/contact.js +185 -0
  183. package/dist/node/libs/email/newsletter.js +210 -0
  184. package/dist/node/libs/email/types.js +2 -0
  185. package/dist/node/libs/email/utils.js +11 -0
  186. package/dist/node/libs/email/waitlist-application.js +290 -0
  187. package/dist/node/libs/email/waitlist.js +220 -0
  188. package/dist/node/libs/pricing-examples.js +21 -0
  189. package/dist/node/registry/engine.js +5288 -0
  190. package/dist/node/registry/factory.js +47 -0
  191. package/dist/node/registry/index.js +5353 -0
  192. package/dist/node/registry/registry-docs.js +338 -0
  193. package/dist/node/registry/registry-landing.js +4932 -0
  194. package/dist/node/registry/registry.js +5274 -0
  195. package/dist/node/registry/types.js +0 -0
  196. package/dist/node/registry/utils.js +5335 -0
  197. package/dist/registry/engine.d.ts +4 -8
  198. package/dist/registry/engine.d.ts.map +1 -1
  199. package/dist/registry/engine.js +5287 -23
  200. package/dist/registry/factory.d.ts +30 -34
  201. package/dist/registry/factory.d.ts.map +1 -1
  202. package/dist/registry/factory.js +42 -56
  203. package/dist/registry/index.d.ts +8 -8
  204. package/dist/registry/index.d.ts.map +1 -0
  205. package/dist/registry/index.js +5353 -8
  206. package/dist/registry/registry-docs.d.ts +4 -8
  207. package/dist/registry/registry-docs.d.ts.map +1 -1
  208. package/dist/registry/registry-docs.js +242 -209
  209. package/dist/registry/registry-landing.d.ts +5 -9
  210. package/dist/registry/registry-landing.d.ts.map +1 -1
  211. package/dist/registry/registry-landing.js +4930 -93
  212. package/dist/registry/registry.d.ts +7 -11
  213. package/dist/registry/registry.d.ts.map +1 -1
  214. package/dist/registry/registry.js +5262 -49
  215. package/dist/registry/types.d.ts +6 -10
  216. package/dist/registry/types.d.ts.map +1 -1
  217. package/dist/registry/types.js +1 -0
  218. package/dist/registry/utils.d.ts +10 -14
  219. package/dist/registry/utils.d.ts.map +1 -1
  220. package/dist/registry/utils.js +5330 -49
  221. package/package.json +355 -73
  222. package/tsdown.config.js +1 -2
  223. package/.turbo/turbo-build$colon$types.log +0 -1
  224. package/.turbo/turbo-lint.log +0 -3
  225. package/dist/components/marketing/ChangelogPage.js.map +0 -1
  226. package/dist/components/marketing/CofounderPage.js.map +0 -1
  227. package/dist/components/marketing/ContactClient.js.map +0 -1
  228. package/dist/components/marketing/ContributePage.js.map +0 -1
  229. package/dist/components/marketing/DesignPartnerPage.js.map +0 -1
  230. package/dist/components/marketing/LandingPage.js.map +0 -1
  231. package/dist/components/marketing/PricingClient.js.map +0 -1
  232. package/dist/components/marketing/ProductClientPage.js.map +0 -1
  233. package/dist/components/marketing/pricing-thinking-modal.js.map +0 -1
  234. package/dist/components/marketing/sections/AudienceSection.js.map +0 -1
  235. package/dist/components/marketing/sections/CorePositioningSection.js.map +0 -1
  236. package/dist/components/marketing/sections/CtaSection.js.map +0 -1
  237. package/dist/components/marketing/sections/DevelopersSection.js.map +0 -1
  238. package/dist/components/marketing/sections/FearsSection.js.map +0 -1
  239. package/dist/components/marketing/sections/HeroMarketingSection.js.map +0 -1
  240. package/dist/components/marketing/sections/IconGridSection.js.map +0 -1
  241. package/dist/components/marketing/sections/OutputsSection.js.map +0 -1
  242. package/dist/components/marketing/sections/ProblemSection.js.map +0 -1
  243. package/dist/components/marketing/sections/SolutionSection.js.map +0 -1
  244. package/dist/components/marketing/sections/StepsSection.js.map +0 -1
  245. package/dist/components/marketing/waitlist-section.js.map +0 -1
  246. package/dist/components/templates/TemplatesClientPage.js.map +0 -1
  247. package/dist/components/templates/TemplatesPage.js.map +0 -1
  248. package/dist/components/templates/TemplatesPreviewModal.js.map +0 -1
  249. package/dist/libs/email/client.js.map +0 -1
  250. package/dist/libs/email/contact.js.map +0 -1
  251. package/dist/libs/email/newsletter.js.map +0 -1
  252. package/dist/libs/email/utils.js.map +0 -1
  253. package/dist/libs/email/waitlist-application.js.map +0 -1
  254. package/dist/libs/email/waitlist.js.map +0 -1
  255. package/dist/libs/pricing-examples.js.map +0 -1
  256. package/dist/registry/engine.js.map +0 -1
  257. package/dist/registry/factory.js.map +0 -1
  258. package/dist/registry/registry-docs.js.map +0 -1
  259. package/dist/registry/registry-landing.js.map +0 -1
  260. package/dist/registry/registry.js.map +0 -1
  261. package/dist/registry/utils.js.map +0 -1
  262. 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 { jsx, jsxs } from "react/jsx-runtime";
5
- import "react";
6
-
7
- //#region src/components/marketing/sections/AudienceSection.tsx
8
- const audiences = [
9
- {
10
- tier: "Tier 1: Priority",
11
- title: "AI-Native Startups & Technical Founders",
12
- 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.",
13
- need: "Need: A way to stabilize AI-generated code without rewriting it."
14
- },
15
- {
16
- tier: "Tier 1: Priority",
17
- title: "Small Teams with AI-Generated Chaos",
18
- 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.",
19
- need: "Need: Incremental stabilization, safe regeneration, contracts as guardrails."
20
- },
21
- {
22
- tier: "Tier 2: Growth",
23
- title: "AI Dev Agencies",
24
- body: "Agencies building many projects for clients using AI-assisted development. Repeating the same patterns, inconsistent quality across projects, handoff nightmares.",
25
- need: "Need: Reusable templates, consistent contracts, professional handoff artifacts."
26
- },
27
- {
28
- tier: "Tier 2: Growth",
29
- title: "Scaleups with Compliance Needs",
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
- return /* @__PURE__ */ jsx(MarketingCardsSection, {
36
- tone: "default",
37
- columns: 2,
38
- eyebrow: "Who It's For",
39
- title: "Built for teams drowning in AI-generated code",
40
- maxWidth: "xl",
41
- children: audiences.map((item) => /* @__PURE__ */ jsxs(MarketingCard, {
42
- tone: "muted",
43
- children: [/* @__PURE__ */ jsxs(MarketingCardHeader, {
44
- className: "space-y-2",
45
- children: [/* @__PURE__ */ jsx(Small, {
46
- className: "font-semibold text-blue-400",
47
- children: item.tier
48
- }), /* @__PURE__ */ jsx(MarketingCardTitle, {
49
- className: "text-xl",
50
- children: item.title
51
- })]
52
- }), /* @__PURE__ */ jsx(MarketingCardContent, { children: /* @__PURE__ */ jsxs(VStack, {
53
- gap: "sm",
54
- children: [/* @__PURE__ */ jsx(Muted, {
55
- className: "text-sm leading-relaxed",
56
- children: item.body
57
- }), /* @__PURE__ */ jsx(Small, {
58
- className: "font-medium text-violet-400",
59
- children: item.need
60
- })]
61
- }) })]
62
- }, item.title))
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
- //#endregion
67
- export { AudienceSection };
68
- //# sourceMappingURL=AudienceSection.js.map
83
+ export {
84
+ AudienceSection
85
+ };
@@ -1,7 +1,2 @@
1
- import * as react_jsx_runtime0 from "react/jsx-runtime";
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","names":[],"sources":["../../../../src/components/marketing/sections/CorePositioningSection.tsx"],"mappings":";;;iBAMgB,sBAAA,CAAA,GAAsB,kBAAA,CAAA,GAAA,CAAA,OAAA"}
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 { jsx, jsxs } from "react/jsx-runtime";
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
- return /* @__PURE__ */ jsx(MarketingSection, {
11
- tone: "gradient",
12
- padding: "comfortable",
13
- align: "center",
14
- maxWidth: "lg",
15
- children: /* @__PURE__ */ jsxs(VStack, {
16
- gap: "md",
17
- align: "center",
18
- children: [
19
- /* @__PURE__ */ jsxs(H2, {
20
- className: "text-center text-3xl font-bold md:text-4xl",
21
- children: [
22
- "You keep your app.",
23
- /* @__PURE__ */ jsx("br", {}),
24
- "We stabilize it, one module at a time."
25
- ]
26
- }),
27
- /* @__PURE__ */ jsxs(Lead, {
28
- className: "text-center",
29
- children: [
30
- "You own the code. It's standard tech.",
31
- /* @__PURE__ */ jsx("br", {}),
32
- /* @__PURE__ */ jsx(Small, {
33
- className: "font-semibold text-violet-400",
34
- children: "We're the compiler, not the prison."
35
- })
36
- ]
37
- }),
38
- /* @__PURE__ */ jsxs(VStack, {
39
- as: "div",
40
- gap: "sm",
41
- align: "center",
42
- className: "pt-2 sm:flex sm:flex-row sm:flex-wrap sm:items-center sm:justify-center",
43
- children: [/* @__PURE__ */ jsxs(ButtonLink, {
44
- href: "/pricing#waitlist",
45
- children: ["Join waitlist ", /* @__PURE__ */ jsx(ChevronRight, { size: 16 })]
46
- }), /* @__PURE__ */ jsx(ButtonLink, {
47
- variant: "ghost",
48
- href: "/contact",
49
- children: "Book a call"
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
- //#endregion
58
- export { CorePositioningSection };
59
- //# sourceMappingURL=CorePositioningSection.js.map
65
+ export {
66
+ CorePositioningSection
67
+ };
@@ -1,7 +1,2 @@
1
- import * as react_jsx_runtime0 from "react/jsx-runtime";
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","names":[],"sources":["../../../../src/components/marketing/sections/CtaSection.tsx"],"mappings":";;;iBASgB,UAAA,CAAA,GAAU,kBAAA,CAAA,GAAA,CAAA,OAAA"}
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 { jsx, jsxs } from "react/jsx-runtime";
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
- return /* @__PURE__ */ jsx(MarketingSection, {
11
- tone: "gradient",
12
- padding: "comfortable",
13
- align: "center",
14
- maxWidth: "lg",
15
- children: /* @__PURE__ */ jsxs(VStack, {
16
- gap: "md",
17
- align: "center",
18
- className: "text-center",
19
- children: [
20
- /* @__PURE__ */ jsx(H2, {
21
- className: "text-4xl font-bold md:text-5xl",
22
- children: "Ready to stabilize your codebase?"
23
- }),
24
- /* @__PURE__ */ jsx(Lead, {
25
- className: "text-muted-foreground text-lg",
26
- children: "Start with one module. See the difference. Expand at your own pace."
27
- }),
28
- /* @__PURE__ */ jsxs(VStack, {
29
- as: "div",
30
- gap: "sm",
31
- align: "center",
32
- className: "pt-2 sm:flex sm:flex-row sm:flex-wrap sm:items-center sm:justify-center",
33
- children: [/* @__PURE__ */ jsx(ButtonLink, {
34
- href: "/pricing#waitlist",
35
- onClick: () => captureAnalyticsEvent(analyticsEventNames.CTA_STUDIO_CLICK, { surface: "cta-section" }),
36
- children: "Join waitlist"
37
- }), /* @__PURE__ */ jsx(ButtonLink, {
38
- variant: "ghost",
39
- href: "/contact",
40
- onClick: () => captureAnalyticsEvent(analyticsEventNames.CTA_STUDIO_CLICK, {
41
- surface: "cta-section",
42
- variant: "contact"
43
- }),
44
- children: "Book a call"
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
- //#endregion
53
- export { CtaSection };
54
- //# sourceMappingURL=CtaSection.js.map
60
+ export {
61
+ CtaSection
62
+ };
@@ -1,7 +1,2 @@
1
- import * as react_jsx_runtime0 from "react/jsx-runtime";
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","names":[],"sources":["../../../../src/components/marketing/sections/DevelopersSection.tsx"],"mappings":";;;iBAsBgB,iBAAA,CAAA,GAAiB,kBAAA,CAAA,GAAA,CAAA,OAAA"}
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
- import { ButtonLink, MarketingComparisonSection } from "@contractspec/lib.design-system";
2
- import { jsx, jsxs } from "react/jsx-runtime";
3
- import "react";
1
+ // @bun
2
+ var __require = import.meta.require;
4
3
 
5
- //#region src/components/marketing/sections/DevelopersSection.tsx
6
- const standardTech = [
7
- "TypeScript & Zod — schemas you already know",
8
- "Prisma — standard database access",
9
- "GraphQL or REST — your choice",
10
- "React or any UI framework",
11
- "Bun, Node, Deno — all supported"
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
- const noMagic = [
14
- "Generated code is readable & modifiable",
15
- "No proprietary runtime dependencies",
16
- "Eject anytime, keep everything",
17
- "Works with your existing CI/CD",
18
- "Open spec format"
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
- return /* @__PURE__ */ jsx(MarketingComparisonSection, {
22
- tone: "muted",
23
- title: "Built for developers",
24
- padding: "comfortable",
25
- left: {
26
- title: "Standard Tech Stack",
27
- items: standardTech
28
- },
29
- right: {
30
- title: "No Magic, No Lock-in",
31
- items: noMagic
32
- },
33
- subtitle: /* @__PURE__ */ jsxs(ButtonLink, {
34
- href: "/docs",
35
- children: ["Read the docs ", /* @__PURE__ */ jsx("span", {
36
- "aria-hidden": true,
37
- children: "→"
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
- //#endregion
44
- export { DevelopersSection };
45
- //# sourceMappingURL=DevelopersSection.js.map
43
+ export {
44
+ DevelopersSection
45
+ };
@@ -1,7 +1,2 @@
1
- import * as react_jsx_runtime0 from "react/jsx-runtime";
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","names":[],"sources":["../../../../src/components/marketing/sections/FearsSection.tsx"],"mappings":";;;iBA2BgB,YAAA,CAAA,GAAY,kBAAA,CAAA,GAAA,CAAA,OAAA"}
1
+ {"version":3,"file":"FearsSection.d.ts","sourceRoot":"","sources":["../../../../src/components/marketing/sections/FearsSection.tsx"],"names":[],"mappings":"AA2BA,wBAAgB,YAAY,4CAiB3B"}