From 569b63b6dfd12714ea2bd174caa421d3fc6f7389 Mon Sep 17 00:00:00 2001 From: vfanucci Date: Tue, 8 Sep 2026 16:39:37 +0200 Subject: [PATCH] seo(about-us): align copy with Kestra 2.0, fix duplicate H1 and missing spaces The page copy had not been rewritten since January and made no mention of 2.0, agents or workers anywhere, so visitors arriving from the launch content landed on the pre-2.0 story. - title/meta rewritten around the team, values and investors - hero paragraph now ends on 2.0 (workers anywhere, flows as agent tools) and carries the page's only link to /two-zero - "Trusted by Enterprises Worldwide" rewritten: the previous markup made Astro strip the newline before , shipping "thatKestra's" and "newopportunities" to production - mission paragraph updated, its

demoted to

(the page had two) - three grammar fixes in the values ("a strong relationships", "users feedbacks", "committed to deliver") - investors paragraph now lists AI agents alongside data and infrastructure Co-Authored-By: Claude Opus 5 --- src/components/company/Investors.astro | 6 ++--- src/components/company/Mission.astro | 22 +++++++++-------- src/components/company/Orchestrate.astro | 31 ++++++++++++++++-------- src/pages/about-us.astro | 4 +-- 4 files changed, 38 insertions(+), 25 deletions(-) diff --git a/src/components/company/Investors.astro b/src/components/company/Investors.astro index 80ec075483b..2c2b03c05a7 100644 --- a/src/components/company/Investors.astro +++ b/src/components/company/Investors.astro @@ -120,9 +120,9 @@ const investorsProfiles = [ investors and founders from leading technology companies.

- These investments fuel Kestra's mission to redefine enterprise orchestration, - helping organizations orchestrate complex workflows across data, infrastructure, - AI, and applications. + These investments fuel Kestra's mission to redefine enterprise orchestration: + one platform for data pipelines, infrastructure, business applications + and AI agents, in any environment.

diff --git a/src/components/company/Mission.astro b/src/components/company/Mission.astro index 29bb004e183..8bb3065fb18 100644 --- a/src/components/company/Mission.astro +++ b/src/components/company/Mission.astro @@ -9,19 +9,19 @@ const values = [ icon: "mdi:check-decagram-outline", title: "Quality", description: - "We are committed to deliver a platform that meets the highest standards.", + "We are committed to delivering a platform that meets the highest standards.", }, { icon: "mdi:hub", title: "Collaboration", description: - "We are creating a strong relationships with our users, customers, and team members.", + "We build strong relationships with our users, our customers and each other.", }, { icon: "mdi:account-supervisor-circle-outline", title: "User-Centric", description: - "We incorporate users feedbacks and address their challenges as we continue to build Kestra.", + "We build Kestra around user feedback and the problems our users actually hit.", }, { icon: "mdi:opacity", @@ -35,13 +35,15 @@ const values = [
-

Staying True to our Mission

+

Staying True to our Mission

- Our values are at the core of everything we do. We are building - a platform that not only meets the needs of our users but also - exceeds their expectations. We are driven by a passion for - continuous improvement. We strive to develop new ideas and - solutions that redefine the orchestration landscape. + Our values are at the core of everything we do. Kestra 2.0 is + the clearest expression of them: a rebuilt execution engine, + workers that run in any region or air-gapped network, and flows + any AI agent can call as a tool — released under the same Apache + 2.0 license we started with. The more autonomous systems become, + the more engineering rigor they demand, not less. That is the + platform we keep building.

@@ -125,7 +127,7 @@ const values = [ } header { - h1 { + h2 { margin-bottom: 24px; } diff --git a/src/components/company/Orchestrate.astro b/src/components/company/Orchestrate.astro index cf40c1c315a..1bdb43a867c 100644 --- a/src/components/company/Orchestrate.astro +++ b/src/components/company/Orchestrate.astro @@ -74,7 +74,10 @@ const CompanyLogos = [ any language, on any infrastructure, delivering unparalleled freedom and flexibility. By simplifying complexity and eliminating constraints, we enable developers to build - faster, and collaborate freely without compromise. + faster, and collaborate freely without compromise. With Kestra 2.0, workers run wherever your rules require, and any flow can + be exposed as a tool your agents call.

@@ -88,18 +91,17 @@ const CompanyLogos = [

- We are excited to see how Kestra transform the way
- organizations approach orchestration. + Kestra runs in production at enterprises worldwide
+ — retail, manufacturing, finance and public institutions.

- We believe that - Kestra's potential is limitless, and we
data
, infrastructure, applications and AI on
- are eager to explore new - opportunities and
- partnerships as we move forward. + one orchestrator, with the governance and traceability
+ their auditors ask for.

@@ -270,6 +272,15 @@ const CompanyLogos = [ line-height: 1.6; margin: $rem-1 auto; + a { + color: #a796ff; + text-decoration: underline; + + &:hover { + color: $white; + } + } + @media (max-width: 1399px) { max-width: 600px; } diff --git a/src/pages/about-us.astro b/src/pages/about-us.astro index 785555a283c..05827dd4317 100644 --- a/src/pages/about-us.astro +++ b/src/pages/about-us.astro @@ -8,9 +8,9 @@ import Life from "~/components/company/Life.astro" import SeeHow from "~/components/common/SeeHow.astro" import assets from "~/assets/landing/assets.webp" -const title = "About Us" +const title = "About Us: Our Team, Values and Investors" const description = - "Discover the team and values behind our mission to empower data-driven organizations worldwide" + "Meet the team, values and investors behind Kestra: the Open Source Declarative orchestration platform for data, infrastructure, applications and AI agents." ---