From 45c9095bbe28935726e96bc0d0c94e10a58ff248 Mon Sep 17 00:00:00 2001 From: Samuel K Date: Sun, 26 Jul 2026 01:11:39 -0500 Subject: [PATCH 1/2] feat(site): add services and contact sections to homepage Add a Services section (audit, implementation, support and migration) with a Netlify-backed contact form so teams can reach out. Also add a light/dark theme toggle, a responsive nav with a mobile menu, and center the section links on desktop. --- sites/docs-devsy-sh/public/index.html | 617 ++++++++++++++++++++++---- 1 file changed, 524 insertions(+), 93 deletions(-) diff --git a/sites/docs-devsy-sh/public/index.html b/sites/docs-devsy-sh/public/index.html index ea560e3e0..4e5f1e2a6 100644 --- a/sites/docs-devsy-sh/public/index.html +++ b/sites/docs-devsy-sh/public/index.html @@ -3,21 +3,30 @@ + - Devsy — Standardized development workspaces, engineering at scale + Devsy: Standardized development workspaces, engineering at scale - + - + - + devsy - - @@ -597,9 +841,7 @@
-

- Ship from day zero. -

+

Ship from day zero.

Standardized workspaces, engineering at scale.

Devsy gives every engineer the same environment. Cut hardware cost, @@ -610,9 +852,7 @@

Get Started - Read the docs + Read the docs

Hardware on demand

Cost efficiency

- Run on infrastructure you already pay for. Prebuilds and - inactivity-based auto-shutdown mean you spend only on capacity - in use. + Run on infrastructure you own. Prebuilds and inactivity-based + auto-shutdown mean you pay for capacity in use.

@@ -751,8 +990,8 @@

No vendor lock-in

IDE support

- Use the IDE you already know: VS Code, Cursor, Zed, the full - JetBrains suite, and more. + Use the IDE you know: VS Code, Cursor, Zed, the full JetBrains + suite, and more.

@@ -789,7 +1028,7 @@

Extensible

Deploy anywhere

Workspaces run where your work does

- Built on the open Devcontainer standard, so workspaces stay + Devsy builds on the open Devcontainer standard, so workspaces stay portable and repeatable across every provider backend.

@@ -899,11 +1138,158 @@

Pick a provider

3

Connect and build

- Your local IDE attaches to the workspace. The experience is the - same from laptop to cloud, prototype to production. + Your local IDE attaches to the workspace. The experience holds + from laptop to cloud, prototype to production. +

+ + + +
+ + +
+
+
+
Services
+

Work with the team behind Devsy

+

+ Get hands-on help to standardize your development environments, + from a focused audit to a full rollout and ongoing support. +

+
+
+
+ +

Dev Environment Audit

+

+ A focused review of how your team onboards and runs + environments. You get a scored assessment, a ranked list of your + top bottlenecks, and a working, standardized devcontainer for + one repository. Fixed scope, fixed price. +

+
+
+ +

Implementation and rollout

+

+ We set up Devsy and devcontainers across your repositories. You + get standardized toolchains, prebuilds, and local-to-CI parity, + so every engineer ships from day zero. +

+
+
+ +

Support and migration

+

+ Migrating off an abandoned tool like DevPod, or want a + maintained platform you can rely on? Get ongoing support, + upgrades, and hands-on migration help.

+ +
+
+ + +
+
+
+
Contact
+

Tell us about your team

+

+ Tell us where your dev-environment setup slows your team down, and + we'll reply with how we can help. +

+
+
+ +

+ +

+
+
+ + +
+
+ + +
+
+
+ + +
+
+ + +
+
+ +
+

+ We'll get back to you within a couple of business days. +

+
@@ -914,11 +1300,11 @@

Connect and build

Scale your engineering, not your setup.

Get Devsy as a desktop app or a command-line tool and launch your - first standardized workspace now. + first standardized workspace.

Download & installDownload and install View on GitHubScale your engineering, not your setup. From 67dec95662390e65848189529cd0bb74aba20167 Mon Sep 17 00:00:00 2001 From: Samuel K Date: Sun, 26 Jul 2026 01:17:30 -0500 Subject: [PATCH 2/2] fix(site): address review feedback on homepage Use sentence case for the audit service heading, add autocomplete tokens to the contact fields, and reset the mobile menu state when the viewport crosses the desktop breakpoint. --- sites/docs-devsy-sh/public/index.html | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/sites/docs-devsy-sh/public/index.html b/sites/docs-devsy-sh/public/index.html index 4e5f1e2a6..025fcc893 100644 --- a/sites/docs-devsy-sh/public/index.html +++ b/sites/docs-devsy-sh/public/index.html @@ -1174,7 +1174,7 @@

Work with the team behind Devsy

-

Dev Environment Audit

+

Dev environment audit

A focused review of how your team onboards and runs environments. You get a scored assessment, a ranked list of your @@ -1261,18 +1261,18 @@

Tell us about your team

- +
- +
- +
@@ -1375,6 +1375,13 @@

Scale your engineering, not your setup.

toggle.setAttribute("aria-expanded", "false"); }); }); + var desktop = window.matchMedia("(min-width: 992px)"); + desktop.addEventListener("change", function (e) { + if (e.matches) { + menu.classList.remove("open"); + toggle.setAttribute("aria-expanded", "false"); + } + }); } })();