Skip to content

Commit ff9f48a

Browse files
committed
Change main components and pillar language
1 parent e5b893e commit ff9f48a

File tree

8 files changed

+20
-26
lines changed

8 files changed

+20
-26
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"label": "Create self-service actions",
2+
"label": "Create actions",
33
"position": 1
44
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"label": "Pages & dashboards",
2+
"label": "Interface designer",
33
"position": 8,
44
"className": "custom-sidebar-item sidebar-menu-pages-and-dashboards"
55
}
File renamed without changes.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"label": "Engineering 360",
2+
"label": "Engineering intelligence",
33
"collapsible": true,
44
"collapsed": true,
55
"position": 3,
66
"customProps": {
7-
"description": "Engineering 360"
7+
"description": "Engineering intelligence"
88
}
99
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"label": "Incident management",
2+
"label": "Self-healing incidents",
33
"collapsible": true,
44
"collapsed": true,
55
"position": 2,
66
"customProps": {
7-
"description": "Incident Management"
7+
"description": "Self-healing incidents"
88
}
99
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"label": "Resource self-service",
2+
"label": "Resource management",
33
"collapsible": true,
44
"collapsed": true,
55
"position": 1,
66
"customProps": {
7-
"description": "Resource Self-Service"
7+
"description": "Resource management"
88
}
99
}

src/components/ProductPillars/ProductPillars.tsx

Lines changed: 11 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -29,44 +29,38 @@ const Pillar: React.FC<PillarProps> = ({ title, description, demoUrl, demoLabel
2929
const ProductPillars: React.FC = () => {
3030
const pillars = [
3131
{
32-
title: 'Software Catalog',
33-
description: 'Make Port your own by defining a data model that fits your organization, then use your software catalog as a single source of truth for your software development assets.',
32+
title: 'Software catalog',
33+
description: 'Bring data from across your ecosystem to build a unified SDLC view. Make Port your own by defining a data model that fits your organization, then use your software catalog as a single source of truth for your software development assets.',
3434
demoUrl: 'https://showcase.port.io/service_catalog',
3535
icon: 'lists',
3636
},
3737
{
38-
title: 'Self-Service',
39-
description: 'Drive developer productivity and reduce drift by providing developers with pre-configured self-service actions like scaffolding a service or provisioning a cloud resource.',
38+
title: 'Actions',
39+
description: 'Drive developer productivity and reduce drift by standardizing operations and eliminating knowledge gaps through pre-configured actions like scaffolding a service or provisioning a cloud resource.',
4040
demoUrl: 'https://showcase.port.io/self-serve',
4141
icon: 'bolt',
4242
},
4343
{
44-
title: 'Workflow Automation',
45-
description: 'Set up automations to automatically respond to events in your software catalog such as TTL=0 or service degradation, and peform actions like sending a notification or reporting an issue.',
44+
title: 'Workflow orchestrator',
45+
description: 'Build any flow using automations to automatically respond to events in your software catalog such as TTL=0 or service degradation. Infuse AI into any workflow to accelerate delivery and eliminate manual effort.',
4646
demoUrl: 'https://showcase.port.io/settings/automations',
4747
icon: 'play_circle',
4848
},
4949
{
5050
title: 'Scorecards',
51-
description: 'Define and track standards and KPIs for your resources to measure quality, production readiness, productivity, or any other metric you need.',
51+
description: 'Define software standards and know they are met. Ensure quality, security, compliance, and velocity for all software catalog components.',
5252
demoUrl: 'https://showcase.port.io/serviceEntity?identifier=authentication&activeTab=1',
5353
icon: 'military_tech',
5454
},
5555
{
56-
title: 'R&D Insights & Reports',
57-
description: 'Shine a light on all things engineering, from standards compliance to DORA metrics & AppSec. Make informed decisions based on trends and usage patterns to improve development, optimize performance, and reduce cost.',
58-
demoUrl: 'https://showcase.port.io/dora_metrics',
59-
icon: 'insights',
60-
},
61-
{
62-
title: 'Dashboards & visualizations',
63-
description: 'Create custom dashboards and widgets to track and visualize data about your assets. View trends and gain insights into your development activities, performance, and progress.',
56+
title: 'Interface designer',
57+
description: 'Different roles require different views. Customize each stakeholder\'s experience to match their daily work. View trends and gain insights into your development activities, performance, and progress.',
6458
demoUrl: 'https://showcase.port.io/engineering_overview',
6559
icon: 'dashboard',
6660
},
6761
{
68-
title: 'Role-based access control',
69-
description: 'Control access to different parts of your portal based on user roles and permissions. Ensure that only authorized users have access to the information they need to do their jobs.',
62+
title: 'Access controls',
63+
description: 'Define granular access control for everything in Port. Ensure that only authorized users have access to the information they need to do their jobs.',
7064
demoUrl: 'https://showcase.port.io/settings/users',
7165
icon: 'shield_person',
7266
}

src/components/guides-section/consts.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import guideMetadata from './guide-metadata.json';
22

33
export const tagsCategoryMap = {
44
"Use-cases": ["SDLC", "K8s for devs", "Incident management", "IaC for devs", "Cloud access management", "Feature flag management", "Security", /*"Cloud cost",*/ "Dev environments", "Engineering metrics", "Dependency management", "API catalog", "Approval workflow"],
5-
"Port pillars": ["Actions", "AI", "Automations", "Dashboards", "Scorecards", "RBAC"],
5+
"Port pillars": ["Actions", "AI", "Automations", "Dashboards", "Scorecards", "Access Controls"],
66
Technologies: [
77
"GitHub",
88
"Github Copilot",

0 commit comments

Comments
 (0)