Bluesky app fork with some witchin' additions 馃挮 witchsky.app
bluesky fork client
119
fork

Configure Feed

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

at a876aae44ea07494ebea9727350aa060b81f317b 43 lines 1.2 kB view raw
1import {View} from 'react-native' 2import {Trans} from '@lingui/react/macro' 3 4import {usePalette} from '#/lib/hooks/usePalette' 5import {InfoCircleIcon} from '#/lib/icons' 6import {TextLink} from '../util/Link' 7import {Text} from '../util/text/Text' 8 9export function DiscoverFallbackHeader() { 10 const pal = usePalette('default') 11 return ( 12 <View 13 style={[ 14 { 15 flexDirection: 'row', 16 alignItems: 'center', 17 paddingVertical: 12, 18 paddingHorizontal: 12, 19 borderTopWidth: 1, 20 }, 21 pal.border, 22 pal.viewLight, 23 ]}> 24 <View style={{width: 68, paddingLeft: 12}}> 25 <InfoCircleIcon size={36} style={pal.textLight} strokeWidth={1.5} /> 26 </View> 27 <View style={{flex: 1}}> 28 <Text type="md" style={pal.text}> 29 <Trans> 30 We ran out of posts from your follows. Here's the latest from{' '} 31 <TextLink 32 type="md-medium" 33 href="/profile/bsky.app/feed/whats-hot" 34 text="Discover" 35 style={pal.link} 36 /> 37 . 38 </Trans> 39 </Text> 40 </View> 41 </View> 42 ) 43}