From 703b58722efd03cfe1dcbed7f4b38b42b97dd579 Mon Sep 17 00:00:00 2001 From: Samuel K Date: Thu, 9 Jul 2026 13:08:53 -0500 Subject: [PATCH 1/2] feat(sites): add landing page for devsy.sh root Add a self-contained static landing page served at www.devsy.sh/ and remove the root redirect that previously sent visitors straight to the docs. The page reuses the docs brand (purple, Inter, logo mark) and Devcontainer-standard messaging. Sections: hero ("Ship from day zero"), a six-tile feature grid, "deploy anywhere" targets with Docker/Kubernetes/cloud/SSH icons, a three-step "how it works" stepper, and a download CTA. --- sites/docs-devsy-sh/public/_redirects | 1 - sites/docs-devsy-sh/public/index.html | 961 ++++++++++++++++++++++++++ 2 files changed, 961 insertions(+), 1 deletion(-) create mode 100644 sites/docs-devsy-sh/public/index.html diff --git a/sites/docs-devsy-sh/public/_redirects b/sites/docs-devsy-sh/public/_redirects index 675153a9e..45a4996d2 100644 --- a/sites/docs-devsy-sh/public/_redirects +++ b/sites/docs-devsy-sh/public/_redirects @@ -1,3 +1,2 @@ # Home Routes -/ /docs/what-is-devsy 301! /docs /docs/what-is-devsy 301! diff --git a/sites/docs-devsy-sh/public/index.html b/sites/docs-devsy-sh/public/index.html new file mode 100644 index 000000000..7524bb8cc --- /dev/null +++ b/sites/docs-devsy-sh/public/index.html @@ -0,0 +1,961 @@ + + + + + + + Devsy — Standardized development workspaces, engineering at scale + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ +
+
+

+ Ship from day zero. +

+

Standardized workspaces, engineering at scale.

+

+ Devsy gives every engineer the same environment. Cut hardware cost, + shorten onboarding, and raise developer productivity. Deploy across + Docker, Kubernetes, cloud providers, and SSH hosts. +

+ +
+ Devsy launching and connecting to a workspace +
+
+
+ + +
+
+
+
Why Devsy
+

One environment definition. Every backend.

+

+ Define a workspace once in devcontainer.json. Give + your whole team the same toolchain, with no lock-in and no drift. +

+
+
+
+ +

Standardized environments

+

+ Every engineer gets the same dependencies, config, and Git and + Docker credentials. New hires ship from day zero instead of + losing days to setup. +

+
+
+ +

Hardware on demand

+

+ Provision cloud machines with the CPU, memory, and GPU your + workload needs, up to the largest instances your cloud offers. + Move a workspace from a laptop to a multi-GPU box without + changing your config. +

+
+
+ +

Cost efficiency

+

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

+
+
+ +

No vendor lock-in

+

+ Local, cloud, Kubernetes, or remote SSH. Switch a workspace's + provider with a single command. Your definition stays the same. +

+
+
+ +

IDE support

+

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

+
+
+ +

Extensible

+

+ If a provider doesn't exist for your platform, build your own + with a small provider spec. +

+
+
+
+
+ + +
+
+
+
Deploy anywhere
+

Workspaces run where your work does

+

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

+
+
+
+ + DockerLocal containers on any laptop +
+
+ + KubernetesScale across your cluster +
+
+ + Cloud providersOn-demand machines of any size +
+
+ + SSH remote hostsAny reachable server +
+
+
+
+ + +
+
+
+
How it works
+

From definition to running workspace

+

+ Devsy connects each developer's local IDE to the infrastructure + where work runs. +

+
+
+
+
1
+

Define once

+

+ Commit a devcontainer.json alongside your source. + It describes the tools and dependencies your whole team shares. +

+
+
+
2
+

Pick a provider

+

+ Choose Docker, Kubernetes, a cloud machine, or an SSH host. + Providers provision the container for you. +

+
+
+
3
+

Connect and build

+

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

+
+
+
+
+ + +
+
+
+

Scale your engineering, not your setup.

+

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

+ +
+
+
+
+ + + + + + From cdf0147313206e4f7436df7d0a6cf9983dfcba67 Mon Sep 17 00:00:00 2001 From: Samuel K Date: Thu, 9 Jul 2026 14:15:17 -0500 Subject: [PATCH 2/2] fix(sites): make Docs/GitHub reachable on mobile, clean up nav link Surface Docs and GitHub in the header CTA group at the mobile breakpoint, where .nav-links is hidden. Replace the GitHub anchor's reuse of .nav-links plus an inline display override with a dedicated .nav-link-single class. --- sites/docs-devsy-sh/public/index.html | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/sites/docs-devsy-sh/public/index.html b/sites/docs-devsy-sh/public/index.html index 7524bb8cc..ea560e3e0 100644 --- a/sites/docs-devsy-sh/public/index.html +++ b/sites/docs-devsy-sh/public/index.html @@ -165,16 +165,35 @@ color: var(--ink); } + .nav-link-single { + font-size: 15px; + font-weight: 500; + color: var(--slate); + } + + .nav-link-single:hover { + color: var(--ink); + } + .nav-cta { display: flex; align-items: center; gap: 14px; } + /* Docs link surfaced in nav-cta only on mobile, where nav-links hides */ + .nav-docs-mobile { + display: none; + } + @media (max-width: 820px) { .nav-links { display: none; } + + .nav-docs-mobile { + display: inline-flex; + } } /* ---------- Hero ---------- */ @@ -558,10 +577,12 @@ Docs