Skip to content

Commit a5f76a8

Browse files
authored
Fix product page heading display to use clean titles (#16185)
* Fix product page heading display to use clean titles - Updated templates for IDP, Pulumi Insights, and Neo to use heading field instead of title - Added heading and subheading fields to Pulumi Insights content - Added heading, subheading, and SEO title to Neo content - Ensures clean product names display on pages while preserving SEO titles in browser tabs * Update IDP page subheading to be more concise and impactful
1 parent b805bf3 commit a5f76a8

File tree

6 files changed

+13
-5
lines changed

6 files changed

+13
-5
lines changed

content/product/internal-developer-platforms.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ meta_image: /images/product/idp-meta.png
77

88
heading: Internal Developer Platform
99
subheading: |
10-
Build your IDP with Pulumi. Give engineers self-service infrastructure through templates, components, and developer portals while maintaining control through policies and governance.
10+
The fastest, most secure way to deliver cloud infrastructure
1111
1212
aliases:
1313
- /solutions/platforms/

content/product/neo.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
---
2-
title: "Pulumi Neo"
2+
title: "Pulumi Neo - Your AI Platform Engineer"
33
layout: neo
44
aliases: ["/neo", "/copilot", "/product/copilot", "/product/pulumi-copilot"]
55

6+
heading: Pulumi Neo
7+
subheading: |
8+
Your AI platform engineer. Ship infrastructure faster, safely.
9+
610
meta_title: "Pulumi Neo - Your AI Platform Engineer"
711
meta_desc: "Meet Neo, your AI platform engineer. Automate infrastructure provisioning, governance, and optimization with enterprise controls."
812
meta_image: /images/product/neo-meta.png

content/product/pulumi-insights.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
title: Cloud Asset and Compliance Management – Pulumi Insights
33
layout: pulumi-insights
44

5+
heading: Pulumi Insights
6+
subheading: |
7+
Complete visibility and control for your cloud
8+
59
meta_desc: Search any cloud resource. Enforce policies as code. Track compliance. See everything in your infrastructure.
610

711
aliases:

layouts/product/internal-developer-platforms.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{ define "hero" }}
2-
{{ partial "hero" (dict "title" .Params.title "subtitle" .Params.overview.title) }}
2+
{{ partial "hero" (dict "title" (or .Params.heading "Internal Developer Platform") "subtitle" (or .Params.subheading .Params.overview.title)) }}
33
{{ end }}
44

55
{{ define "main" }}

layouts/product/neo.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{ define "hero" }}
2-
{{ partial "hero" (dict "title" .Params.title "subtitle" .Params.overview.title) }}
2+
{{ partial "hero" (dict "title" (or .Params.heading "Pulumi Neo") "subtitle" (or .Params.subheading .Params.overview.title)) }}
33
{{ end }}
44

55
{{ define "main" }}

layouts/product/pulumi-insights.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{ define "hero" }}
2-
{{ partial "hero" (dict "title" .Params.title "subtitle" .Params.overview.header) }}
2+
{{ partial "hero" (dict "title" (or .Params.heading "Pulumi Insights") "subtitle" (or .Params.subheading .Params.overview.header)) }}
33
{{ end }}
44

55
{{ define "main" }}

0 commit comments

Comments
 (0)