-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(): update alpha header copy (#1485)
- Loading branch information
Showing
4 changed files
with
26 additions
and
15 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -91,11 +91,16 @@ const FeedPage: React.FC<FeedPageProps & RootComponentProps> = props => { | |
) : ( | ||
<Box margin={{ bottom: 'medium' }}> | ||
<LoginCTAWidgetCard | ||
title={`🚀 ${t(' Welcome to Ethereum World!')}`} | ||
title={`${t('Welcome, fellow Ethereans!')} 💫`} | ||
subtitle={t('We are in private alpha at this time. ')} | ||
beforeLinkLabel={t("If you'd like to participate,")} | ||
afterLinkLabel={t("and we'll add you to our wait list!")} | ||
writeToUsLabel={t('write to us')} | ||
beforeLinkLabel={t("If you'd like to participate, just ")} | ||
afterLinkLabel={t( | ||
' and we’ll send you a ticket for the next shuttle going to Ethereum World.', | ||
)} | ||
disclaimerLabel={t( | ||
'Please bear in mind we’re onboarding new people gradually to make sure our systems can scale up. Bon voyage! 🚀', | ||
)} | ||
writeToUsLabel={t('drop us a message')} | ||
writeToUsUrl={'mailto:[email protected]'} | ||
/> | ||
</Box> | ||
|
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 |
---|---|---|
|
@@ -21,10 +21,12 @@ const Template = (args: ILoginWidgetCardProps) => ( | |
export const BaseLoginCTAWidgetCard = Template.bind({}); | ||
|
||
BaseLoginCTAWidgetCard.args = { | ||
title: '🚀 Welcome to Ethereum World!', | ||
title: 'Welcome, fellow Ethereans! 💫', | ||
subtitle: 'We are in private alpha at this time. ', | ||
beforeLinkLabel: "If you'd like to participate,", | ||
afterLinkLabel: "and we'll add you to our waitlist!", | ||
writeToUsLabel: 'write to us', | ||
beforeLinkLabel: "If you'd like to participate,just ", | ||
afterLinkLabel: 'and we’ll send you a ticket for the next shuttle going to Ethereum World.', | ||
disclaimerLabel: | ||
'Please bear in mind we’re onboarding new people gradually to make sure our systems can scale up. Bon voyage! 🚀', | ||
writeToUsLabel: 'drop us a message', | ||
writeToUsUrl: 'mailto:[email protected]', | ||
}; |
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 |
---|---|---|
|
@@ -13,11 +13,12 @@ describe('<LoginCTAWidgetCard /> Component', () => { | |
componentWrapper = customRender( | ||
wrapWithTheme( | ||
<LoginCTAWidgetCard | ||
title="🚀 Welcome to Ethereum World!" | ||
title="Welcome, fellow Ethereans! 💫" | ||
subtitle="We are in private alpha at this time. " | ||
beforeLinkLabel="If you'd like to participate," | ||
afterLinkLabel="and we'll add you to our waitlist!" | ||
writeToUsLabel="write to us" | ||
beforeLinkLabel="If you'd like to participate,just " | ||
afterLinkLabel="and we’ll send you a ticket for the next shuttle going to Ethereum World." | ||
disclaimerLabel="Please bear in mind we’re onboarding new people gradually to make sure our systems can scale up. Bon voyage! 🚀" | ||
writeToUsLabel="drop us a message" | ||
writeToUsUrl="mailto:[email protected]" | ||
/>, | ||
), | ||
|
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