@jonsoc/console-app 1.1.34
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/.opencode/agent/css.md +149 -0
- package/README.md +32 -0
- package/package.json +49 -0
- package/public/apple-touch-icon-v3.png +1 -0
- package/public/apple-touch-icon.png +1 -0
- package/public/email +1 -0
- package/public/favicon-96x96-v3.png +1 -0
- package/public/favicon-96x96.png +1 -0
- package/public/favicon-v3.ico +1 -0
- package/public/favicon-v3.svg +1 -0
- package/public/favicon.ico +1 -0
- package/public/favicon.svg +1 -0
- package/public/opencode-brand-assets.zip +0 -0
- package/public/robots.txt +6 -0
- package/public/site.webmanifest +1 -0
- package/public/social-share-black.png +1 -0
- package/public/social-share-zen.png +1 -0
- package/public/social-share.png +1 -0
- package/public/theme.json +182 -0
- package/public/web-app-manifest-192x192.png +1 -0
- package/public/web-app-manifest-512x512.png +1 -0
- package/script/generate-sitemap.ts +103 -0
- package/src/app.css +1 -0
- package/src/app.tsx +27 -0
- package/src/asset/black/hero.png +0 -0
- package/src/asset/brand/opencode-brand-assets.zip +0 -0
- package/src/asset/brand/opencode-logo-dark.png +0 -0
- package/src/asset/brand/opencode-logo-dark.svg +16 -0
- package/src/asset/brand/opencode-logo-light.png +0 -0
- package/src/asset/brand/opencode-logo-light.svg +16 -0
- package/src/asset/brand/opencode-wordmark-dark.png +0 -0
- package/src/asset/brand/opencode-wordmark-dark.svg +30 -0
- package/src/asset/brand/opencode-wordmark-light.png +0 -0
- package/src/asset/brand/opencode-wordmark-light.svg +30 -0
- package/src/asset/brand/opencode-wordmark-simple-dark.png +0 -0
- package/src/asset/brand/opencode-wordmark-simple-dark.svg +22 -0
- package/src/asset/brand/opencode-wordmark-simple-light.png +0 -0
- package/src/asset/brand/opencode-wordmark-simple-light.svg +22 -0
- package/src/asset/brand/preview-opencode-dark.png +0 -0
- package/src/asset/brand/preview-opencode-logo-dark.png +0 -0
- package/src/asset/brand/preview-opencode-logo-light.png +0 -0
- package/src/asset/brand/preview-opencode-wordmark-dark.png +0 -0
- package/src/asset/brand/preview-opencode-wordmark-light.png +0 -0
- package/src/asset/brand/preview-opencode-wordmark-simple-dark.png +0 -0
- package/src/asset/brand/preview-opencode-wordmark-simple-light.png +0 -0
- package/src/asset/lander/avatar-adam.png +0 -0
- package/src/asset/lander/avatar-david.png +0 -0
- package/src/asset/lander/avatar-dax.png +0 -0
- package/src/asset/lander/avatar-frank.png +0 -0
- package/src/asset/lander/avatar-jay.png +0 -0
- package/src/asset/lander/brand-assets-dark.svg +10 -0
- package/src/asset/lander/brand-assets-light.svg +10 -0
- package/src/asset/lander/brand.png +0 -0
- package/src/asset/lander/check.svg +3 -0
- package/src/asset/lander/copy.svg +3 -0
- package/src/asset/lander/desktop-app-icon.png +0 -0
- package/src/asset/lander/dock.png +0 -0
- package/src/asset/lander/logo-dark.svg +11 -0
- package/src/asset/lander/logo-light.svg +11 -0
- package/src/asset/lander/opencode-comparison-min.mp4 +0 -0
- package/src/asset/lander/opencode-comparison-poster.png +0 -0
- package/src/asset/lander/opencode-desktop-icon.png +0 -0
- package/src/asset/lander/opencode-logo-dark.svg +11 -0
- package/src/asset/lander/opencode-logo-light.svg +11 -0
- package/src/asset/lander/opencode-min.mp4 +0 -0
- package/src/asset/lander/opencode-poster.png +0 -0
- package/src/asset/lander/opencode-wordmark-dark.svg +25 -0
- package/src/asset/lander/opencode-wordmark-light.svg +25 -0
- package/src/asset/lander/screenshot-github.png +0 -0
- package/src/asset/lander/screenshot-splash.png +0 -0
- package/src/asset/lander/screenshot-vscode.png +0 -0
- package/src/asset/lander/screenshot.png +0 -0
- package/src/asset/lander/wordmark-dark.svg +3 -0
- package/src/asset/lander/wordmark-light.svg +3 -0
- package/src/asset/logo-ornate-dark.svg +18 -0
- package/src/asset/logo-ornate-light.svg +18 -0
- package/src/asset/logo.svg +18 -0
- package/src/asset/zen-ornate-dark.svg +8 -0
- package/src/asset/zen-ornate-light.svg +8 -0
- package/src/component/dropdown.css +80 -0
- package/src/component/dropdown.tsx +79 -0
- package/src/component/email-signup.tsx +48 -0
- package/src/component/faq.tsx +33 -0
- package/src/component/footer.tsx +38 -0
- package/src/component/header-context-menu.css +63 -0
- package/src/component/header.tsx +279 -0
- package/src/component/icon.tsx +257 -0
- package/src/component/legal.tsx +20 -0
- package/src/component/modal.css +66 -0
- package/src/component/modal.tsx +24 -0
- package/src/component/spotlight.css +15 -0
- package/src/component/spotlight.tsx +820 -0
- package/src/config.ts +29 -0
- package/src/context/auth.session.ts +0 -0
- package/src/context/auth.ts +116 -0
- package/src/context/auth.withActor.ts +7 -0
- package/src/entry-client.tsx +4 -0
- package/src/entry-server.tsx +30 -0
- package/src/global.d.ts +5 -0
- package/src/lib/github.ts +38 -0
- package/src/middleware.ts +5 -0
- package/src/routes/[...404].css +130 -0
- package/src/routes/[...404].tsx +38 -0
- package/src/routes/api/enterprise.ts +47 -0
- package/src/routes/auth/[...callback].ts +41 -0
- package/src/routes/auth/authorize.ts +10 -0
- package/src/routes/auth/index.ts +12 -0
- package/src/routes/auth/logout.ts +17 -0
- package/src/routes/auth/status.ts +7 -0
- package/src/routes/bench/[id].tsx +365 -0
- package/src/routes/bench/index.tsx +86 -0
- package/src/routes/bench/submission.ts +29 -0
- package/src/routes/black/common.tsx +62 -0
- package/src/routes/black/index.tsx +108 -0
- package/src/routes/black/subscribe/[plan].tsx +449 -0
- package/src/routes/black/workspace.css +214 -0
- package/src/routes/black/workspace.tsx +229 -0
- package/src/routes/black.css +828 -0
- package/src/routes/black.tsx +285 -0
- package/src/routes/brand/index.css +555 -0
- package/src/routes/brand/index.tsx +252 -0
- package/src/routes/changelog/index.css +477 -0
- package/src/routes/changelog/index.tsx +147 -0
- package/src/routes/debug/index.ts +13 -0
- package/src/routes/desktop-feedback.ts +5 -0
- package/src/routes/discord.ts +5 -0
- package/src/routes/docs/[...path].ts +20 -0
- package/src/routes/docs/index.ts +20 -0
- package/src/routes/download/[platform].ts +38 -0
- package/src/routes/download/index.css +750 -0
- package/src/routes/download/index.tsx +482 -0
- package/src/routes/download/types.ts +4 -0
- package/src/routes/enterprise/index.css +578 -0
- package/src/routes/enterprise/index.tsx +251 -0
- package/src/routes/index.css +1251 -0
- package/src/routes/index.tsx +840 -0
- package/src/routes/legal/privacy-policy/index.css +343 -0
- package/src/routes/legal/privacy-policy/index.tsx +1512 -0
- package/src/routes/legal/terms-of-service/index.css +254 -0
- package/src/routes/legal/terms-of-service/index.tsx +512 -0
- package/src/routes/openapi.json.ts +7 -0
- package/src/routes/s/[id].ts +20 -0
- package/src/routes/stripe/webhook.ts +532 -0
- package/src/routes/t/[...path].tsx +20 -0
- package/src/routes/temp.tsx +172 -0
- package/src/routes/user-menu.css +18 -0
- package/src/routes/user-menu.tsx +32 -0
- package/src/routes/workspace/[id]/billing/billing-section.module.css +185 -0
- package/src/routes/workspace/[id]/billing/billing-section.tsx +240 -0
- package/src/routes/workspace/[id]/billing/black-section.module.css +142 -0
- package/src/routes/workspace/[id]/billing/black-section.tsx +269 -0
- package/src/routes/workspace/[id]/billing/black-waitlist-section.module.css +23 -0
- package/src/routes/workspace/[id]/billing/index.tsx +32 -0
- package/src/routes/workspace/[id]/billing/monthly-limit-section.module.css +96 -0
- package/src/routes/workspace/[id]/billing/monthly-limit-section.tsx +133 -0
- package/src/routes/workspace/[id]/billing/payment-section.module.css +93 -0
- package/src/routes/workspace/[id]/billing/payment-section.tsx +122 -0
- package/src/routes/workspace/[id]/billing/reload-section.module.css +261 -0
- package/src/routes/workspace/[id]/billing/reload-section.tsx +213 -0
- package/src/routes/workspace/[id]/graph-section.module.css +145 -0
- package/src/routes/workspace/[id]/graph-section.tsx +475 -0
- package/src/routes/workspace/[id]/index.tsx +81 -0
- package/src/routes/workspace/[id]/keys/index.tsx +11 -0
- package/src/routes/workspace/[id]/keys/key-section.module.css +197 -0
- package/src/routes/workspace/[id]/keys/key-section.tsx +176 -0
- package/src/routes/workspace/[id]/members/index.tsx +11 -0
- package/src/routes/workspace/[id]/members/member-section.module.css +249 -0
- package/src/routes/workspace/[id]/members/member-section.tsx +343 -0
- package/src/routes/workspace/[id]/members/role-dropdown.css +72 -0
- package/src/routes/workspace/[id]/members/role-dropdown.tsx +43 -0
- package/src/routes/workspace/[id]/model-section.module.css +173 -0
- package/src/routes/workspace/[id]/model-section.tsx +174 -0
- package/src/routes/workspace/[id]/new-user-section.module.css +143 -0
- package/src/routes/workspace/[id]/new-user-section.tsx +104 -0
- package/src/routes/workspace/[id]/provider-section.module.css +138 -0
- package/src/routes/workspace/[id]/provider-section.tsx +188 -0
- package/src/routes/workspace/[id]/settings/index.tsx +11 -0
- package/src/routes/workspace/[id]/settings/settings-section.module.css +94 -0
- package/src/routes/workspace/[id]/settings/settings-section.tsx +122 -0
- package/src/routes/workspace/[id]/usage-section.module.css +185 -0
- package/src/routes/workspace/[id]/usage-section.tsx +200 -0
- package/src/routes/workspace/[id].css +308 -0
- package/src/routes/workspace/[id].tsx +62 -0
- package/src/routes/workspace/common.tsx +120 -0
- package/src/routes/workspace-picker.css +74 -0
- package/src/routes/workspace-picker.tsx +122 -0
- package/src/routes/workspace.css +107 -0
- package/src/routes/workspace.tsx +38 -0
- package/src/routes/zen/index.css +866 -0
- package/src/routes/zen/index.tsx +343 -0
- package/src/routes/zen/util/dataDumper.ts +44 -0
- package/src/routes/zen/util/error.ts +13 -0
- package/src/routes/zen/util/handler.ts +784 -0
- package/src/routes/zen/util/logger.ts +12 -0
- package/src/routes/zen/util/provider/anthropic.ts +752 -0
- package/src/routes/zen/util/provider/google.ts +75 -0
- package/src/routes/zen/util/provider/openai-compatible.ts +546 -0
- package/src/routes/zen/util/provider/openai.ts +630 -0
- package/src/routes/zen/util/provider/provider.ts +210 -0
- package/src/routes/zen/util/rateLimiter.ts +41 -0
- package/src/routes/zen/util/stickyProviderTracker.ts +16 -0
- package/src/routes/zen/util/trialLimiter.ts +49 -0
- package/src/routes/zen/v1/chat/completions.ts +11 -0
- package/src/routes/zen/v1/messages.ts +11 -0
- package/src/routes/zen/v1/models/[model].ts +13 -0
- package/src/routes/zen/v1/models.ts +60 -0
- package/src/routes/zen/v1/responses.ts +11 -0
- package/src/style/base.css +21 -0
- package/src/style/component/button.css +102 -0
- package/src/style/index.css +8 -0
- package/src/style/reset.css +76 -0
- package/src/style/token/color.css +91 -0
- package/src/style/token/font.css +21 -0
- package/src/style/token/space.css +46 -0
- package/sst-env.d.ts +9 -0
- package/tsconfig.json +21 -0
- package/vite.config.ts +25 -0
|
@@ -0,0 +1,251 @@
|
|
|
1
|
+
import "./index.css"
|
|
2
|
+
import { Title, Meta, Link } from "@solidjs/meta"
|
|
3
|
+
import { createSignal, Show } from "solid-js"
|
|
4
|
+
import { config } from "~/config"
|
|
5
|
+
import { Header } from "~/component/header"
|
|
6
|
+
import { Footer } from "~/component/footer"
|
|
7
|
+
import { Legal } from "~/component/legal"
|
|
8
|
+
import { Faq } from "~/component/faq"
|
|
9
|
+
|
|
10
|
+
export default function Enterprise() {
|
|
11
|
+
const [formData, setFormData] = createSignal({
|
|
12
|
+
name: "",
|
|
13
|
+
role: "",
|
|
14
|
+
email: "",
|
|
15
|
+
message: "",
|
|
16
|
+
})
|
|
17
|
+
const [isSubmitting, setIsSubmitting] = createSignal(false)
|
|
18
|
+
const [showSuccess, setShowSuccess] = createSignal(false)
|
|
19
|
+
|
|
20
|
+
const handleInputChange = (field: string) => (e: Event) => {
|
|
21
|
+
const target = e.target as HTMLInputElement | HTMLTextAreaElement
|
|
22
|
+
setFormData((prev) => ({ ...prev, [field]: target.value }))
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
const handleSubmit = async (e: Event) => {
|
|
26
|
+
e.preventDefault()
|
|
27
|
+
setIsSubmitting(true)
|
|
28
|
+
|
|
29
|
+
try {
|
|
30
|
+
const response = await fetch("/api/enterprise", {
|
|
31
|
+
method: "POST",
|
|
32
|
+
headers: {
|
|
33
|
+
"Content-Type": "application/json",
|
|
34
|
+
},
|
|
35
|
+
body: JSON.stringify(formData()),
|
|
36
|
+
})
|
|
37
|
+
|
|
38
|
+
if (response.ok) {
|
|
39
|
+
setShowSuccess(true)
|
|
40
|
+
setFormData({
|
|
41
|
+
name: "",
|
|
42
|
+
role: "",
|
|
43
|
+
email: "",
|
|
44
|
+
message: "",
|
|
45
|
+
})
|
|
46
|
+
setTimeout(() => setShowSuccess(false), 5000)
|
|
47
|
+
}
|
|
48
|
+
} catch (error) {
|
|
49
|
+
console.error("Failed to submit form:", error)
|
|
50
|
+
} finally {
|
|
51
|
+
setIsSubmitting(false)
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
return (
|
|
56
|
+
<main data-page="enterprise">
|
|
57
|
+
<Title>JonsOC | Enterprise solutions for your organisation</Title>
|
|
58
|
+
<Link rel="canonical" href={`${config.baseUrl}/enterprise`} />
|
|
59
|
+
<Meta name="description" content="Contact JonsOC for enterprise solutions" />
|
|
60
|
+
<div data-component="container">
|
|
61
|
+
<Header />
|
|
62
|
+
|
|
63
|
+
<div data-component="content">
|
|
64
|
+
<section data-component="enterprise-content">
|
|
65
|
+
<div data-component="enterprise-columns">
|
|
66
|
+
<div data-component="enterprise-column-1">
|
|
67
|
+
<h1>Your code is yours</h1>
|
|
68
|
+
<p>
|
|
69
|
+
JonsOC operates securely inside your organization with no data or context stored and no licensing
|
|
70
|
+
restrictions or ownership claims. Start a trial with your team, then deploy it across your
|
|
71
|
+
organization by integrating it with your SSO and internal AI gateway.
|
|
72
|
+
</p>
|
|
73
|
+
<p>Let us know and how we can help.</p>
|
|
74
|
+
|
|
75
|
+
<Show when={false}>
|
|
76
|
+
<div data-component="testimonial">
|
|
77
|
+
<div data-component="quotation">
|
|
78
|
+
<svg width="20" height="17" viewBox="0 0 20 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
79
|
+
<path
|
|
80
|
+
d="M19.4118 0L16.5882 9.20833H20V17H12.2353V10.0938L16 0H19.4118ZM7.17647 0L4.35294 9.20833H7.76471V17H0V10.0938L3.76471 0H7.17647Z"
|
|
81
|
+
fill="currentColor"
|
|
82
|
+
/>
|
|
83
|
+
</svg>
|
|
84
|
+
</div>
|
|
85
|
+
Thanks to JonsOC, we found a way to create software to track all our assets — even the imaginary
|
|
86
|
+
ones.
|
|
87
|
+
<div data-component="testimonial-logo">
|
|
88
|
+
<svg width="80" height="79" viewBox="0 0 80 79" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
89
|
+
<path
|
|
90
|
+
fill-rule="evenodd"
|
|
91
|
+
clip-rule="evenodd"
|
|
92
|
+
d="M0 39.3087L10.0579 29.251L15.6862 34.7868L13.7488 36.7248L10.3345 33.2186L8.48897 35.0639L11.8111 38.4781L9.96557 40.4156L6.55181 37.0018L4.06028 39.4928L7.56674 42.9991L5.62884 44.845L0 39.3087Z"
|
|
93
|
+
fill="#0083C6"
|
|
94
|
+
/>
|
|
95
|
+
<path
|
|
96
|
+
fill-rule="evenodd"
|
|
97
|
+
clip-rule="evenodd"
|
|
98
|
+
d="M17.7182 36.8164L20.2094 39.4003L16.6108 46.9666L22.2393 41.3374L24.3615 43.46L14.2118 53.5179L11.9047 51.1187L15.4112 43.3677L9.78254 49.0888L7.66016 46.9666L17.7182 36.8164Z"
|
|
99
|
+
fill="#0083C6"
|
|
100
|
+
/>
|
|
101
|
+
<path
|
|
102
|
+
fill-rule="evenodd"
|
|
103
|
+
clip-rule="evenodd"
|
|
104
|
+
d="M42.8139 61.915L45.3055 64.4064L41.6145 71.9731L47.243 66.3441L49.3652 68.4663L39.3077 78.5244L36.9088 76.1252L40.5072 68.374L34.7866 74.0953L32.6641 71.9731L42.8139 61.915Z"
|
|
105
|
+
fill="#0083C6"
|
|
106
|
+
/>
|
|
107
|
+
<path
|
|
108
|
+
fill-rule="evenodd"
|
|
109
|
+
clip-rule="evenodd"
|
|
110
|
+
d="M16.4258 55.7324L26.4833 45.582L28.6061 47.7042C31.0049 50.1034 32.3892 51.9497 30.1746 54.1642C28.7902 55.548 27.6831 56.0094 26.1145 54.9016L26.0222 54.994C27.2218 56.1941 26.9448 57.1162 25.4688 58.5931L23.9 60.1615C23.4383 60.6232 22.8847 61.2693 22.7927 62.0067L20.6705 59.8845C20.7625 59.146 21.3161 58.5008 21.778 58.1316L23.5307 56.3788C24.269 55.6403 23.715 54.2555 23.254 53.8872L22.8847 53.4256L18.548 57.7623L16.4258 55.7324ZM24.3611 51.9495C25.4689 53.0563 26.4833 53.3332 27.4984 52.3178C28.5134 51.3957 28.2367 50.3802 27.1295 49.1812L24.3611 51.9495Z"
|
|
111
|
+
fill="#0083C6"
|
|
112
|
+
/>
|
|
113
|
+
<path
|
|
114
|
+
fill-rule="evenodd"
|
|
115
|
+
clip-rule="evenodd"
|
|
116
|
+
d="M33.4952 66.9899C31.096 69.3891 28.8815 68.4659 27.4047 66.9899C26.021 65.6062 25.0978 63.3907 27.4972 60.9003L31.8336 56.6548C34.2333 54.2556 36.4478 55.0864 37.9241 56.5635C39.308 58.0396 40.2311 60.2541 37.8315 62.6531L33.4952 66.9899ZM29.0659 63.5752C28.6048 64.0369 28.6048 64.7753 29.1583 65.3292C29.6196 65.8821 30.4502 65.7897 30.8194 65.4215L36.2633 59.9769C36.7246 59.6076 36.7246 58.7779 36.171 58.3164C35.7097 57.7626 34.8791 57.7626 34.5101 58.2241L29.0659 63.5752Z"
|
|
117
|
+
fill="#0083C6"
|
|
118
|
+
/>
|
|
119
|
+
<path
|
|
120
|
+
fill-rule="evenodd"
|
|
121
|
+
clip-rule="evenodd"
|
|
122
|
+
d="M78.5267 39.308L68.2845 29.0654L47.5231 49.735L49.6453 51.8572L68.2845 33.2179L74.3746 39.308L47.2461 66.3435L49.3683 68.4657L78.5267 39.308Z"
|
|
123
|
+
fill="#0083C6"
|
|
124
|
+
/>
|
|
125
|
+
<path
|
|
126
|
+
fill-rule="evenodd"
|
|
127
|
+
clip-rule="evenodd"
|
|
128
|
+
d="M49.6443 51.8577L43.3695 45.4902L64.0386 24.8215L53.7969 14.4873L33.0352 35.2482L35.1574 37.3705L53.7969 18.7315L59.7947 24.8215L39.1251 45.4902L47.5221 53.9799L49.6443 51.8577Z"
|
|
129
|
+
fill="#2D9C5C"
|
|
130
|
+
/>
|
|
131
|
+
<path
|
|
132
|
+
fill-rule="evenodd"
|
|
133
|
+
clip-rule="evenodd"
|
|
134
|
+
d="M35.1564 37.3706L28.7896 31.0038L49.5515 10.3347L39.3088 0L10.0586 29.2507L12.1804 31.2804L39.3088 4.24476L45.3066 10.3347L24.6377 31.0038L33.0342 39.4008L35.1564 37.3706Z"
|
|
135
|
+
fill="#E92A35"
|
|
136
|
+
/>
|
|
137
|
+
<path
|
|
138
|
+
fill-rule="evenodd"
|
|
139
|
+
clip-rule="evenodd"
|
|
140
|
+
d="M77.2332 52.4105C76.0336 52.4105 75.111 51.4884 75.111 50.196C75.111 48.9046 76.0336 47.9814 77.2332 47.9814C78.3405 47.9814 79.263 48.9046 79.263 50.196C79.263 51.4884 78.3405 52.4105 77.2332 52.4105ZM77.2332 52.9643C78.7098 52.9643 80.0015 51.6729 80.0015 50.196C80.0015 48.6276 78.7096 47.4287 77.2332 47.4287C75.6644 47.4287 74.4648 48.6278 74.4648 50.196C74.4647 51.6731 75.6643 52.9643 77.2332 52.9643ZM76.1259 51.7653H76.6797V50.3804H77.0485L77.8788 51.7653H78.4332L77.6023 50.3804C78.1558 50.2881 78.4332 50.0122 78.4332 49.5507C78.4332 48.9046 78.0633 48.6276 77.3253 48.6276H76.1257V51.7653H76.1259ZM76.6797 49.0892H77.2332C77.5102 49.0892 77.8788 49.0892 77.8788 49.4586C77.8788 49.9202 77.6023 49.9202 77.2332 49.9202H76.6797V49.0892Z"
|
|
141
|
+
fill="#0083C6"
|
|
142
|
+
/>
|
|
143
|
+
</svg>
|
|
144
|
+
</div>
|
|
145
|
+
</div>
|
|
146
|
+
</Show>
|
|
147
|
+
</div>
|
|
148
|
+
|
|
149
|
+
<div data-component="enterprise-column-2">
|
|
150
|
+
<div data-component="enterprise-form">
|
|
151
|
+
<form onSubmit={handleSubmit}>
|
|
152
|
+
<div data-component="form-group">
|
|
153
|
+
<label for="name">Full name</label>
|
|
154
|
+
<input
|
|
155
|
+
id="name"
|
|
156
|
+
type="text"
|
|
157
|
+
required
|
|
158
|
+
value={formData().name}
|
|
159
|
+
onInput={handleInputChange("name")}
|
|
160
|
+
placeholder="Jeff Bezos"
|
|
161
|
+
/>
|
|
162
|
+
</div>
|
|
163
|
+
|
|
164
|
+
<div data-component="form-group">
|
|
165
|
+
<label for="role">Role</label>
|
|
166
|
+
<input
|
|
167
|
+
id="role"
|
|
168
|
+
type="text"
|
|
169
|
+
required
|
|
170
|
+
value={formData().role}
|
|
171
|
+
onInput={handleInputChange("role")}
|
|
172
|
+
placeholder="Executive Chairman"
|
|
173
|
+
/>
|
|
174
|
+
</div>
|
|
175
|
+
|
|
176
|
+
<div data-component="form-group">
|
|
177
|
+
<label for="email">Company email</label>
|
|
178
|
+
<input
|
|
179
|
+
id="email"
|
|
180
|
+
type="email"
|
|
181
|
+
required
|
|
182
|
+
value={formData().email}
|
|
183
|
+
onInput={handleInputChange("email")}
|
|
184
|
+
placeholder="jeff@amazon.com"
|
|
185
|
+
/>
|
|
186
|
+
</div>
|
|
187
|
+
|
|
188
|
+
<div data-component="form-group">
|
|
189
|
+
<label for="message">What problem are you trying to solve?</label>
|
|
190
|
+
<textarea
|
|
191
|
+
id="message"
|
|
192
|
+
required
|
|
193
|
+
rows={5}
|
|
194
|
+
value={formData().message}
|
|
195
|
+
onInput={handleInputChange("message")}
|
|
196
|
+
placeholder="We need help with..."
|
|
197
|
+
/>
|
|
198
|
+
</div>
|
|
199
|
+
|
|
200
|
+
<button type="submit" disabled={isSubmitting()} data-component="submit-button">
|
|
201
|
+
{isSubmitting() ? "Sending..." : "Send"}
|
|
202
|
+
</button>
|
|
203
|
+
</form>
|
|
204
|
+
|
|
205
|
+
{showSuccess() && <div data-component="success-message">Message sent, we'll be in touch soon.</div>}
|
|
206
|
+
</div>
|
|
207
|
+
</div>
|
|
208
|
+
</div>
|
|
209
|
+
</section>
|
|
210
|
+
|
|
211
|
+
<section data-component="faq">
|
|
212
|
+
<div data-slot="section-title">
|
|
213
|
+
<h3>FAQ</h3>
|
|
214
|
+
</div>
|
|
215
|
+
<ul>
|
|
216
|
+
<li>
|
|
217
|
+
<Faq question="What is JonsOC Enterprise?">
|
|
218
|
+
JonsOC Enterprise is for organizations that want to ensure that their code and data never leaves
|
|
219
|
+
their infrastructure. It can do this by using a centralized config that integrates with your SSO and
|
|
220
|
+
internal AI gateway.
|
|
221
|
+
</Faq>
|
|
222
|
+
</li>
|
|
223
|
+
<li>
|
|
224
|
+
<Faq question="How do I get started with JonsOC Enterprise?">
|
|
225
|
+
Simply start with an internal trial with your team. JonsOC by default does not store your code or
|
|
226
|
+
context data, making it easy to get started. Then contact us to discuss pricing and implementation
|
|
227
|
+
options.
|
|
228
|
+
</Faq>
|
|
229
|
+
</li>
|
|
230
|
+
<li>
|
|
231
|
+
<Faq question="How does enterprise pricing work?">
|
|
232
|
+
We offer per-seat enterprise pricing. If you have your own LLM gateway, we do not charge for tokens
|
|
233
|
+
used. For further details, contact us for a custom quote based on your organization's needs.
|
|
234
|
+
</Faq>
|
|
235
|
+
</li>
|
|
236
|
+
<li>
|
|
237
|
+
<Faq question="Is my data secure with JonsOC Enterprise?">
|
|
238
|
+
Yes. JonsOC does not store your code or context data. All processing happens locally or through
|
|
239
|
+
direct API calls to your AI provider. With central config and SSO integration, your data remains
|
|
240
|
+
secure within your organization's infrastructure.
|
|
241
|
+
</Faq>
|
|
242
|
+
</li>
|
|
243
|
+
</ul>
|
|
244
|
+
</section>
|
|
245
|
+
</div>
|
|
246
|
+
<Footer />
|
|
247
|
+
</div>
|
|
248
|
+
<Legal />
|
|
249
|
+
</main>
|
|
250
|
+
)
|
|
251
|
+
}
|