Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Change up onboarding algo feeds, rework copy (#2718)

* Switcheroo

* tweak copy

---------

Co-authored-by: Paul Frazee <pfrazee@gmail.com>

authored by

Eric Bailey
Paul Frazee
and committed by
GitHub
4cf68b32 3d4cd9ed

+8 -7
+8 -7
src/screens/Onboarding/StepAlgoFeeds/index.tsx
··· 31 31 const PRIMARY_FEEDS: FeedConfig[] = [ 32 32 { 33 33 default: IS_PROD, // these feeds are only available in prod 34 - uri: 'at://did:plc:wqowuobffl66jv3kpsvo7ak4/app.bsky.feed.generator/the-algorithm', 34 + uri: 'at://did:plc:z72i7hdynmk6r22z27h6tvur/app.bsky.feed.generator/whats-hot', 35 35 gradient: tokens.gradients.midnight, 36 36 }, 37 37 { 38 - default: false, 39 - uri: 'at://did:plc:z72i7hdynmk6r22z27h6tvur/app.bsky.feed.generator/whats-hot', 38 + default: IS_PROD, // these feeds are only available in prod 39 + uri: 'at://did:plc:wqowuobffl66jv3kpsvo7ak4/app.bsky.feed.generator/the-algorithm', 40 40 gradient: tokens.gradients.midnight, 41 41 }, 42 42 ] ··· 100 100 <IconCircle icon={ListSparkle} style={[a.mb_2xl]} /> 101 101 102 102 <Title> 103 - <Trans>Choose your algorithmic feeds</Trans> 103 + <Trans>Choose your main feeds</Trans> 104 104 </Title> 105 105 <Description> 106 106 <Trans> 107 - Feeds are created by users and can give you entirely new experiences. 107 + Feeds are created by users and organizations. They offer you varied 108 + experiences and suggest content you may like using algorithms. 108 109 </Trans> 109 110 </Description> 110 111 ··· 115 116 label={_(msg`Select your primary algorithmic feeds`)}> 116 117 <Text 117 118 style={[a.text_md, a.pt_4xl, a.pb_md, t.atoms.text_contrast_700]}> 118 - <Trans>We recommend "For You" by Skygaze:</Trans> 119 + <Trans>We recommend our "Discover" feed:</Trans> 119 120 </Text> 120 121 <FeedCard config={PRIMARY_FEEDS[0]} /> 121 122 <Text 122 123 style={[a.text_md, a.pt_4xl, a.pb_lg, t.atoms.text_contrast_700]}> 123 - <Trans>You can also try our "Discover" algorithm:</Trans> 124 + <Trans>We also think you'll like "For You" by Skygaze:</Trans> 124 125 </Text> 125 126 <FeedCard config={PRIMARY_FEEDS[1]} /> 126 127 </Toggle.Group>