Skip to content

Commit 525c34b

Browse files
authored
Update/big sky strings (#103017)
* Update usage guidelines copy * update error text and color white * revert debug code * Update design choices copy * fix logo color on big sky launch screen * align design choices card titles to left * fix width of processing step error
1 parent 0e36d3c commit 525c34b

File tree

4 files changed

+17
-5
lines changed

4 files changed

+17
-5
lines changed

client/landing/stepper/declarative-flow/internals/steps-repository/design-choices/design-choice.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@
2828
font-size: $font-title-medium;
2929
font-weight: 400;
3030
line-height: 26px;
31+
width: 100%;
32+
text-align: left;
3133
}
3234

3335
.design-choice__description {

client/landing/stepper/declarative-flow/internals/steps-repository/design-choices/index.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const DesignChoicesStep: StepType< { submits: { destination: string } } > = ( {
3131
const translate = useTranslate();
3232
const { submit, goBack } = navigation;
3333

34-
const documentHeaderText = translate( 'Bring your vision to life' );
34+
const documentHeaderText = translate( 'How would you like to design your site?' );
3535
const headerText = translate(
3636
'Time to build your site!{{br/}}How would you like to get started?',
3737
{
@@ -72,7 +72,7 @@ const DesignChoicesStep: StepType< { submits: { destination: string } } > = ( {
7272
<>
7373
<DesignChoice
7474
title={ translate( 'Choose a theme' ) }
75-
description={ translate( 'Choose one of our professionally designed themes.' ) }
75+
description={ translate( 'Our professionally designed themes make starting easy.' ) }
7676
imageSrc={ themesIllustrationImage }
7777
destination="design-setup"
7878
onSelect={ handleSubmit }
@@ -82,7 +82,9 @@ const DesignChoicesStep: StepType< { submits: { destination: string } } > = ( {
8282
<DesignChoice
8383
className="design-choices__try-big-sky"
8484
title={ translate( 'Create your site with AI' ) }
85-
description={ translate( 'Tell our AI what you need, and watch it come to life.' ) }
85+
description={ translate(
86+
'Tell the AI what you need, and watch it build a custom site in seconds.'
87+
) }
8688
bgImageSrc={ hiBigSky }
8789
destination="launch-big-sky"
8890
onSelect={ ( destination ) => {

client/landing/stepper/declarative-flow/internals/steps-repository/launch-big-sky/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ const LaunchBigSky: Step = function ( props ) {
167167
<div className="big-sky-disclaimer">
168168
<p>
169169
{ translate(
170-
'Please review our {{ai_guidelines}}AI Guidelines{{/ai_guidelines}} and the contents of your site to ensure it complies with our {{user_guidelines}}User Guidelines{{/user_guidelines}}.',
170+
"You can review our {{ai_guidelines}}AI Guidelines{{/ai_guidelines}}, and all sites must comply with WordPress.com's {{user_guidelines}}User Guidelines{{/user_guidelines}}.",
171171
{
172172
components: {
173173
ai_guidelines: (

client/landing/stepper/declarative-flow/internals/steps-repository/launch-big-sky/styles.scss

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ $color-big-sky-background: #000cb2;
99
}
1010

1111
.wordpress-logo {
12-
fill: $color-white;
12+
fill: $color-white !important;
1313
}
1414

1515
.processing-step__container {
@@ -23,6 +23,14 @@ $color-big-sky-background: #000cb2;
2323
margin-top: 0;
2424
width: 100%;
2525
max-width: 188px;
26+
27+
&:has(.processing-step__error) {
28+
max-width: 260px;
29+
}
30+
31+
.processing-step__error {
32+
color: $color-white;
33+
}
2634
}
2735

2836
.big-sky-disclaimer {

0 commit comments

Comments
 (0)