Skip to content

Commit 93d38c6

Browse files
authored
docs: more trusted apps (#1022)
## 📜 Description Added more apps to "Trusted by" section ## 💡 Motivation and Context Planned check for who uses the lib to reflect the actual state. ## 📢 Changelog <!-- High level overview of important changes --> <!-- For example: fixed status bar manipulation; added new types declarations; --> <!-- If your changes don't affect one of platform/language below - then remove this platform/language --> ### Docs - update Trusted by content ## 🤔 How Has This Been Tested? Tested via preview. ## 📸 Screenshots (if appropriate): <img width="1289" height="625" alt="image" src="https://github.com/user-attachments/assets/c1361ce7-ee1b-4a1a-a0a0-e92da32ac3e1" /> ## 📝 Checklist - [x] CI successfully passed - [x] I added new mocks and corresponding unit-tests if library API was changed
1 parent 1c03e7b commit 93d38c6

File tree

2 files changed

+22
-15
lines changed

2 files changed

+22
-15
lines changed

cspell.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,8 @@
166166
"googlequicksearchbox",
167167
"androidkeyboard",
168168
"honeyboard",
169-
"unflatten"
169+
"unflatten",
170+
"Pixelfed"
170171
],
171172
"ignorePaths": [
172173
"node_modules",

docs/src/pages/index.tsx

Lines changed: 20 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -83,12 +83,6 @@ const trustedBy = [
8383
link: "https://github.com/RSSNext/Follow",
8484
name: "Follow",
8585
},
86-
{
87-
img: "https://avatars.githubusercontent.com/u/88587596?s=200&v=4",
88-
alt: "TonKeeper Wallet app",
89-
link: "https://github.com/tonkeeper/wallet",
90-
name: "TON Wallet",
91-
},
9286
{
9387
img: "https://avatars.githubusercontent.com/u/23416667?s=200&v=4",
9488
alt: "Chatwoot mobile app",
@@ -119,18 +113,30 @@ const trustedBy = [
119113
link: "https://github.com/showtime-xyz/showtime-frontend",
120114
name: "Showtime",
121115
},
122-
{
123-
img: "https://avatars.githubusercontent.com/u/97704884?s=200&v=4",
124-
alt: "Converse Messenger",
125-
link: "https://github.com/ephemeraHQ/converse-app",
126-
name: "Converse",
127-
},
128116
{
129117
img: "https://avatars.githubusercontent.com/u/6613230?s=200&v=4",
130118
alt: "Edge App",
131119
link: "https://github.com/EdgeApp/edge-react-gui",
132120
name: "Edge",
133121
},
122+
{
123+
img: "https://play-lh.googleusercontent.com/4G1ZS2y5ekD1eRgpOahOj6v_vq1UlN0VVNcmHFFIS2SFGotr3vbZStS_6RZU8l4G7Ryy=w200-h480-rw",
124+
alt: "Pixelfed App",
125+
link: "https://github.com/pixelfed/pixelfed-rn",
126+
name: "Pixelfed",
127+
},
128+
{
129+
img: "https://play-lh.googleusercontent.com/xs4ZUIOATV_bGfdl2yd0mWev9bcK2_a4ofnUEIIQe2_BecUqOVQ7YmtXu41Ereg0Kg=w200-h480-rw",
130+
alt: "Trezor Suite App",
131+
link: "https://github.com/trezor/trezor-suite",
132+
name: "Trezor Suite",
133+
},
134+
{
135+
img: "https://play-lh.googleusercontent.com/BFYQT9Pugt8shdo75MjFZh5F_IMn7btSj8mXknbvSfmVV6JASCKQqcLcERvGdD0iN8A=w200-h480-rw",
136+
alt: "PocketPal AI App",
137+
link: "https://github.com/a-ghorbani/pocketpal-ai",
138+
name: "PocketPal AI",
139+
},
134140
{
135141
img: "https://avatars.githubusercontent.com/u/7648832?s=200&v=4",
136142
alt: "Kitsu App",
@@ -154,7 +160,7 @@ const trustedBy = [
154160
function TrustedBy(): JSX.Element {
155161
return (
156162
<section className={clsx(styles.trustedBySection)}>
157-
<h2 class={clsx(styles.trustedByTitle)}>Trusted by</h2>
163+
<h2 className={clsx(styles.trustedByTitle)}>Trusted by</h2>
158164
<div className={clsx(styles.trustedByContainer)}>
159165
{trustedBy.map((item, index) => (
160166
<a key={index} href={item.link} target="_blank">
@@ -167,7 +173,7 @@ function TrustedBy(): JSX.Element {
167173
</a>
168174
))}
169175
</div>
170-
<p class={clsx(styles.addYourApp)}>
176+
<p className={clsx(styles.addYourApp)}>
171177
Would like to show your project here?{" "}
172178
<a href="https://github.com/kirillzyusko/react-native-keyboard-controller/edit/main/docs/src/pages/index.tsx">
173179
Submit a PR

0 commit comments

Comments
 (0)