about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorEric Bailey <git@esb.lol>2024-01-31 17:36:00 -0600
committerGitHub <noreply@github.com>2024-01-31 15:36:00 -0800
commit4cf68b32c8c26c660e3240d014a051de77429374 (patch)
tree70cc3d0a55f72c9b7ee0219ae4a4a5102f860b22 /src
parent3d4cd9eda332dfd63c60210007cfb14152fd158c (diff)
downloadvoidsky-4cf68b32c8c26c660e3240d014a051de77429374.tar.zst
Change up onboarding algo feeds, rework copy (#2718)
* Switcheroo

* tweak copy

---------

Co-authored-by: Paul Frazee <pfrazee@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/screens/Onboarding/StepAlgoFeeds/index.tsx15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/screens/Onboarding/StepAlgoFeeds/index.tsx b/src/screens/Onboarding/StepAlgoFeeds/index.tsx
index 61c38b6a8..f2bf7cfb7 100644
--- a/src/screens/Onboarding/StepAlgoFeeds/index.tsx
+++ b/src/screens/Onboarding/StepAlgoFeeds/index.tsx
@@ -31,12 +31,12 @@ export type FeedConfig = {
 const PRIMARY_FEEDS: FeedConfig[] = [
   {
     default: IS_PROD, // these feeds are only available in prod
-    uri: 'at://did:plc:wqowuobffl66jv3kpsvo7ak4/app.bsky.feed.generator/the-algorithm',
+    uri: 'at://did:plc:z72i7hdynmk6r22z27h6tvur/app.bsky.feed.generator/whats-hot',
     gradient: tokens.gradients.midnight,
   },
   {
-    default: false,
-    uri: 'at://did:plc:z72i7hdynmk6r22z27h6tvur/app.bsky.feed.generator/whats-hot',
+    default: IS_PROD, // these feeds are only available in prod
+    uri: 'at://did:plc:wqowuobffl66jv3kpsvo7ak4/app.bsky.feed.generator/the-algorithm',
     gradient: tokens.gradients.midnight,
   },
 ]
@@ -100,11 +100,12 @@ export function StepAlgoFeeds() {
       <IconCircle icon={ListSparkle} style={[a.mb_2xl]} />
 
       <Title>
-        <Trans>Choose your algorithmic feeds</Trans>
+        <Trans>Choose your main feeds</Trans>
       </Title>
       <Description>
         <Trans>
-          Feeds are created by users and can give you entirely new experiences.
+          Feeds are created by users and organizations. They offer you varied
+          experiences and suggest content you may like using algorithms.
         </Trans>
       </Description>
 
@@ -115,12 +116,12 @@ export function StepAlgoFeeds() {
           label={_(msg`Select your primary algorithmic feeds`)}>
           <Text
             style={[a.text_md, a.pt_4xl, a.pb_md, t.atoms.text_contrast_700]}>
-            <Trans>We recommend "For You" by Skygaze:</Trans>
+            <Trans>We recommend our "Discover" feed:</Trans>
           </Text>
           <FeedCard config={PRIMARY_FEEDS[0]} />
           <Text
             style={[a.text_md, a.pt_4xl, a.pb_lg, t.atoms.text_contrast_700]}>
-            <Trans>You can also try our "Discover" algorithm:</Trans>
+            <Trans>We also think you'll like "For You" by Skygaze:</Trans>
           </Text>
           <FeedCard config={PRIMARY_FEEDS[1]} />
         </Toggle.Group>