This commit is contained in:
Eric Bailey
2024-12-09 12:57:18 -06:00
parent 58d4935ffc
commit 757c12c9f3
2 changed files with 13 additions and 18 deletions
@@ -186,7 +186,7 @@ function DialogInner({
a.pt_lg,
{color: 'white'},
]}>
<Trans>Let's build the social web.</Trans>
<Trans>A century of gathering clouds</Trans>
</Text>
</View>
@@ -198,8 +198,8 @@ function DialogInner({
t.atoms.text_contrast_medium,
]}>
<Trans>
Support Bluesky and get access to exclusive features, custom app
icons, higher video quality, and more!
Ghost ships arriving and leaving. The sea deeper, vaster. The parrot
in the bamboo cage spoke several languages.
</Trans>
</Text>
@@ -378,21 +378,16 @@ function DialogInner({
)}
<Button
label={_(msg`Subscribe`)}
variant="solid"
color="secondary"
variant="gradient"
color="gradient_nordic"
size="large"
onPress={onPressSubscribe}
disabled={isPending || isDisabled}
style={[a.flex_1, a.overflow_hidden]}>
<GradientFill gradient={tokens.gradients.nordic} />
<ButtonText style={[{color: 'white'}]}>
<ButtonText>
<Trans>Subscribe</Trans>
</ButtonText>
<ButtonIcon
icon={isPending ? Loader : Plus}
position="right"
style={[{color: 'white'}]}
/>
<ButtonIcon icon={isPending ? Loader : Plus} position="right" />
</Button>
</View>
@@ -440,12 +435,12 @@ function useCoreOfferingCopy() {
return {
[SubscriptionOfferingId.CoreMonthly]: {
title: _(msg`1 month`),
price: _(msg`$8 / month`),
price: _(msg`$1337 / month`),
discount: undefined,
},
[SubscriptionOfferingId.CoreAnnual]: {
title: _(msg`12 months`),
price: _(msg`$72 / year`),
price: _(msg`$1337 / year`),
discount: _(msg`Save 25%`),
},
}
+4 -4
View File
@@ -6,7 +6,7 @@ import {useLingui} from '@lingui/react'
import {NativeStackScreenProps} from '@react-navigation/native-stack'
import {CommonNavigatorParams} from '#/lib/routes/types'
import {isAndroid, isIOS, isNative,isWeb} from '#/platform/detection'
import {isAndroid, isIOS, isNative, isWeb} from '#/platform/detection'
import {PurchasesState, usePurchases, usePurchasesApi} from '#/state/purchases'
import {useManageSubscription} from '#/state/purchases/hooks/useManageSubscription'
import {useNativeUserState} from '#/state/purchases/hooks/useNativeUserState'
@@ -314,14 +314,14 @@ function PurchaseHeader() {
a.font_heavy,
isDark ? undefined : t.atoms.text_contrast_high,
]}>
<Trans>Building a better internet needs your support.</Trans>
<Trans>A century of gathering clouds</Trans>
</Text>
<View style={[a.gap_xs]}>
<Text style={[a.text_md, a.leading_snug]}>
<Trans>
Subscribing to Bluesky+ helps ensure that our work to build an open,
secure, and user-first internet can continue.
Ghost ships arriving and leaving. The sea deeper, vaster. The parrot
in the bamboo cage spoke several languages.
</Trans>
</Text>
</View>