Skip to content

Commit 34361f9

Browse files
committed
feat: add Bluesky link and badge
1 parent 8cd014b commit 34361f9

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
<a href="https://lea.pet/@clerotri">
2020
<img src="https://img.shields.io/badge/fedi-@clerotri@lea.pet-teal" alt="Fediverse badge from shields.io"/>
2121
</a>
22+
<a href="https://bsky.app/profile/clerotri.upryzing.app">
23+
<img src="https://img.shields.io/badge/bluesky-@clerotri.upryzing.app-dodgerblue" alt="Fediverse badge from shields.io"/>
24+
</a>
2225
<a href="https://shields.rbtlog.dev/app.upryzing.clerotri">
2326
<img src="https://shields.rbtlog.dev/simple/app.upryzing.clerotri" alt="RB shield">
2427
</a>

src/components/common/settings/sections/app/AppInfoSection.tsx

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import {StyleSheet} from 'react-native-unistyles';
33

44
import {settings} from '@clerotri/lib/settings';
55
import {
6+
BLUESKY_PROFILE,
67
CONTRIBUTORS_LIST,
78
FEDI_PROFILE,
89
GITHUB_REPO,
@@ -76,15 +77,20 @@ export const AppInfoSection = () => {
7677
/>
7778
</Text>
7879
</View>
79-
<View style={{flexDirection: 'row', marginBottom: 16}}>
80-
<Pressable onPress={() => openUrl(GITHUB_REPO)} style={{marginEnd: 16}}>
80+
<View style={{flexDirection: 'row', marginBottom: 16, gap: 24}}>
81+
<Pressable onPress={() => openUrl(GITHUB_REPO)}>
8182
<MaterialCommunityIcon name={'github'} size={60} />
8283
</Pressable>
8384
<Pressable
8485
onPress={() => openUrl(FEDI_PROFILE)}
85-
style={{marginStart: 16}}>
86+
>
8687
<MaterialCommunityIcon name={'mastodon'} size={60} />
8788
</Pressable>
89+
<Pressable
90+
onPress={() => openUrl(BLUESKY_PROFILE)}
91+
>
92+
<MaterialCommunityIcon name={'butterfly'} size={60} />
93+
</Pressable>
8894
</View>
8995
<View style={{flexDirection: 'row'}}>
9096
<Button

src/lib/consts.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2078,6 +2078,8 @@ export const ANALYTICS_ENDPOINT = 'https://clerotri.upryzing.app/v1/submit';
20782078
// Links used in the settings menu
20792079
export const FEDI_PROFILE = 'https://lea.pet/@clerotri';
20802080

2081+
export const BLUESKY_PROFILE = 'https://bsky.app/profile/clerotri.upryzing.app';
2082+
20812083
export const GITHUB_REPO = 'https://github.com/upryzing/clerotri';
20822084

20832085
export const CONTRIBUTORS_LIST = `${GITHUB_REPO}/graphs/contributors`;

0 commit comments

Comments
 (0)