@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
|
@@ -0,0 +1,487 @@
|
|
|
1
|
+
var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, {
|
|
2
|
+
get: (a, b) => (typeof require !== "undefined" ? require : a)[b]
|
|
3
|
+
}) : x)(function(x) {
|
|
4
|
+
if (typeof require !== "undefined")
|
|
5
|
+
return require.apply(this, arguments);
|
|
6
|
+
throw Error('Dynamic require of "' + x + '" is not supported');
|
|
7
|
+
});
|
|
8
|
+
|
|
9
|
+
// src/components/marketing/ContributePage.tsx
|
|
10
|
+
import { jsxDEV } from "react/jsx-dev-runtime";
|
|
11
|
+
var metadata = {
|
|
12
|
+
title: "Contribute to ContractSpec",
|
|
13
|
+
description: "Join the ContractSpec open-source community. Report issues, improve docs, build integrations, and help shape the future of spec-first development.",
|
|
14
|
+
openGraph: {
|
|
15
|
+
title: "Contribute to ContractSpec",
|
|
16
|
+
description: "Get started contributing in under 3 minutes. Docs, examples, integrations, and more.",
|
|
17
|
+
url: "https://contractspec.io/contribute"
|
|
18
|
+
},
|
|
19
|
+
alternates: {
|
|
20
|
+
canonical: "https://contractspec.io/contribute"
|
|
21
|
+
}
|
|
22
|
+
};
|
|
23
|
+
function ContributePage() {
|
|
24
|
+
return /* @__PURE__ */ jsxDEV("main", {
|
|
25
|
+
className: "flex grow flex-col items-center justify-center",
|
|
26
|
+
children: /* @__PURE__ */ jsxDEV("section", {
|
|
27
|
+
className: "section-padding",
|
|
28
|
+
children: /* @__PURE__ */ jsxDEV("div", {
|
|
29
|
+
className: "prose prose-invert mx-auto max-w-2xl",
|
|
30
|
+
children: [
|
|
31
|
+
/* @__PURE__ */ jsxDEV("h1", {
|
|
32
|
+
className: "mb-8 text-4xl font-bold",
|
|
33
|
+
children: "Contribute to ContractSpec"
|
|
34
|
+
}, undefined, false, undefined, this),
|
|
35
|
+
/* @__PURE__ */ jsxDEV("div", {
|
|
36
|
+
className: "not-prose border-border bg-muted/30 mb-12 rounded-lg border p-6",
|
|
37
|
+
children: [
|
|
38
|
+
/* @__PURE__ */ jsxDEV("h2", {
|
|
39
|
+
className: "text-foreground mb-4 text-xl font-bold",
|
|
40
|
+
children: "⚡ Quick Start — 3 Minutes to Your First Contribution"
|
|
41
|
+
}, undefined, false, undefined, this),
|
|
42
|
+
/* @__PURE__ */ jsxDEV("ol", {
|
|
43
|
+
className: "text-muted-foreground list-inside list-decimal space-y-2",
|
|
44
|
+
children: [
|
|
45
|
+
/* @__PURE__ */ jsxDEV("li", {
|
|
46
|
+
children: [
|
|
47
|
+
"Read the",
|
|
48
|
+
" ",
|
|
49
|
+
/* @__PURE__ */ jsxDEV("a", {
|
|
50
|
+
href: "https://github.com/contractspec/contractspec/blob/main/CONTRIBUTING.md",
|
|
51
|
+
className: "text-primary hover:underline",
|
|
52
|
+
target: "_blank",
|
|
53
|
+
rel: "noopener noreferrer",
|
|
54
|
+
children: "CONTRIBUTING guide"
|
|
55
|
+
}, undefined, false, undefined, this)
|
|
56
|
+
]
|
|
57
|
+
}, undefined, true, undefined, this),
|
|
58
|
+
/* @__PURE__ */ jsxDEV("li", {
|
|
59
|
+
children: [
|
|
60
|
+
"Pick a",
|
|
61
|
+
" ",
|
|
62
|
+
/* @__PURE__ */ jsxDEV("a", {
|
|
63
|
+
href: "https://github.com/contractspec/contractspec/labels/good%20first%20issue",
|
|
64
|
+
className: "text-primary hover:underline",
|
|
65
|
+
target: "_blank",
|
|
66
|
+
rel: "noopener noreferrer",
|
|
67
|
+
children: "good first issue"
|
|
68
|
+
}, undefined, false, undefined, this),
|
|
69
|
+
" ",
|
|
70
|
+
"or",
|
|
71
|
+
" ",
|
|
72
|
+
/* @__PURE__ */ jsxDEV("a", {
|
|
73
|
+
href: "https://github.com/contractspec/contractspec/labels/help%20wanted",
|
|
74
|
+
className: "text-primary hover:underline",
|
|
75
|
+
target: "_blank",
|
|
76
|
+
rel: "noopener noreferrer",
|
|
77
|
+
children: "help wanted"
|
|
78
|
+
}, undefined, false, undefined, this),
|
|
79
|
+
" ",
|
|
80
|
+
"label"
|
|
81
|
+
]
|
|
82
|
+
}, undefined, true, undefined, this),
|
|
83
|
+
/* @__PURE__ */ jsxDEV("li", {
|
|
84
|
+
children: "Open a draft PR early — we'll guide you from there"
|
|
85
|
+
}, undefined, false, undefined, this)
|
|
86
|
+
]
|
|
87
|
+
}, undefined, true, undefined, this)
|
|
88
|
+
]
|
|
89
|
+
}, undefined, true, undefined, this),
|
|
90
|
+
/* @__PURE__ */ jsxDEV("section", {
|
|
91
|
+
className: "mb-10 space-y-4",
|
|
92
|
+
children: [
|
|
93
|
+
/* @__PURE__ */ jsxDEV("h2", {
|
|
94
|
+
className: "text-foreground text-2xl font-bold",
|
|
95
|
+
children: "Why Open Source?"
|
|
96
|
+
}, undefined, false, undefined, this),
|
|
97
|
+
/* @__PURE__ */ jsxDEV("ul", {
|
|
98
|
+
className: "text-muted-foreground list-inside list-disc space-y-2",
|
|
99
|
+
children: [
|
|
100
|
+
/* @__PURE__ */ jsxDEV("li", {
|
|
101
|
+
children: [
|
|
102
|
+
/* @__PURE__ */ jsxDEV("strong", {
|
|
103
|
+
children: "Transparency:"
|
|
104
|
+
}, undefined, false, undefined, this),
|
|
105
|
+
" You can see exactly how your code is compiled and deployed"
|
|
106
|
+
]
|
|
107
|
+
}, undefined, true, undefined, this),
|
|
108
|
+
/* @__PURE__ */ jsxDEV("li", {
|
|
109
|
+
children: [
|
|
110
|
+
/* @__PURE__ */ jsxDEV("strong", {
|
|
111
|
+
children: "Trust:"
|
|
112
|
+
}, undefined, false, undefined, this),
|
|
113
|
+
" No black boxes — audit the compiler that shapes your AI-generated code"
|
|
114
|
+
]
|
|
115
|
+
}, undefined, true, undefined, this),
|
|
116
|
+
/* @__PURE__ */ jsxDEV("li", {
|
|
117
|
+
children: [
|
|
118
|
+
/* @__PURE__ */ jsxDEV("strong", {
|
|
119
|
+
children: "Faster ecosystem:"
|
|
120
|
+
}, undefined, false, undefined, this),
|
|
121
|
+
" Community contributions accelerate adoption and surface real-world edge cases"
|
|
122
|
+
]
|
|
123
|
+
}, undefined, true, undefined, this),
|
|
124
|
+
/* @__PURE__ */ jsxDEV("li", {
|
|
125
|
+
children: [
|
|
126
|
+
/* @__PURE__ */ jsxDEV("strong", {
|
|
127
|
+
children: "Community review:"
|
|
128
|
+
}, undefined, false, undefined, this),
|
|
129
|
+
" More eyes catch more bugs, and better patterns emerge"
|
|
130
|
+
]
|
|
131
|
+
}, undefined, true, undefined, this),
|
|
132
|
+
/* @__PURE__ */ jsxDEV("li", {
|
|
133
|
+
children: [
|
|
134
|
+
/* @__PURE__ */ jsxDEV("strong", {
|
|
135
|
+
children: "No lock-in:"
|
|
136
|
+
}, undefined, false, undefined, this),
|
|
137
|
+
" You own your code. The spec is portable."
|
|
138
|
+
]
|
|
139
|
+
}, undefined, true, undefined, this)
|
|
140
|
+
]
|
|
141
|
+
}, undefined, true, undefined, this)
|
|
142
|
+
]
|
|
143
|
+
}, undefined, true, undefined, this),
|
|
144
|
+
/* @__PURE__ */ jsxDEV("section", {
|
|
145
|
+
className: "mb-10 space-y-4",
|
|
146
|
+
children: [
|
|
147
|
+
/* @__PURE__ */ jsxDEV("h2", {
|
|
148
|
+
className: "text-foreground text-2xl font-bold",
|
|
149
|
+
children: "Where to Contribute"
|
|
150
|
+
}, undefined, false, undefined, this),
|
|
151
|
+
/* @__PURE__ */ jsxDEV("ul", {
|
|
152
|
+
className: "text-muted-foreground list-inside list-disc space-y-2",
|
|
153
|
+
children: [
|
|
154
|
+
/* @__PURE__ */ jsxDEV("li", {
|
|
155
|
+
children: [
|
|
156
|
+
/* @__PURE__ */ jsxDEV("a", {
|
|
157
|
+
href: "https://github.com/contractspec",
|
|
158
|
+
className: "text-primary hover:underline",
|
|
159
|
+
target: "_blank",
|
|
160
|
+
rel: "noopener noreferrer",
|
|
161
|
+
children: "GitHub Organization"
|
|
162
|
+
}, undefined, false, undefined, this),
|
|
163
|
+
" ",
|
|
164
|
+
"— All repos live here"
|
|
165
|
+
]
|
|
166
|
+
}, undefined, true, undefined, this),
|
|
167
|
+
/* @__PURE__ */ jsxDEV("li", {
|
|
168
|
+
children: [
|
|
169
|
+
/* @__PURE__ */ jsxDEV("a", {
|
|
170
|
+
href: "https://github.com/contractspec/contractspec",
|
|
171
|
+
className: "text-primary hover:underline",
|
|
172
|
+
target: "_blank",
|
|
173
|
+
rel: "noopener noreferrer",
|
|
174
|
+
children: "Main Repository"
|
|
175
|
+
}, undefined, false, undefined, this),
|
|
176
|
+
" ",
|
|
177
|
+
"— Core compiler and specs"
|
|
178
|
+
]
|
|
179
|
+
}, undefined, true, undefined, this),
|
|
180
|
+
/* @__PURE__ */ jsxDEV("li", {
|
|
181
|
+
children: [
|
|
182
|
+
/* @__PURE__ */ jsxDEV("a", {
|
|
183
|
+
href: "https://github.com/contractspec/contractspec/discussions",
|
|
184
|
+
className: "text-primary hover:underline",
|
|
185
|
+
target: "_blank",
|
|
186
|
+
rel: "noopener noreferrer",
|
|
187
|
+
children: "Discussions"
|
|
188
|
+
}, undefined, false, undefined, this),
|
|
189
|
+
" ",
|
|
190
|
+
"— Questions, ideas, and RFCs"
|
|
191
|
+
]
|
|
192
|
+
}, undefined, true, undefined, this)
|
|
193
|
+
]
|
|
194
|
+
}, undefined, true, undefined, this)
|
|
195
|
+
]
|
|
196
|
+
}, undefined, true, undefined, this),
|
|
197
|
+
/* @__PURE__ */ jsxDEV("section", {
|
|
198
|
+
className: "mb-10 space-y-4",
|
|
199
|
+
children: [
|
|
200
|
+
/* @__PURE__ */ jsxDEV("h2", {
|
|
201
|
+
className: "text-foreground text-2xl font-bold",
|
|
202
|
+
children: "Ways to Contribute"
|
|
203
|
+
}, undefined, false, undefined, this),
|
|
204
|
+
/* @__PURE__ */ jsxDEV("div", {
|
|
205
|
+
className: "text-muted-foreground space-y-3",
|
|
206
|
+
children: [
|
|
207
|
+
/* @__PURE__ */ jsxDEV("p", {
|
|
208
|
+
children: [
|
|
209
|
+
/* @__PURE__ */ jsxDEV("strong", {
|
|
210
|
+
className: "text-foreground",
|
|
211
|
+
children: "\uD83D\uDCC4 Documentation:"
|
|
212
|
+
}, undefined, false, undefined, this),
|
|
213
|
+
" ",
|
|
214
|
+
"Fix typos, improve explanations, add missing guides"
|
|
215
|
+
]
|
|
216
|
+
}, undefined, true, undefined, this),
|
|
217
|
+
/* @__PURE__ */ jsxDEV("p", {
|
|
218
|
+
children: [
|
|
219
|
+
/* @__PURE__ */ jsxDEV("strong", {
|
|
220
|
+
className: "text-foreground",
|
|
221
|
+
children: "\uD83D\uDCE6 Examples & Templates:"
|
|
222
|
+
}, undefined, false, undefined, this),
|
|
223
|
+
" ",
|
|
224
|
+
"Build real-world specs for common use cases"
|
|
225
|
+
]
|
|
226
|
+
}, undefined, true, undefined, this),
|
|
227
|
+
/* @__PURE__ */ jsxDEV("p", {
|
|
228
|
+
children: [
|
|
229
|
+
/* @__PURE__ */ jsxDEV("strong", {
|
|
230
|
+
className: "text-foreground",
|
|
231
|
+
children: "\uD83D\uDD0C Integrations & Adapters:"
|
|
232
|
+
}, undefined, false, undefined, this),
|
|
233
|
+
" ",
|
|
234
|
+
"Connect ContractSpec to frameworks, databases, and tools"
|
|
235
|
+
]
|
|
236
|
+
}, undefined, true, undefined, this),
|
|
237
|
+
/* @__PURE__ */ jsxDEV("p", {
|
|
238
|
+
children: [
|
|
239
|
+
/* @__PURE__ */ jsxDEV("strong", {
|
|
240
|
+
className: "text-foreground",
|
|
241
|
+
children: "\uD83D\uDC1B Bug Reports:"
|
|
242
|
+
}, undefined, false, undefined, this),
|
|
243
|
+
" ",
|
|
244
|
+
"File issues with clear reproduction steps — minimal cases help the most"
|
|
245
|
+
]
|
|
246
|
+
}, undefined, true, undefined, this),
|
|
247
|
+
/* @__PURE__ */ jsxDEV("p", {
|
|
248
|
+
children: [
|
|
249
|
+
/* @__PURE__ */ jsxDEV("strong", {
|
|
250
|
+
className: "text-foreground",
|
|
251
|
+
children: "\uD83D\uDD12 Security Reports:"
|
|
252
|
+
}, undefined, false, undefined, this),
|
|
253
|
+
" ",
|
|
254
|
+
"Found a vulnerability? See",
|
|
255
|
+
" ",
|
|
256
|
+
/* @__PURE__ */ jsxDEV("a", {
|
|
257
|
+
href: "#security",
|
|
258
|
+
className: "text-primary hover:underline",
|
|
259
|
+
children: "Security"
|
|
260
|
+
}, undefined, false, undefined, this),
|
|
261
|
+
" ",
|
|
262
|
+
"below"
|
|
263
|
+
]
|
|
264
|
+
}, undefined, true, undefined, this)
|
|
265
|
+
]
|
|
266
|
+
}, undefined, true, undefined, this)
|
|
267
|
+
]
|
|
268
|
+
}, undefined, true, undefined, this),
|
|
269
|
+
/* @__PURE__ */ jsxDEV("section", {
|
|
270
|
+
className: "mb-10 space-y-4",
|
|
271
|
+
children: [
|
|
272
|
+
/* @__PURE__ */ jsxDEV("h2", {
|
|
273
|
+
className: "text-foreground text-2xl font-bold",
|
|
274
|
+
children: "Quality Bar"
|
|
275
|
+
}, undefined, false, undefined, this),
|
|
276
|
+
/* @__PURE__ */ jsxDEV("p", {
|
|
277
|
+
className: "text-muted-foreground",
|
|
278
|
+
children: "We keep the bar high so the codebase stays maintainable. Every PR should:"
|
|
279
|
+
}, undefined, false, undefined, this),
|
|
280
|
+
/* @__PURE__ */ jsxDEV("ul", {
|
|
281
|
+
className: "text-muted-foreground list-inside list-disc space-y-2",
|
|
282
|
+
children: [
|
|
283
|
+
/* @__PURE__ */ jsxDEV("li", {
|
|
284
|
+
children: [
|
|
285
|
+
/* @__PURE__ */ jsxDEV("strong", {
|
|
286
|
+
children: "Include tests"
|
|
287
|
+
}, undefined, false, undefined, this),
|
|
288
|
+
" — Unit tests for logic, integration tests for adapters"
|
|
289
|
+
]
|
|
290
|
+
}, undefined, true, undefined, this),
|
|
291
|
+
/* @__PURE__ */ jsxDEV("li", {
|
|
292
|
+
children: [
|
|
293
|
+
/* @__PURE__ */ jsxDEV("strong", {
|
|
294
|
+
children: "Be fully typed"
|
|
295
|
+
}, undefined, false, undefined, this),
|
|
296
|
+
" — No ",
|
|
297
|
+
/* @__PURE__ */ jsxDEV("code", {
|
|
298
|
+
children: "any"
|
|
299
|
+
}, undefined, false, undefined, this),
|
|
300
|
+
". Strict TypeScript only."
|
|
301
|
+
]
|
|
302
|
+
}, undefined, true, undefined, this),
|
|
303
|
+
/* @__PURE__ */ jsxDEV("li", {
|
|
304
|
+
children: [
|
|
305
|
+
/* @__PURE__ */ jsxDEV("strong", {
|
|
306
|
+
children: "Stay small"
|
|
307
|
+
}, undefined, false, undefined, this),
|
|
308
|
+
" — One concern per PR. Easier to review, faster to merge."
|
|
309
|
+
]
|
|
310
|
+
}, undefined, true, undefined, this),
|
|
311
|
+
/* @__PURE__ */ jsxDEV("li", {
|
|
312
|
+
children: [
|
|
313
|
+
/* @__PURE__ */ jsxDEV("strong", {
|
|
314
|
+
children: "Use clear commit messages"
|
|
315
|
+
}, undefined, false, undefined, this),
|
|
316
|
+
" — Describe _what_ and _why_, not just _how_"
|
|
317
|
+
]
|
|
318
|
+
}, undefined, true, undefined, this)
|
|
319
|
+
]
|
|
320
|
+
}, undefined, true, undefined, this),
|
|
321
|
+
/* @__PURE__ */ jsxDEV("div", {
|
|
322
|
+
className: "bg-muted/20 mt-4 rounded-md p-4",
|
|
323
|
+
children: [
|
|
324
|
+
/* @__PURE__ */ jsxDEV("h3", {
|
|
325
|
+
className: "text-foreground mb-2 font-semibold",
|
|
326
|
+
children: "Spec-First Mindset"
|
|
327
|
+
}, undefined, false, undefined, this),
|
|
328
|
+
/* @__PURE__ */ jsxDEV("p", {
|
|
329
|
+
className: "text-muted-foreground text-sm",
|
|
330
|
+
children: "ContractSpec exists to enforce contracts between humans, AI, and code. When contributing, think spec-first: define the behavior before the implementation. A well-defined spec makes changes safe to regenerate and easy to validate."
|
|
331
|
+
}, undefined, false, undefined, this)
|
|
332
|
+
]
|
|
333
|
+
}, undefined, true, undefined, this)
|
|
334
|
+
]
|
|
335
|
+
}, undefined, true, undefined, this),
|
|
336
|
+
/* @__PURE__ */ jsxDEV("section", {
|
|
337
|
+
className: "mb-10 space-y-4",
|
|
338
|
+
children: [
|
|
339
|
+
/* @__PURE__ */ jsxDEV("h2", {
|
|
340
|
+
className: "text-foreground text-2xl font-bold",
|
|
341
|
+
children: "Governance & Decision Making"
|
|
342
|
+
}, undefined, false, undefined, this),
|
|
343
|
+
/* @__PURE__ */ jsxDEV("p", {
|
|
344
|
+
className: "text-muted-foreground",
|
|
345
|
+
children: [
|
|
346
|
+
"ContractSpec uses a",
|
|
347
|
+
" ",
|
|
348
|
+
/* @__PURE__ */ jsxDEV("strong", {
|
|
349
|
+
className: "text-foreground",
|
|
350
|
+
children: "founder-led maintainer model"
|
|
351
|
+
}, undefined, false, undefined, this),
|
|
352
|
+
":"
|
|
353
|
+
]
|
|
354
|
+
}, undefined, true, undefined, this),
|
|
355
|
+
/* @__PURE__ */ jsxDEV("ul", {
|
|
356
|
+
className: "text-muted-foreground list-inside list-disc space-y-2",
|
|
357
|
+
children: [
|
|
358
|
+
/* @__PURE__ */ jsxDEV("li", {
|
|
359
|
+
children: "The founder has final say on significant decisions — for now"
|
|
360
|
+
}, undefined, false, undefined, this),
|
|
361
|
+
/* @__PURE__ */ jsxDEV("li", {
|
|
362
|
+
children: "All reasoning is shared publicly in issues or PRs"
|
|
363
|
+
}, undefined, false, undefined, this),
|
|
364
|
+
/* @__PURE__ */ jsxDEV("li", {
|
|
365
|
+
children: "Community input shapes direction; we don't merge in silence"
|
|
366
|
+
}, undefined, false, undefined, this),
|
|
367
|
+
/* @__PURE__ */ jsxDEV("li", {
|
|
368
|
+
children: "This model may evolve as the project matures and trusted maintainers emerge"
|
|
369
|
+
}, undefined, false, undefined, this)
|
|
370
|
+
]
|
|
371
|
+
}, undefined, true, undefined, this)
|
|
372
|
+
]
|
|
373
|
+
}, undefined, true, undefined, this),
|
|
374
|
+
/* @__PURE__ */ jsxDEV("section", {
|
|
375
|
+
className: "mb-10 space-y-4",
|
|
376
|
+
id: "security",
|
|
377
|
+
children: [
|
|
378
|
+
/* @__PURE__ */ jsxDEV("h2", {
|
|
379
|
+
className: "text-foreground text-2xl font-bold",
|
|
380
|
+
children: "Security"
|
|
381
|
+
}, undefined, false, undefined, this),
|
|
382
|
+
/* @__PURE__ */ jsxDEV("p", {
|
|
383
|
+
className: "text-muted-foreground",
|
|
384
|
+
children: [
|
|
385
|
+
"If you discover a security vulnerability, please",
|
|
386
|
+
" ",
|
|
387
|
+
/* @__PURE__ */ jsxDEV("strong", {
|
|
388
|
+
className: "text-foreground",
|
|
389
|
+
children: "do not"
|
|
390
|
+
}, undefined, false, undefined, this),
|
|
391
|
+
" open a public issue."
|
|
392
|
+
]
|
|
393
|
+
}, undefined, true, undefined, this),
|
|
394
|
+
/* @__PURE__ */ jsxDEV("p", {
|
|
395
|
+
className: "text-muted-foreground",
|
|
396
|
+
children: [
|
|
397
|
+
"Instead, email us at",
|
|
398
|
+
" ",
|
|
399
|
+
/* @__PURE__ */ jsxDEV("a", {
|
|
400
|
+
href: "mailto:security@contractspec.io",
|
|
401
|
+
className: "text-primary hover:underline",
|
|
402
|
+
children: "security@contractspec.io"
|
|
403
|
+
}, undefined, false, undefined, this),
|
|
404
|
+
" ",
|
|
405
|
+
"with:"
|
|
406
|
+
]
|
|
407
|
+
}, undefined, true, undefined, this),
|
|
408
|
+
/* @__PURE__ */ jsxDEV("ul", {
|
|
409
|
+
className: "text-muted-foreground list-inside list-disc space-y-2",
|
|
410
|
+
children: [
|
|
411
|
+
/* @__PURE__ */ jsxDEV("li", {
|
|
412
|
+
children: "A clear description of the vulnerability"
|
|
413
|
+
}, undefined, false, undefined, this),
|
|
414
|
+
/* @__PURE__ */ jsxDEV("li", {
|
|
415
|
+
children: "Steps to reproduce"
|
|
416
|
+
}, undefined, false, undefined, this),
|
|
417
|
+
/* @__PURE__ */ jsxDEV("li", {
|
|
418
|
+
children: "Potential impact"
|
|
419
|
+
}, undefined, false, undefined, this)
|
|
420
|
+
]
|
|
421
|
+
}, undefined, true, undefined, this),
|
|
422
|
+
/* @__PURE__ */ jsxDEV("p", {
|
|
423
|
+
className: "text-muted-foreground",
|
|
424
|
+
children: "We'll acknowledge within 48 hours and work with you to coordinate disclosure."
|
|
425
|
+
}, undefined, false, undefined, this)
|
|
426
|
+
]
|
|
427
|
+
}, undefined, true, undefined, this),
|
|
428
|
+
/* @__PURE__ */ jsxDEV("section", {
|
|
429
|
+
className: "mb-10 space-y-4",
|
|
430
|
+
children: [
|
|
431
|
+
/* @__PURE__ */ jsxDEV("h2", {
|
|
432
|
+
className: "text-foreground text-2xl font-bold",
|
|
433
|
+
children: "Code of Conduct"
|
|
434
|
+
}, undefined, false, undefined, this),
|
|
435
|
+
/* @__PURE__ */ jsxDEV("p", {
|
|
436
|
+
className: "text-muted-foreground",
|
|
437
|
+
children: [
|
|
438
|
+
"We expect all contributors to follow our",
|
|
439
|
+
" ",
|
|
440
|
+
/* @__PURE__ */ jsxDEV("a", {
|
|
441
|
+
href: "https://github.com/contractspec/contractspec/blob/main/CODE_OF_CONDUCT.md",
|
|
442
|
+
className: "text-primary hover:underline",
|
|
443
|
+
target: "_blank",
|
|
444
|
+
rel: "noopener noreferrer",
|
|
445
|
+
children: "Code of Conduct"
|
|
446
|
+
}, undefined, false, undefined, this),
|
|
447
|
+
". Be respectful, constructive, and assume good intent."
|
|
448
|
+
]
|
|
449
|
+
}, undefined, true, undefined, this)
|
|
450
|
+
]
|
|
451
|
+
}, undefined, true, undefined, this),
|
|
452
|
+
/* @__PURE__ */ jsxDEV("section", {
|
|
453
|
+
className: "border-border mt-12 space-y-4 border-t pt-8",
|
|
454
|
+
children: [
|
|
455
|
+
/* @__PURE__ */ jsxDEV("h2", {
|
|
456
|
+
className: "text-foreground text-2xl font-bold",
|
|
457
|
+
children: "Want to Go Deeper?"
|
|
458
|
+
}, undefined, false, undefined, this),
|
|
459
|
+
/* @__PURE__ */ jsxDEV("p", {
|
|
460
|
+
className: "text-muted-foreground",
|
|
461
|
+
children: "If you're considering a long-term commitment to ContractSpec — reviewing PRs regularly, shaping roadmap, mentoring new contributors — we'd love to talk."
|
|
462
|
+
}, undefined, false, undefined, this),
|
|
463
|
+
/* @__PURE__ */ jsxDEV("p", {
|
|
464
|
+
className: "text-muted-foreground",
|
|
465
|
+
children: [
|
|
466
|
+
"This isn't a job offer. It's an invitation to help build something meaningful together. Reach out at",
|
|
467
|
+
" ",
|
|
468
|
+
/* @__PURE__ */ jsxDEV("a", {
|
|
469
|
+
href: "mailto:maintainers@contractspec.io",
|
|
470
|
+
className: "text-primary hover:underline",
|
|
471
|
+
children: "maintainers@contractspec.io"
|
|
472
|
+
}, undefined, false, undefined, this),
|
|
473
|
+
" ",
|
|
474
|
+
"and tell us what you'd bring to the table."
|
|
475
|
+
]
|
|
476
|
+
}, undefined, true, undefined, this)
|
|
477
|
+
]
|
|
478
|
+
}, undefined, true, undefined, this)
|
|
479
|
+
]
|
|
480
|
+
}, undefined, true, undefined, this)
|
|
481
|
+
}, undefined, false, undefined, this)
|
|
482
|
+
}, undefined, false, undefined, this);
|
|
483
|
+
}
|
|
484
|
+
export {
|
|
485
|
+
metadata,
|
|
486
|
+
ContributePage
|
|
487
|
+
};
|