Skip to content

Commit

Permalink
change: [M3-7493] – Update UX copy on VPC Create page (#9962)
Browse files Browse the repository at this point in the history
  • Loading branch information
dwiley-akamai authored Dec 5, 2023
1 parent 7f7792e commit 64839ff
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@linode/manager": Upcoming Features
---

Updated copy on VPC Create page ([#9962](https://github.com/linode/manager/pull/9962))
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,11 @@ export const SubnetContent = (props: Props) => {
Subnets
</StyledHeaderTypography>
<StyledBodyTypography isDrawer={isDrawer} variant="body1">
{VPC_CREATE_FORM_SUBNET_HELPER_TEXT}
<Link to="#"> Learn more</Link>.
{/* @TODO VPC: subnet learn more link here */}
{VPC_CREATE_FORM_SUBNET_HELPER_TEXT}{' '}
<Link to="https://www.linode.com/docs/products/networking/vpc/guides/subnets/">
Learn more
</Link>
.
</StyledBodyTypography>
{subnetErrors
? subnetErrors.map((apiError: APIError) => (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,11 @@ export const VPCTopSectionContent = (props: Props) => {
return (
<>
<StyledBodyTypography isDrawer={isDrawer} variant="body1">
{VPC_CREATE_FORM_VPC_HELPER_TEXT}
<Link to="#"> Learn more</Link>.{/* @TODO VPC: learn more link here */}
{VPC_CREATE_FORM_VPC_HELPER_TEXT}{' '}
<Link to="https://www.linode.com/docs/products/networking/vpc/">
Learn more
</Link>
.
</StyledBodyTypography>
<RegionSelect
aria-label="Choose a region"
Expand Down
5 changes: 3 additions & 2 deletions packages/manager/src/features/VPCs/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,11 @@ export const VPC_AUTO_ASSIGN_IPV4_TOOLTIP =

export const CANNOT_CREATE_VPC_MESSAGE = `You don't have permissions to create a new VPC. Please contact an account administrator for details`;

export const VPC_CREATE_FORM_SUBNET_HELPER_TEXT = `A subnet divides a VPC into multiple logically defined networks to allow for controlled access to VPC resources. Subnets within a VPC are routable regardless of the address spaces they are in.`;
export const VPC_CREATE_FORM_SUBNET_HELPER_TEXT =
'Each VPC can further segment itself into distinct networks through the use of multiple subnets. These subnets can isolate various functionality of an application.';

export const VPC_CREATE_FORM_VPC_HELPER_TEXT =
'A virtual private cloud (VPC) is an isolated network which allows for control over how resources are networked and can communicate.';
'A VPC is an isolated network that enables private communication between Compute Instances within the same data center.';

export const VPC_FEEDBACK_FORM_URL =
'https://docs.google.com/forms/d/e/1FAIpQLScvWbTupCNsBF5cz5YEsv5oErHM4ONBZodDYi8KuOgC8fyfag/viewform';
Expand Down

0 comments on commit 64839ff

Please sign in to comment.