diff --git a/packages/console/app/src/routes/api/enterprise.ts b/packages/console/app/src/routes/api/enterprise.ts index d937be54..0bc78e10 100644 --- a/packages/console/app/src/routes/api/enterprise.ts +++ b/packages/console/app/src/routes/api/enterprise.ts @@ -25,19 +25,16 @@ export async function POST(event: APIEvent) { // Create email content const emailContent = ` -New Enterprise Inquiry - -Name: ${body.name} -Role: ${body.role} -Email: ${body.email} - -Message: ${body.message} - `.trim() + +-- +${body.name} +${body.role} +${body.email}`.trim() // Send email using AWS SES await AWS.sendEmail({ - to: "enterprise@opencode.ai", + to: "contact@anoma.ly", subject: `Enterprise Inquiry from ${body.name}`, body: emailContent, }) diff --git a/packages/console/app/src/routes/enterprise/index.tsx b/packages/console/app/src/routes/enterprise/index.tsx index 9599ad38..5bca6f38 100644 --- a/packages/console/app/src/routes/enterprise/index.tsx +++ b/packages/console/app/src/routes/enterprise/index.tsx @@ -1,6 +1,6 @@ import "./index.css" import { Title, Meta } from "@solidjs/meta" -import { createSignal } from "solid-js" +import { createSignal, Show } from "solid-js" import { Header } from "~/component/header" import { Footer } from "~/component/footer" import { Legal } from "~/component/legal" @@ -64,60 +64,96 @@ export default function Enterprise() {

Your code is yours

- OpenCode operates securely inside your organization with no data or context stored and no licensing restrictions or ownership claims. Start a trial with your team today, then scale confidently with enterprise-grade features including SSO, private registries, and self-hosting. -

-

- Let us know and how we can help. + OpenCode operates securely inside your organization with no data or context stored + and no licensing restrictions or ownership claims. Start a trial with your team + , then deploy it across your organization by integrating it with your SSO and internal AI gateway.

+

Let us know and how we can help.

+
- + + fill="currentColor" + /> -
- - Thanks to OpenCode, we found a way to create software to track all our assets — even the imaginary ones. - + Thanks to OpenCode, we found a way to create software to track all our assets — + even the imaginary ones.
- - - - - - - - - - + + + + + + + + + + -
-
+
@@ -130,7 +166,7 @@ export default function Enterprise() { type="text" required value={formData().name} - onInput={handleInputChange('name')} + onInput={handleInputChange("name")} placeholder="Jeff Bezos" />
@@ -142,7 +178,7 @@ export default function Enterprise() { type="text" required value={formData().role} - onInput={handleInputChange('role')} + onInput={handleInputChange("role")} placeholder="Executive Chairman" /> @@ -154,27 +190,25 @@ export default function Enterprise() { type="email" required value={formData().email} - onInput={handleInputChange('email')} + onInput={handleInputChange("email")} placeholder="jeff@amazon.com" />
- +