This is an automated email from the ASF dual-hosted git repository.
moonming pushed a commit to branch feat/seo-homepage-rewrite
in repository https://gitbox.apache.org/repos/asf/apisix-website.git
The following commit(s) were added to refs/heads/feat/seo-homepage-rewrite by
this push:
new 356fe256131 feat(seo): swap homepage 'Browse plugins' pathway for
'Case studies'
356fe256131 is described below
commit 356fe256131692e68a0e02f2e3544a4a9f53cdac
Author: Ming Wen <[email protected]>
AuthorDate: Mon Jun 22 17:23:58 2026 +0800
feat(seo): swap homepage 'Browse plugins' pathway for 'Case studies'
Plugins are already surfaced via the hero CTA and the integrations section;
a case-studies pathway adds a production/proof entry point (->
/blog/tags/case-studies/).
---
website/src/components/sections/Pathways.tsx | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/website/src/components/sections/Pathways.tsx
b/website/src/components/sections/Pathways.tsx
index 76105343df6..565a6cb659c 100644
--- a/website/src/components/sections/Pathways.tsx
+++ b/website/src/components/sections/Pathways.tsx
@@ -37,15 +37,15 @@ const PATHWAYS: Pathway[] = [
cta: <Translate id="home.pathways.learn.cta">Explore the learning
center</Translate>,
},
{
- id: 'plugins',
- to: '/plugins/',
- title: <Translate id="home.pathways.plugins.title">Browse
plugins</Translate>,
+ id: 'case-studies',
+ to: '/blog/tags/case-studies/',
+ title: <Translate id="home.pathways.cases.title">Case studies</Translate>,
description: (
- <Translate id="home.pathways.plugins.desc">
- 100+ plugins for auth, security, traffic control, observability and AI.
+ <Translate id="home.pathways.cases.desc">
+ See how teams run Apache APISIX in production at scale.
</Translate>
),
- cta: <Translate id="home.pathways.plugins.cta">Open the plugin
hub</Translate>,
+ cta: <Translate id="home.pathways.cases.cta">Read case studies</Translate>,
},
];