-
Notifications
You must be signed in to change notification settings - Fork 222
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add landing page experiment #5434
Conversation
src/app/(proper_react)/(redesign)/(public)/LandingViewRedesign.test.tsx
Dismissed
Show dismissed
Hide dismissed
src/app/(proper_react)/(redesign)/(public)/LandingViewRedesign.test.tsx
Dismissed
Show dismissed
Hide dismissed
src/app/(proper_react)/(redesign)/(public)/LandingViewRedesign.test.tsx
Dismissed
Show dismissed
Hide dismissed
Preview URL 🚀 : https://blurts-server-pr-5434-mgjlpikfea-uk.a.run.app |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@flozia code changes look OK, I tried enabling locally and all I see is this on /
. I noticed it's not passing tests too is this ready for review?
@@ -101,6 +101,33 @@ features: | |||
value: { "enabled": true } | |||
- channel: production | |||
value: { "enabled": true } | |||
landing-page-redesign: | |||
description: Landing page redesign |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder if this might be confusing later, could we give it a more unique name? Do we ever remove these?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good point — I’ve updated the experiment ID to be a bit more explicit in bd0974e.
@rhelmer This PR is only adding the new landing page redesign page together with the |
<LandingViewRedesign | ||
eligibleForPremium={eligibleForPremium} | ||
l10n={getL10n()} | ||
countryCode={countryCode} | ||
scanLimitReached={scanLimitReached} | ||
experimentData={experimentData["Features"]} | ||
/> | ||
) : ( | ||
<LandingView | ||
eligibleForPremium={eligibleForPremium} | ||
l10n={getL10n()} | ||
countryCode={countryCode} | ||
scanLimitReached={scanLimitReached} | ||
experimentData={experimentData["Features"]} | ||
/> | ||
)} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are these two meant to be the same?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One is the new LandingViewRedesign
layout and the other is the current LandingView
— both are taking the same props.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! I had one comment.
Cleanup completed - database 'blurts-server-pr-5434' destroyed, cloud run service 'blurts-server-pr-5434' destroyed |
References:
Jira:
Description
Adds the new view for the landing page experiment
landing-page-redesign
together with the feature flagLandingPageRedesign
. The content of the page will be implemented together with MNTOR-3806.How to test
Enable the feature flag
LandingPageRedesign
and visit/
.Checklist (Definition of Done)