Skip to content

Commit 9e1cbc9

Browse files
committed
docs: Minor link updates
1 parent 329d757 commit 9e1cbc9

File tree

12 files changed

+21
-21
lines changed

12 files changed

+21
-21
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<p align="center">
2-
<img width="200px" src="https://raw.githubusercontent.com/tjtanjin/react-chatbotify/main/assets/logo.png" />
2+
<img width="200px" src="https://raw.githubusercontent.com/react-chatbotify/react-chatbotify/main/assets/logo.png" />
33
<h1 align="center">React ChatBotify Docs</h1>
44
</p>
55

@@ -28,7 +28,7 @@ React ChatBotify Docs is the user guide for the [React ChatBotify library](https
2828

2929
The goal of React ChatBotify Docs is to provide users with ease of access to the information for using the React ChatBotify library. To achieve this, a great deal of effort has gone into curating the user guide and a sharing can be found at this [article](https://tjtanjin.medium.com/beyond-the-code-reflections-on-crafting-an-effective-user-guide-0480d8af0cd9).
3030

31-
Note that this repository contains the code for the user guide. If you're looking for the repository for the React ChatBotify library itself, you may [look here](https://github.com/tjtanjin/react-chatbotify).
31+
Note that this repository contains the code for the user guide. If you're looking for the repository for the React ChatBotify library itself, you may [look here](https://github.com/react-chatbotify/react-chatbotify).
3232

3333
### Features
3434

docs/api/settings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ const DefaultSettings: Settings = {
219219

220220
:::info Info
221221

222-
Default values for icons, avatars and JSX Elements may not be reflected in the tables below due to space constraints. If you would like information on those, you may refer to the source code containing the default settings [**here**](https://github.com/tjtanjin/react-chatbotify/blob/main/src/constants/internal/DefaultSettings.tsx).
222+
Default values for icons, avatars and JSX Elements may not be reflected in the tables below due to space constraints. If you would like information on those, you may refer to the source code containing the default settings [**here**](https://github.com/react-chatbotify/react-chatbotify/blob/main/src/constants/internal/DefaultSettings.tsx).
223223

224224
:::
225225

docs/api/styles.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,6 @@ The utilization of styles is remarkably simple, as each section readily accepts
159159

160160
:::tip Tip
161161

162-
If you wish to customise the chatbot appearance with even more granularity, you may also overwrite the CSS classes directly. Class names for this library are appended with `rcb` and you may find the relevant classes through **inspect element** or by combing through the CSS files within the components in the [**code repository**](https://github.com/tjtanjin/react-chatbotify/tree/main/src/components).
162+
If you wish to customise the chatbot appearance with even more granularity, you may also overwrite the CSS classes directly. Class names for this library are appended with `rcb` and you may find the relevant classes through **inspect element** or by combing through the CSS files within the components in the [**code repository**](https://github.com/react-chatbotify/react-chatbotify/tree/main/src/components).
163163

164164
:::

docs/api/typescript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The library provides the following external type definitions which you may impor
2020

2121
:::tip Tip
2222

23-
Use an editor that is able to automatically detect the required types for an easier time! You may also refer to the type definitions [**here**](https://github.com/tjtanjin/react-chatbotify/tree/main/src/types).
23+
Use an editor that is able to automatically detect the required types for an easier time! You may also refer to the type definitions [**here**](https://github.com/react-chatbotify/react-chatbotify/tree/main/src/types).
2424

2525
:::
2626

docs/compatibility/supported_browsers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ keywords: [react, chat, chatbot, chatbotify]
77

88
# Supported Browsers
99

10-
The following table shows the browsers that React ChatBotify has been tested on. If you notice any discrepancies or would like to add on to this list, please feel free to raise an issue on [**github**](https://github.com/tjtanjin/react-chatbotify/issues) or reach out on [**discord**](https://discord.gg/6R4DK4G5Zh).
10+
The following table shows the browsers that React ChatBotify has been tested on. If you notice any discrepancies or would like to add on to this list, please feel free to raise an issue on [**github**](https://github.com/react-chatbotify/react-chatbotify/issues) or reach out on [**discord**](https://discord.gg/6R4DK4G5Zh).
1111

1212
| Browser | Support |
1313
|----------------------------------------------------------------------|-----------------------------|

docs/concepts/themes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The `theme` prop can accept a single **Theme** object or a list of it. A Theme o
1515
- **cacheDuration**: duration to cache the theme for before fetching again
1616
- **baseUrl**: base url for fetching the theme from
1717

18-
The only required field is **id**, though you are also encouraged to specify the **version** in case a theme update deviates from your intended design. The **cacheDuration** allows you to specify in seconds how long a theme should be cached for (default 30 days). The **baseUrl** is an advanced feature, useful only if you are hosting your own [**GitHub Themes Repository**](https://github.com/tjtanjin/react-chatbotify-themes/tree/main/themes). If you are exploring such an option and need help setting up the repository, feel free to reach out on [**discord**](https://discord.gg/6R4DK4G5Zh).
18+
The only required field is **id**, though you are also encouraged to specify the **version** in case a theme update deviates from your intended design. The **cacheDuration** allows you to specify in seconds how long a theme should be cached for (default 30 days). The **baseUrl** is an advanced feature, useful only if you are hosting your own [**GitHub Themes Repository**](https://github.com/react-chatbotify/react-chatbotify-themes/tree/main/themes). If you are exploring such an option and need help setting up the repository, feel free to reach out on [**discord**](https://discord.gg/6R4DK4G5Zh).
1919

2020
:::tip Tip
2121

docs/examples/faq_bot.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ const MyChatBot = () => {
5252
link = "https://react-chatbotify.com/docs/examples/basic_form";
5353
break;
5454
case "Github":
55-
link = "https://github.com/tjtanjin/react-chatbotify/";
55+
link = "https://github.com/react-chatbotify/react-chatbotify/";
5656
break;
5757
case "Discord":
5858
link = "https://discord.gg/6R4DK4G5Zh";

docs/faq.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,19 @@ keywords: [react, chat, chatbot, chatbotify]
77

88
# Frequently Asked Questions (FAQ)
99

10-
The following contains some frequently asked questions. If you have questions that are not answered below, feel free to reach out on [**discord**](https://discord.gg/6R4DK4G5Zh) for more assistance. Alternatively, you may also open an issue on [**github**](https://github.com/tjtanjin/react-chatbotify/issues).
10+
The following contains some frequently asked questions. If you have questions that are not answered below, feel free to reach out on [**discord**](https://discord.gg/6R4DK4G5Zh) for more assistance. Alternatively, you may also open an issue on [**github**](https://github.com/react-chatbotify/react-chatbotify/issues).
1111

1212
#### Q1) Why I am seeing duplicate messages on starting the chatbot?
1313

14-
If you notice duplicate messages on start and are on React 18 and above, it could be due to the use of **StrictMode**. Refer to this [**github issue**](https://github.com/tjtanjin/react-chatbotify/issues/5) for more details.
14+
If you notice duplicate messages on start and are on React 18 and above, it could be due to the use of **StrictMode**. Refer to this [**github issue**](https://github.com/react-chatbotify/react-chatbotify/issues/5) for more details.
1515

1616
#### Q2) I would like to integrate this with my own API to answer questions in a loop, how can I create this?
1717

1818
If you're looking to use your own API, then the [**smart conversation**](/docs/examples/smart_conversation) example is likely what you're looking to use. If you are specifically looking to stream your responses, then you may also be interested in the [**real-time stream**](/docs/examples/real_time_stream) example.
1919

2020
#### Q3) I am experiencing issues viewing the chatbot on mobile, how can I fix this?
2121

22-
If you're using a version below 1.2.0 of React ChatBotify, there are known view issues on certain mobile devices and browsers. Check that you are on a later version and should the issue persist, please do not hesitate to raise an issue on [**github**](https://github.com/tjtanjin/react-chatbotify/issues).
22+
If you're using a version below 1.2.0 of React ChatBotify, there are known view issues on certain mobile devices and browsers. Check that you are on a later version and should the issue persist, please do not hesitate to raise an issue on [**github**](https://github.com/react-chatbotify/react-chatbotify/issues).
2323

2424
#### Q4) I would like to stream my responses from the bot instead of sending messages as a whole, how can I do this?
2525

docs/introduction/migration_v2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The **v2 beta release** of React ChatBotify is now available! This update includ
1515
- Prepare the chatbot for a stable release
1616
- Lay the foundation for supporting plugins
1717

18-
Future beta releases are not expected to introduce further breaking changes, as all major changes have been consolidated into this first release. That said, kindly report any bugs encountered as soon as possible on [**discord**](https://discord.gg/6R4DK4G5Zh) or via [**github**](https://github.com/tjtanjin/react-chatbotify).
18+
Future beta releases are not expected to introduce further breaking changes, as all major changes have been consolidated into this first release. That said, kindly report any bugs encountered as soon as possible on [**discord**](https://discord.gg/6R4DK4G5Zh) or via [**github**](https://github.com/react-chatbotify/react-chatbotify).
1919

2020
This migration guide is organized by the importance of the changes:
2121
- Breaking Changes (mandatory to address to prevent library breakage)

docusaurus.config.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ const config = {
134134
],
135135
},
136136
{
137-
href: 'https://github.com/tjtanjin/react-chatbotify',
137+
href: 'https://github.com/react-chatbotify/react-chatbotify',
138138
label: 'GitHub',
139139
position: 'right',
140140
},
@@ -233,7 +233,7 @@ const config = {
233233
},
234234
{
235235
label: 'GitHub Discussions',
236-
href: 'https://github.com/tjtanjin/react-chatbotify/discussions',
236+
href: 'https://github.com/react-chatbotify/react-chatbotify/discussions',
237237
},
238238
],
239239
},
@@ -246,11 +246,11 @@ const config = {
246246
},
247247
{
248248
label: 'Changelog',
249-
href: 'https://github.com/tjtanjin/react-chatbotify/blob/main/CHANGELOG.md',
249+
href: 'https://github.com/react-chatbotify/react-chatbotify/blob/main/CHANGELOG.md',
250250
},
251251
{
252252
label: 'GitHub Repo',
253-
href: 'https://github.com/tjtanjin/react-chatbotify',
253+
href: 'https://github.com/react-chatbotify/react-chatbotify',
254254
},
255255
],
256256
},

src/components/FloatingChatBot/FloatingChatBot.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ const FloatingChatBot = () => {
7878
link = "/docs/examples/basic_form";
7979
break;
8080
case "Github":
81-
link = "https://github.com/tjtanjin/react-chatbotify/";
81+
link = "https://github.com/react-chatbotify/react-chatbotify/";
8282
break;
8383
case "Discord":
8484
link = "https://discord.gg/6R4DK4G5Zh";

src/components/GitHubButtonsContainer/GitHubButtonsContainer.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,22 @@ export default function GitHubButtonsContainer(): JSX.Element {
77
<div className={styles.gitHubButtonContainer}>
88
<div className={styles.gitHubButton}>
99
<GitHubButton
10-
href="https://github.com/tjtanjin/react-chatbotify"
10+
href="https://github.com/react-chatbotify/react-chatbotify"
1111
data-color-scheme="no-preference: light; light: light_high_contrast; dark: dark_high_contrast;"
1212
data-size="large"
1313
data-show-count="true"
14-
aria-label="Star tjtanjin/react-chatbotify on GitHub"
14+
aria-label="Star react-chatbotify/react-chatbotify on GitHub"
1515
>
1616
Star
1717
</GitHubButton>
1818
</div>
1919
<div className={styles.gitHubButton}>
2020
<GitHubButton
21-
href="https://github.com/tjtanjin/react-chatbotify/fork"
21+
href="https://github.com/react-chatbotify/react-chatbotify/fork"
2222
data-color-scheme="no-preference: light; light: light_high_contrast; dark: dark_high_contrast;"
2323
data-size="large"
2424
data-show-count="true"
25-
aria-label="Fork tjtanjin/react-chatbotify on GitHub"
25+
aria-label="Fork react-chatbotify/react-chatbotify on GitHub"
2626
>
2727
Fork
2828
</GitHubButton>

0 commit comments

Comments
 (0)