@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,9 +1,4 @@
1
- import * as react_jsx_runtime0 from "react/jsx-runtime";
2
- import { Metadata } from "next";
3
-
4
- //#region src/components/marketing/DesignPartnerPage.d.ts
5
- declare const metadata: Metadata;
6
- declare function DesignPartnerPage(): react_jsx_runtime0.JSX.Element;
7
- //#endregion
8
- export { DesignPartnerPage, metadata };
1
+ import type { Metadata } from 'next';
2
+ export declare const metadata: Metadata;
3
+ export declare function DesignPartnerPage(): import("react/jsx-runtime").JSX.Element;
9
4
  //# sourceMappingURL=DesignPartnerPage.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"DesignPartnerPage.d.ts","names":[],"sources":["../../../src/components/marketing/DesignPartnerPage.tsx"],"mappings":";;;;cAWa,QAAA,EAAU,QAAA;AAAA,iBAKP,iBAAA,CAAA,GAAiB,kBAAA,CAAA,GAAA,CAAA,OAAA"}
1
+ {"version":3,"file":"DesignPartnerPage.d.ts","sourceRoot":"","sources":["../../../src/components/marketing/DesignPartnerPage.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,MAAM,CAAC;AAWrC,eAAO,MAAM,QAAQ,EAAE,QAGtB,CAAC;AAEF,wBAAgB,iBAAiB,4CAoKhC"}
@@ -1,215 +1,267 @@
1
- import { Button } from "@contractspec/lib.design-system";
2
- import { ArrowRight, BookOpen, MessageSquare, Rocket, Users } from "lucide-react";
3
- import { jsx, jsxs } from "react/jsx-runtime";
4
- import Link from "next/link";
1
+ // @bun
2
+ var __require = import.meta.require;
5
3
 
6
- //#region src/components/marketing/DesignPartnerPage.tsx
7
- const metadata = {
8
- title: "Design Partner Getting Started | ContractSpec",
9
- description: "Onboarding and resources for ContractSpec Design Partners."
4
+ // src/components/marketing/DesignPartnerPage.tsx
5
+ import Link from "next/link";
6
+ import { Button } from "@contractspec/lib.design-system";
7
+ import {
8
+ ArrowRight,
9
+ BookOpen,
10
+ MessageSquare,
11
+ Rocket,
12
+ Users
13
+ } from "lucide-react";
14
+ import { jsxDEV } from "react/jsx-dev-runtime";
15
+ var metadata = {
16
+ title: "Design Partner Getting Started | ContractSpec",
17
+ description: "Onboarding and resources for ContractSpec Design Partners."
10
18
  };
11
19
  function DesignPartnerPage() {
12
- return /* @__PURE__ */ jsxs("main", {
13
- className: "flex grow flex-col",
14
- children: [
15
- /* @__PURE__ */ jsx("section", {
16
- className: "section-padding relative overflow-hidden",
17
- children: /* @__PURE__ */ jsx("div", {
18
- className: "container mx-auto max-w-5xl",
19
- children: /* @__PURE__ */ jsxs("div", {
20
- className: "mb-12 max-w-3xl",
21
- children: [/* @__PURE__ */ jsx("h1", {
22
- className: "mb-6 text-4xl font-bold tracking-tight sm:text-5xl",
23
- children: "Welcome, Design Partner"
24
- }), /* @__PURE__ */ jsx("p", {
25
- className: "text-muted-foreground text-xl leading-relaxed",
26
- children: "We're thrilled to have you on board. As a Design Partner, you play a critical role in shaping the future of ContractSpec. This hub contains everything you need to get started, collaborate with us, and build your first specifications."
27
- })]
28
- })
29
- })
30
- }),
31
- /* @__PURE__ */ jsx("section", {
32
- className: "section-padding bg-white/5",
33
- children: /* @__PURE__ */ jsxs("div", {
34
- className: "container mx-auto max-w-5xl",
35
- children: [/* @__PURE__ */ jsx("h2", {
36
- className: "mb-12 text-3xl font-bold",
37
- children: "Getting Started"
38
- }), /* @__PURE__ */ jsxs("div", {
39
- className: "grid gap-12 md:grid-cols-2",
40
- children: [
41
- /* @__PURE__ */ jsxs("div", {
42
- className: "space-y-4",
43
- children: [
44
- /* @__PURE__ */ jsx("div", {
45
- className: "border-primary/20 bg-primary/10 flex h-12 w-12 items-center justify-center rounded-lg border",
46
- children: /* @__PURE__ */ jsx(Rocket, { className: "text-primary h-6 w-6" })
47
- }),
48
- /* @__PURE__ */ jsx("h3", {
49
- className: "text-xl font-semibold",
50
- children: "1. Access the Studio"
51
- }),
52
- /* @__PURE__ */ jsx("p", {
53
- className: "text-muted-foreground",
54
- children: "Your account has been enabled with Design Partner privileges. Log in to the Studio to start exploring the latest features before they're public."
55
- }),
56
- /* @__PURE__ */ jsx("div", {
57
- className: "pt-2",
58
- children: /* @__PURE__ */ jsx(Button, {
59
- asChild: true,
60
- variant: "outline",
61
- children: /* @__PURE__ */ jsxs(Link, {
62
- href: "https://www.contractspec.studio",
63
- children: ["Launch Studio ", /* @__PURE__ */ jsx(ArrowRight, { className: "ml-2 h-4 w-4" })]
64
- })
65
- })
66
- })
67
- ]
68
- }),
69
- /* @__PURE__ */ jsxs("div", {
70
- className: "space-y-4",
71
- children: [
72
- /* @__PURE__ */ jsx("div", {
73
- className: "border-primary/20 bg-primary/10 flex h-12 w-12 items-center justify-center rounded-lg border",
74
- children: /* @__PURE__ */ jsx(MessageSquare, { className: "text-primary h-6 w-6" })
75
- }),
76
- /* @__PURE__ */ jsx("h3", {
77
- className: "text-xl font-semibold",
78
- children: "2. Join the Conversation"
79
- }),
80
- /* @__PURE__ */ jsx("p", {
81
- className: "text-muted-foreground",
82
- children: "We've set up a dedicated private channel for real-time feedback and support. Connect with our engineering team and other partners."
83
- }),
84
- /* @__PURE__ */ jsx("div", {
85
- className: "pt-2",
86
- children: /* @__PURE__ */ jsx(Button, {
87
- asChild: true,
88
- variant: "outline",
89
- children: /* @__PURE__ */ jsxs(Link, {
90
- href: "mailto:partners@contractspec.io",
91
- children: [
92
- "Contact Partner Success",
93
- " ",
94
- /* @__PURE__ */ jsx(ArrowRight, { className: "ml-2 h-4 w-4" })
95
- ]
96
- })
97
- })
98
- })
99
- ]
100
- }),
101
- /* @__PURE__ */ jsxs("div", {
102
- className: "space-y-4",
103
- children: [
104
- /* @__PURE__ */ jsx("div", {
105
- className: "border-primary/20 bg-primary/10 flex h-12 w-12 items-center justify-center rounded-lg border",
106
- children: /* @__PURE__ */ jsx(BookOpen, { className: "text-primary h-6 w-6" })
107
- }),
108
- /* @__PURE__ */ jsx("h3", {
109
- className: "text-xl font-semibold",
110
- children: "3. Explore Documentation"
111
- }),
112
- /* @__PURE__ */ jsx("p", {
113
- className: "text-muted-foreground",
114
- children: "Dive deep into the core concepts, API references, and architecture guides. Our docs are evolving, and your feedback helps us improve them."
115
- }),
116
- /* @__PURE__ */ jsx("div", {
117
- className: "pt-2",
118
- children: /* @__PURE__ */ jsx(Button, {
119
- asChild: true,
120
- variant: "outline",
121
- children: /* @__PURE__ */ jsxs(Link, {
122
- href: "/docs",
123
- children: ["Read the Docs ", /* @__PURE__ */ jsx(ArrowRight, { className: "ml-2 h-4 w-4" })]
124
- })
125
- })
126
- })
127
- ]
128
- }),
129
- /* @__PURE__ */ jsxs("div", {
130
- className: "space-y-4",
131
- children: [
132
- /* @__PURE__ */ jsx("div", {
133
- className: "border-primary/20 bg-primary/10 flex h-12 w-12 items-center justify-center rounded-lg border",
134
- children: /* @__PURE__ */ jsx(Users, { className: "text-primary h-6 w-6" })
135
- }),
136
- /* @__PURE__ */ jsx("h3", {
137
- className: "text-xl font-semibold",
138
- children: "4. Partner Syncs"
139
- }),
140
- /* @__PURE__ */ jsx("p", {
141
- className: "text-muted-foreground",
142
- children: "We schedule bi-weekly syncs to review your progress, blockers, and feature requests. Check your calendar invite for the next session."
143
- })
144
- ]
145
- })
146
- ]
147
- })]
148
- })
149
- }),
150
- /* @__PURE__ */ jsx("section", {
151
- className: "section-padding",
152
- children: /* @__PURE__ */ jsxs("div", {
153
- className: "container mx-auto max-w-3xl",
154
- children: [/* @__PURE__ */ jsx("h2", {
155
- className: "mb-8 text-3xl font-bold",
156
- children: "What to Expect"
157
- }), /* @__PURE__ */ jsxs("div", {
158
- className: "space-y-8",
159
- children: [
160
- /* @__PURE__ */ jsxs("div", { children: [/* @__PURE__ */ jsx("h3", {
161
- className: "mb-2 text-xl font-semibold",
162
- children: "Fast Iteration Cycles"
163
- }), /* @__PURE__ */ jsx("p", {
164
- className: "text-muted-foreground",
165
- children: "We ship updates frequently. You might see UI changes or new capabilities appear weekly. We'll do our best to communicate breaking changes in advance."
166
- })] }),
167
- /* @__PURE__ */ jsxs("div", { children: [/* @__PURE__ */ jsx("h3", {
168
- className: "mb-2 text-xl font-semibold",
169
- children: "Direct Engineering Access"
170
- }), /* @__PURE__ */ jsx("p", {
171
- className: "text-muted-foreground",
172
- children: "You're not talking to support agents; you're talking to the builders. Your feedback goes directly into the issue tracker."
173
- })] }),
174
- /* @__PURE__ */ jsxs("div", { children: [/* @__PURE__ */ jsx("h3", {
175
- className: "mb-2 text-xl font-semibold",
176
- children: "Input on Roadmap"
177
- }), /* @__PURE__ */ jsx("p", {
178
- className: "text-muted-foreground",
179
- children: "Design Partners influence priority. If a feature enables a critical use case for you, let us know—we often reshuffle our sprint to accommodate partner needs."
180
- })] })
181
- ]
182
- })]
183
- })
184
- }),
185
- /* @__PURE__ */ jsx("section", {
186
- className: "section-padding border-t border-white/10",
187
- children: /* @__PURE__ */ jsxs("div", {
188
- className: "container mx-auto max-w-3xl text-center",
189
- children: [
190
- /* @__PURE__ */ jsx("h2", {
191
- className: "mb-4 text-3xl font-bold",
192
- children: "Have a question right now?"
193
- }),
194
- /* @__PURE__ */ jsx("p", {
195
- className: "text-muted-foreground mb-8",
196
- children: "Don't hesitate to reach out. We are here to help you succeed."
197
- }),
198
- /* @__PURE__ */ jsx(Button, {
199
- asChild: true,
200
- size: "lg",
201
- children: /* @__PURE__ */ jsx(Link, {
202
- href: "mailto:partners@contractspec.io",
203
- children: "Email the Founders"
204
- })
205
- })
206
- ]
207
- })
208
- })
209
- ]
210
- });
20
+ return /* @__PURE__ */ jsxDEV("main", {
21
+ className: "flex grow flex-col",
22
+ children: [
23
+ /* @__PURE__ */ jsxDEV("section", {
24
+ className: "section-padding relative overflow-hidden",
25
+ children: /* @__PURE__ */ jsxDEV("div", {
26
+ className: "container mx-auto max-w-5xl",
27
+ children: /* @__PURE__ */ jsxDEV("div", {
28
+ className: "mb-12 max-w-3xl",
29
+ children: [
30
+ /* @__PURE__ */ jsxDEV("h1", {
31
+ className: "mb-6 text-4xl font-bold tracking-tight sm:text-5xl",
32
+ children: "Welcome, Design Partner"
33
+ }, undefined, false, undefined, this),
34
+ /* @__PURE__ */ jsxDEV("p", {
35
+ className: "text-muted-foreground text-xl leading-relaxed",
36
+ children: "We're thrilled to have you on board. As a Design Partner, you play a critical role in shaping the future of ContractSpec. This hub contains everything you need to get started, collaborate with us, and build your first specifications."
37
+ }, undefined, false, undefined, this)
38
+ ]
39
+ }, undefined, true, undefined, this)
40
+ }, undefined, false, undefined, this)
41
+ }, undefined, false, undefined, this),
42
+ /* @__PURE__ */ jsxDEV("section", {
43
+ className: "section-padding bg-white/5",
44
+ children: /* @__PURE__ */ jsxDEV("div", {
45
+ className: "container mx-auto max-w-5xl",
46
+ children: [
47
+ /* @__PURE__ */ jsxDEV("h2", {
48
+ className: "mb-12 text-3xl font-bold",
49
+ children: "Getting Started"
50
+ }, undefined, false, undefined, this),
51
+ /* @__PURE__ */ jsxDEV("div", {
52
+ className: "grid gap-12 md:grid-cols-2",
53
+ children: [
54
+ /* @__PURE__ */ jsxDEV("div", {
55
+ className: "space-y-4",
56
+ children: [
57
+ /* @__PURE__ */ jsxDEV("div", {
58
+ className: "border-primary/20 bg-primary/10 flex h-12 w-12 items-center justify-center rounded-lg border",
59
+ children: /* @__PURE__ */ jsxDEV(Rocket, {
60
+ className: "text-primary h-6 w-6"
61
+ }, undefined, false, undefined, this)
62
+ }, undefined, false, undefined, this),
63
+ /* @__PURE__ */ jsxDEV("h3", {
64
+ className: "text-xl font-semibold",
65
+ children: "1. Access the Studio"
66
+ }, undefined, false, undefined, this),
67
+ /* @__PURE__ */ jsxDEV("p", {
68
+ className: "text-muted-foreground",
69
+ children: "Your account has been enabled with Design Partner privileges. Log in to the Studio to start exploring the latest features before they're public."
70
+ }, undefined, false, undefined, this),
71
+ /* @__PURE__ */ jsxDEV("div", {
72
+ className: "pt-2",
73
+ children: /* @__PURE__ */ jsxDEV(Button, {
74
+ asChild: true,
75
+ variant: "outline",
76
+ children: /* @__PURE__ */ jsxDEV(Link, {
77
+ href: "https://www.contractspec.studio",
78
+ children: [
79
+ "Launch Studio ",
80
+ /* @__PURE__ */ jsxDEV(ArrowRight, {
81
+ className: "ml-2 h-4 w-4"
82
+ }, undefined, false, undefined, this)
83
+ ]
84
+ }, undefined, true, undefined, this)
85
+ }, undefined, false, undefined, this)
86
+ }, undefined, false, undefined, this)
87
+ ]
88
+ }, undefined, true, undefined, this),
89
+ /* @__PURE__ */ jsxDEV("div", {
90
+ className: "space-y-4",
91
+ children: [
92
+ /* @__PURE__ */ jsxDEV("div", {
93
+ className: "border-primary/20 bg-primary/10 flex h-12 w-12 items-center justify-center rounded-lg border",
94
+ children: /* @__PURE__ */ jsxDEV(MessageSquare, {
95
+ className: "text-primary h-6 w-6"
96
+ }, undefined, false, undefined, this)
97
+ }, undefined, false, undefined, this),
98
+ /* @__PURE__ */ jsxDEV("h3", {
99
+ className: "text-xl font-semibold",
100
+ children: "2. Join the Conversation"
101
+ }, undefined, false, undefined, this),
102
+ /* @__PURE__ */ jsxDEV("p", {
103
+ className: "text-muted-foreground",
104
+ children: "We've set up a dedicated private channel for real-time feedback and support. Connect with our engineering team and other partners."
105
+ }, undefined, false, undefined, this),
106
+ /* @__PURE__ */ jsxDEV("div", {
107
+ className: "pt-2",
108
+ children: /* @__PURE__ */ jsxDEV(Button, {
109
+ asChild: true,
110
+ variant: "outline",
111
+ children: /* @__PURE__ */ jsxDEV(Link, {
112
+ href: "mailto:partners@contractspec.io",
113
+ children: [
114
+ "Contact Partner Success",
115
+ " ",
116
+ /* @__PURE__ */ jsxDEV(ArrowRight, {
117
+ className: "ml-2 h-4 w-4"
118
+ }, undefined, false, undefined, this)
119
+ ]
120
+ }, undefined, true, undefined, this)
121
+ }, undefined, false, undefined, this)
122
+ }, undefined, false, undefined, this)
123
+ ]
124
+ }, undefined, true, undefined, this),
125
+ /* @__PURE__ */ jsxDEV("div", {
126
+ className: "space-y-4",
127
+ children: [
128
+ /* @__PURE__ */ jsxDEV("div", {
129
+ className: "border-primary/20 bg-primary/10 flex h-12 w-12 items-center justify-center rounded-lg border",
130
+ children: /* @__PURE__ */ jsxDEV(BookOpen, {
131
+ className: "text-primary h-6 w-6"
132
+ }, undefined, false, undefined, this)
133
+ }, undefined, false, undefined, this),
134
+ /* @__PURE__ */ jsxDEV("h3", {
135
+ className: "text-xl font-semibold",
136
+ children: "3. Explore Documentation"
137
+ }, undefined, false, undefined, this),
138
+ /* @__PURE__ */ jsxDEV("p", {
139
+ className: "text-muted-foreground",
140
+ children: "Dive deep into the core concepts, API references, and architecture guides. Our docs are evolving, and your feedback helps us improve them."
141
+ }, undefined, false, undefined, this),
142
+ /* @__PURE__ */ jsxDEV("div", {
143
+ className: "pt-2",
144
+ children: /* @__PURE__ */ jsxDEV(Button, {
145
+ asChild: true,
146
+ variant: "outline",
147
+ children: /* @__PURE__ */ jsxDEV(Link, {
148
+ href: "/docs",
149
+ children: [
150
+ "Read the Docs ",
151
+ /* @__PURE__ */ jsxDEV(ArrowRight, {
152
+ className: "ml-2 h-4 w-4"
153
+ }, undefined, false, undefined, this)
154
+ ]
155
+ }, undefined, true, undefined, this)
156
+ }, undefined, false, undefined, this)
157
+ }, undefined, false, undefined, this)
158
+ ]
159
+ }, undefined, true, undefined, this),
160
+ /* @__PURE__ */ jsxDEV("div", {
161
+ className: "space-y-4",
162
+ children: [
163
+ /* @__PURE__ */ jsxDEV("div", {
164
+ className: "border-primary/20 bg-primary/10 flex h-12 w-12 items-center justify-center rounded-lg border",
165
+ children: /* @__PURE__ */ jsxDEV(Users, {
166
+ className: "text-primary h-6 w-6"
167
+ }, undefined, false, undefined, this)
168
+ }, undefined, false, undefined, this),
169
+ /* @__PURE__ */ jsxDEV("h3", {
170
+ className: "text-xl font-semibold",
171
+ children: "4. Partner Syncs"
172
+ }, undefined, false, undefined, this),
173
+ /* @__PURE__ */ jsxDEV("p", {
174
+ className: "text-muted-foreground",
175
+ children: "We schedule bi-weekly syncs to review your progress, blockers, and feature requests. Check your calendar invite for the next session."
176
+ }, undefined, false, undefined, this)
177
+ ]
178
+ }, undefined, true, undefined, this)
179
+ ]
180
+ }, undefined, true, undefined, this)
181
+ ]
182
+ }, undefined, true, undefined, this)
183
+ }, undefined, false, undefined, this),
184
+ /* @__PURE__ */ jsxDEV("section", {
185
+ className: "section-padding",
186
+ children: /* @__PURE__ */ jsxDEV("div", {
187
+ className: "container mx-auto max-w-3xl",
188
+ children: [
189
+ /* @__PURE__ */ jsxDEV("h2", {
190
+ className: "mb-8 text-3xl font-bold",
191
+ children: "What to Expect"
192
+ }, undefined, false, undefined, this),
193
+ /* @__PURE__ */ jsxDEV("div", {
194
+ className: "space-y-8",
195
+ children: [
196
+ /* @__PURE__ */ jsxDEV("div", {
197
+ children: [
198
+ /* @__PURE__ */ jsxDEV("h3", {
199
+ className: "mb-2 text-xl font-semibold",
200
+ children: "Fast Iteration Cycles"
201
+ }, undefined, false, undefined, this),
202
+ /* @__PURE__ */ jsxDEV("p", {
203
+ className: "text-muted-foreground",
204
+ children: "We ship updates frequently. You might see UI changes or new capabilities appear weekly. We'll do our best to communicate breaking changes in advance."
205
+ }, undefined, false, undefined, this)
206
+ ]
207
+ }, undefined, true, undefined, this),
208
+ /* @__PURE__ */ jsxDEV("div", {
209
+ children: [
210
+ /* @__PURE__ */ jsxDEV("h3", {
211
+ className: "mb-2 text-xl font-semibold",
212
+ children: "Direct Engineering Access"
213
+ }, undefined, false, undefined, this),
214
+ /* @__PURE__ */ jsxDEV("p", {
215
+ className: "text-muted-foreground",
216
+ children: "You're not talking to support agents; you're talking to the builders. Your feedback goes directly into the issue tracker."
217
+ }, undefined, false, undefined, this)
218
+ ]
219
+ }, undefined, true, undefined, this),
220
+ /* @__PURE__ */ jsxDEV("div", {
221
+ children: [
222
+ /* @__PURE__ */ jsxDEV("h3", {
223
+ className: "mb-2 text-xl font-semibold",
224
+ children: "Input on Roadmap"
225
+ }, undefined, false, undefined, this),
226
+ /* @__PURE__ */ jsxDEV("p", {
227
+ className: "text-muted-foreground",
228
+ children: "Design Partners influence priority. If a feature enables a critical use case for you, let us know\u2014we often reshuffle our sprint to accommodate partner needs."
229
+ }, undefined, false, undefined, this)
230
+ ]
231
+ }, undefined, true, undefined, this)
232
+ ]
233
+ }, undefined, true, undefined, this)
234
+ ]
235
+ }, undefined, true, undefined, this)
236
+ }, undefined, false, undefined, this),
237
+ /* @__PURE__ */ jsxDEV("section", {
238
+ className: "section-padding border-t border-white/10",
239
+ children: /* @__PURE__ */ jsxDEV("div", {
240
+ className: "container mx-auto max-w-3xl text-center",
241
+ children: [
242
+ /* @__PURE__ */ jsxDEV("h2", {
243
+ className: "mb-4 text-3xl font-bold",
244
+ children: "Have a question right now?"
245
+ }, undefined, false, undefined, this),
246
+ /* @__PURE__ */ jsxDEV("p", {
247
+ className: "text-muted-foreground mb-8",
248
+ children: "Don't hesitate to reach out. We are here to help you succeed."
249
+ }, undefined, false, undefined, this),
250
+ /* @__PURE__ */ jsxDEV(Button, {
251
+ asChild: true,
252
+ size: "lg",
253
+ children: /* @__PURE__ */ jsxDEV(Link, {
254
+ href: "mailto:partners@contractspec.io",
255
+ children: "Email the Founders"
256
+ }, undefined, false, undefined, this)
257
+ }, undefined, false, undefined, this)
258
+ ]
259
+ }, undefined, true, undefined, this)
260
+ }, undefined, false, undefined, this)
261
+ ]
262
+ }, undefined, true, undefined, this);
211
263
  }
212
-
213
- //#endregion
214
- export { DesignPartnerPage, metadata };
215
- //# sourceMappingURL=DesignPartnerPage.js.map
264
+ export {
265
+ metadata,
266
+ DesignPartnerPage
267
+ };
@@ -1,7 +1,2 @@
1
- import * as react_jsx_runtime0 from "react/jsx-runtime";
2
-
3
- //#region src/components/marketing/LandingPage.d.ts
4
- declare function LandingPage(): react_jsx_runtime0.JSX.Element;
5
- //#endregion
6
- export { LandingPage };
1
+ export declare function LandingPage(): import("react/jsx-runtime").JSX.Element;
7
2
  //# sourceMappingURL=LandingPage.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"LandingPage.d.ts","names":[],"sources":["../../../src/components/marketing/LandingPage.tsx"],"mappings":";;;iBAcgB,WAAA,CAAA,GAAW,kBAAA,CAAA,GAAA,CAAA,OAAA"}
1
+ {"version":3,"file":"LandingPage.d.ts","sourceRoot":"","sources":["../../../src/components/marketing/LandingPage.tsx"],"names":[],"mappings":"AAcA,wBAAgB,WAAW,4CAe1B"}