Browse Source

Adding polish

David Hill 4 months ago
parent
commit
aabeeb1431

+ 6 - 6
packages/console/app/src/routes/enterprise/index.css

@@ -23,6 +23,7 @@
   --color-text-weaker: hsl(30, 2%, 81%);
   --color-text-strong: hsl(0, 5%, 12%);
   --color-text-inverted: hsl(0, 20%, 99%);
+  --color-text-success: hsl(119, 100%, 35%);
 
   --color-border: hsl(30, 2%, 81%);
   --color-border-weak: hsl(0, 1%, 85%);
@@ -49,6 +50,8 @@
     --color-text-weaker: hsl(0, 3%, 28%);
     --color-text-strong: hsl(0, 15%, 94%);
     --color-text-inverted: hsl(0, 9%, 7%);
+    --color-text-success: hsl(119, 60%, 72%);
+
 
     --color-border: hsl(0, 3%, 28%);
     --color-border-weak: hsl(0, 4%, 23%);
@@ -428,12 +431,9 @@
 
       [data-component="success-message"] {
         margin-top: 1rem;
-        padding: 1rem;
-        background: var(--color-success);
-        color: white;
-        border-radius: 4px;
-        font-size: 0.875rem;
-        text-align: center;
+        padding: 1rem 0;
+        color: var(--color-text-success);
+        text-align: left;
       }
     }
   }

+ 6 - 6
packages/console/app/src/routes/enterprise/index.tsx

@@ -53,7 +53,7 @@ export default function Enterprise() {
 
   return (
     <main data-page="enterprise">
-      <Title>OpenCode Enterprise | How can we help your organisation?</Title>
+      <Title>OpenCode | Enterprise solutions for your organisation</Title>
       <Meta name="description" content="Contact OpenCode for enterprise solutions" />
       <div data-component="container">
         <Header />
@@ -64,10 +64,10 @@ export default function Enterprise() {
               <div data-component="enterprise-column-1">
                 <h2>Your code is yours</h2>
                 <p>
-                  Run OpenCode 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 with enterprise features like SSO, private registries, and
-                  self-hosting.
+                  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.
+                </p>
+                <p>
+                  Let us know and how we can help.
                 </p>
               </div>
 
@@ -129,7 +129,7 @@ export default function Enterprise() {
 
                   {showSuccess() && (
                     <div data-component="success-message">
-                      Message successfully sent, we'll be in touch soon.
+                      Message sent, we'll be in touch soon.
                     </div>
                   )}
                 </div>