diff --git a/apps/akasha/src/components/feed-page/feed-page.tsx b/apps/akasha/src/components/feed-page/feed-page.tsx index 4ac198f9bb..80e27a2df2 100644 --- a/apps/akasha/src/components/feed-page/feed-page.tsx +++ b/apps/akasha/src/components/feed-page/feed-page.tsx @@ -91,11 +91,16 @@ const FeedPage: React.FC = props => { ) : ( diff --git a/ui/design/src/components/LoginCTAWidgetCard/LoginCTAWidgetCard.stories.tsx b/ui/design/src/components/LoginCTAWidgetCard/LoginCTAWidgetCard.stories.tsx index 91b1a513bf..bd19d8f56a 100644 --- a/ui/design/src/components/LoginCTAWidgetCard/LoginCTAWidgetCard.stories.tsx +++ b/ui/design/src/components/LoginCTAWidgetCard/LoginCTAWidgetCard.stories.tsx @@ -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:alpha@ethereum.world', }; diff --git a/ui/design/src/components/LoginCTAWidgetCard/__tests__/index.test.tsx b/ui/design/src/components/LoginCTAWidgetCard/__tests__/index.test.tsx index 74f827a533..f96f2854c0 100644 --- a/ui/design/src/components/LoginCTAWidgetCard/__tests__/index.test.tsx +++ b/ui/design/src/components/LoginCTAWidgetCard/__tests__/index.test.tsx @@ -13,11 +13,12 @@ describe(' Component', () => { componentWrapper = customRender( wrapWithTheme( , ), diff --git a/ui/design/src/components/LoginCTAWidgetCard/index.tsx b/ui/design/src/components/LoginCTAWidgetCard/index.tsx index ca6b983060..ae681c7fd6 100644 --- a/ui/design/src/components/LoginCTAWidgetCard/index.tsx +++ b/ui/design/src/components/LoginCTAWidgetCard/index.tsx @@ -25,6 +25,7 @@ export interface ILoginWidgetCardProps { beforeLinkLabel: string; afterLinkLabel: string; writeToUsLabel: string; + disclaimerLabel?: string; writeToUsUrl: string; image?: React.ReactElement; publicImgPath?: string; @@ -36,12 +37,13 @@ const LoginCTACard: React.FC = props => { beforeLinkLabel, afterLinkLabel, writeToUsLabel, + disclaimerLabel, writeToUsUrl, publicImgPath = '/images', } = props; return ( - {props.image && props.image} + {props.image} @@ -49,10 +51,11 @@ const LoginCTACard: React.FC = props => { {subtitle} - {beforeLinkLabel}{' '} - {' '} + {beforeLinkLabel} + {afterLinkLabel} + {disclaimerLabel}