-
Notifications
You must be signed in to change notification settings - Fork 370
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
change: [M3-7492] – VPC Landing page empty state resource links & cop…
…y updates (#9951)
- Loading branch information
1 parent
64839ff
commit 41ea4c0
Showing
5 changed files
with
55 additions
and
7 deletions.
There are no files selected for viewing
5 changes: 5 additions & 0 deletions
5
packages/manager/.changeset/pr-9951-upcoming-features-1701454182728.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@linode/manager": Upcoming Features | ||
--- | ||
|
||
Tweaked VPC landing page empty state copy and added resource links ([#9951](https://github.com/linode/manager/pull/9951)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
48 changes: 48 additions & 0 deletions
48
packages/manager/src/features/VPCs/VPCLanding/VPCLandingEmptyStateData.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
import type { | ||
ResourcesHeaders, | ||
ResourcesLinkSection, | ||
ResourcesLinks, | ||
} from 'src/components/EmptyLandingPageResources/ResourcesLinksTypes'; | ||
|
||
export const headers: ResourcesHeaders = { | ||
description: | ||
'Host your websites, applications, or any other Cloud-based workloads on a scalable and reliable platform.', | ||
subtitle: 'Cloud-based virtual machines', | ||
title: 'Linodes', | ||
}; | ||
|
||
export const gettingStartedGuides: ResourcesLinkSection = { | ||
links: [ | ||
{ | ||
text: 'Overview of Virtual Private Clouds (VPCs)', | ||
to: 'https://www.linode.com/docs/products/networking/vpc/', | ||
}, | ||
{ | ||
text: 'Getting Started with VPCs', | ||
to: 'https://www.linode.com/docs/products/networking/vpc/get-started/', | ||
}, | ||
{ | ||
text: 'Create a VPC', | ||
to: 'https://www.linode.com/docs/products/networking/vpc/guides/create/', | ||
}, | ||
{ | ||
text: 'Manage VPC Subnets', | ||
to: 'https://www.linode.com/docs/products/networking/vpc/guides/subnets/', | ||
}, | ||
{ | ||
text: 'Assign (and Remove) Services', | ||
to: | ||
'https://www.linode.com/docs/products/networking/vpc/guides/assign-services/', | ||
}, | ||
], | ||
moreInfo: { | ||
text: 'View additional VPC guides', | ||
to: 'https://www.linode.com/docs/products/networking/vpc/guides/', | ||
}, | ||
title: 'Getting Started Guides', | ||
}; | ||
|
||
export const linkAnalyticsEvent: ResourcesLinks['linkAnalyticsEvent'] = { | ||
action: 'Click:link', | ||
category: 'VPCs landing page empty', | ||
}; |