@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,9 +1,4 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
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","
|
|
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
|
-
|
|
2
|
-
|
|
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
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
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
|
-
|
|
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
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
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
|
-
|
|
214
|
-
|
|
215
|
-
|
|
264
|
+
export {
|
|
265
|
+
metadata,
|
|
266
|
+
DesignPartnerPage
|
|
267
|
+
};
|
|
@@ -1,7 +1,2 @@
|
|
|
1
|
-
|
|
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","
|
|
1
|
+
{"version":3,"file":"LandingPage.d.ts","sourceRoot":"","sources":["../../../src/components/marketing/LandingPage.tsx"],"names":[],"mappings":"AAcA,wBAAgB,WAAW,4CAe1B"}
|