From 8367aad6e0e144f701025c7f2cc6f54bde3aa73d Mon Sep 17 00:00:00 2001 From: Benjamin Shafii Date: Thu, 18 Jun 2026 15:13:36 -0700 Subject: [PATCH] fix(landing): clean up trusted company strip --- ee/apps/landing/components/landing-home.tsx | 36 +++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/ee/apps/landing/components/landing-home.tsx b/ee/apps/landing/components/landing-home.tsx index 52a63d5a7..13934be78 100644 --- a/ee/apps/landing/components/landing-home.tsx +++ b/ee/apps/landing/components/landing-home.tsx @@ -31,6 +31,15 @@ const externalLinkProps = (href: string) => const CLOUD_SIGNUP_URL = "https://app.openworklabs.com?mode=sign-up"; +const trustedCompanies = [ + "Stanford", + "MIT", + "Toyota", + "Lenovo", + "IBM", + "Tesla" +]; + export function LandingHome(props: Props) { const [activeDemoId, setActiveDemoId] = useState(defaultLandingDemoFlowId); const [activeUseCase, setActiveUseCase] = useState(0); @@ -139,6 +148,33 @@ export function LandingHome(props: Props) { ) : null} +
+
+
+

+ Used by people at +

+
+
+
+ {trustedCompanies.map((company) => ( +
+ {company} +
+ ))} +
+
+
+