Skip to content

Commit

Permalink
[docs] Fix incorrect Github casing (mantinedev#635)
Browse files Browse the repository at this point in the history
  • Loading branch information
charpeni authored Jan 9, 2022
1 parent 3d84c22 commit 940eb05
Show file tree
Hide file tree
Showing 14 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ blank_issues_enabled: true
contact_links:
- name: Ask a question, give feedback, share your project
url: https://github.com/mantinedev/mantine/discussions
about: Connect with other community members with Github discussions
about: Connect with other community members with GitHub discussions
- name: Get help on Discord
url: https://discord.gg/eUZpPbpxb4
about: Get help from maintainers on Discord
8 changes: 4 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ First of all, thank you for showing interest in contributing to Mantine, all you
## Ways to contribute

- **Improve documentation:** fix incomplete or missing docs, bad wording, examples or explanations
- **Give feedback:** we are constantly working on making Mantine better, please share how you use Mantine, what features are missing and what is done good via [Github Discussions](https://github.com/mantinedev/mantine/discussions/new) or [Discord](https://discord.gg/eUZpPbpxb4)
- **Give feedback:** we are constantly working on making Mantine better, please share how you use Mantine, what features are missing and what is done good via [GitHub Discussions](https://github.com/mantinedev/mantine/discussions/new) or [Discord](https://discord.gg/eUZpPbpxb4)
- **Share Mantine:** share link to Mantine docs with everyone who can be interested, [share Mantine on Twitter](https://twitter.com/intent/tweet?text=Mantine%20%E2%80%93%20new%20React%20library%20with%20100%2B%20components%20and%20hooks.%20It%20has%20native%20dark%20theme%20support%20and%20focuses%20on%20accessibility%20and%20usability.%0A%0Ahttp%3A%2F%2Fmantine.dev%0A%0A%23reactjs%20)
- **Contribute to codebase:** propose new feature via [Github Issues](https://github.com/mantinedev/mantine/issues/new) or find an [existing one](https://github.com/mantinedev/mantine/labels/help%20wanted) that you are interested in and work on it
- **Contribute to codebase:** propose new feature via [GitHub Issues](https://github.com/mantinedev/mantine/issues/new) or find an [existing one](https://github.com/mantinedev/mantine/labels/help%20wanted) that you are interested in and work on it

## Contributing workflow

- Decide what you want to contribute
- If you want to implement new feature discuss it with maintainer ([Github Discussions](https://github.com/mantinedev/mantine/discussions/new) or [Discord](https://discord.gg/eUZpPbpxb4)) before jumping into code
- If you want to implement new feature discuss it with maintainer ([GitHub Discussions](https://github.com/mantinedev/mantine/discussions/new) or [Discord](https://discord.gg/eUZpPbpxb4)) before jumping into code
- After finalizing issue details work on code, please follow commit convention
- Run tests with `npm test` and submit a PR if everything is fine
- Get a code review and fix all issues noticed by maintainer
Expand Down Expand Up @@ -79,4 +79,4 @@ individual packages do not have dedicated scripts.
- `docs:sizes` – generates bundle size information for all packages
- `docs:clean` – runs `gatsby clean`
- `docs:build` – runs all above docs scripts and build production docs bundle
- `docs:deploy` – runs all above docs scripts and deploys docs to Github Pages
- `docs:deploy` – runs all above docs scripts and deploys docs to GitHub Pages
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Mantine is a MIT licensed open source react components and hooks library with fo
Mantine has a very friendly community, we are always happy to help you get started:

- [Join Discord community](https://discord.gg/eUZpPbpxb4) – it is an easiest way to get help, all questions are usually answered in about 30 minutes
- [Github Discussions](https://github.com/mantinedev/mantine/discussions) – ask anything about the project or give feedback
- [GitHub Discussions](https://github.com/mantinedev/mantine/discussions) – ask anything about the project or give feedback

## Contributors

Expand Down
2 changes: 1 addition & 1 deletion docs/src/components/Footer/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const FOOTER_LINKS_DATA: LinksGroupProps[] = [
{ type: 'link', label: 'Email newsletter', link: 'https://buttondown.email/mantine' },
{
type: 'link',
label: 'Github discussions',
label: 'GitHub discussions',
link: 'https://github.com/mantinedev/mantine/discussions',
},
],
Expand Down
4 changes: 2 additions & 2 deletions docs/src/components/GettingStarted/Guides/Guide.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ function NextGuide({ dependencies }: GuideProps) {
<Guide
dependencies={dependencies}
initScript="npx create-next-app --ts"
action="Get started with Next.js Github template"
action="Get started with Next.js GitHub template"
actionLink="https://github.com/mantinedev/mantine-next-template"
>
<Text weight={500} mt={30} mb={5} size="lg">
Expand All @@ -131,7 +131,7 @@ function GatsbyGuide({ dependencies }: GuideProps) {
<Guide
dependencies={`${dependencies} gatsby-plugin-mantine`}
initScript="npm init gatsby"
action="Get started with Gatsby.js Github template"
action="Get started with Gatsby.js GitHub template"
actionLink="https://github.com/mantinedev/mantine-gatsby-template"
withDone
>
Expand Down
2 changes: 1 addition & 1 deletion docs/src/components/HomePage/Community/Community.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export function Community() {

<Text style={{ maxWidth: 600 }} className={classes.description}>
Mantine has a very friendly community, we are always open to new ideas and feedback.
Join us on Discord or Github Discussions to get any kind of help or on Twitter to get
Join us on Discord or GitHub Discussions to get any kind of help or on Twitter to get
notified about releases.
</Text>

Expand Down
2 changes: 1 addition & 1 deletion docs/src/components/HomePage/Jumbotron/Jumbotron.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export function Jumbotron() {
leftIcon={<MarkGithubIcon size={20} />}
styles={{ leftIcon: { marginRight: 12 } }}
>
Github
GitHub
</Button>
</Group>
</Container>
Expand Down
2 changes: 1 addition & 1 deletion docs/src/components/SocialButton/SocialButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ function GithubButton({ style, ...others }: SocialButtonProps) {
}}
{...others}
>
Github Discussions
GitHub Discussions
</Button>
);
}
Expand Down
2 changes: 1 addition & 1 deletion docs/src/docs/hooks/use-form.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ Submit form with `test@mantine.dev` email to see external validation error:

### Authentication form

[Browse code on Github](https://github.com/mantinedev/mantine/blob/master/src/mantine-demos/src/AuthenticationForm/AuthenticationForm.tsx)
[Browse code on GitHub](https://github.com/mantinedev/mantine/blob/master/src/mantine-demos/src/AuthenticationForm/AuthenticationForm.tsx)

<UseFormAuthDemo />

Expand Down
2 changes: 1 addition & 1 deletion docs/src/docs/pages/basics.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ to learn about all available theming features and components props.
Mantine has a very friendly community, we are always happy to help you get started:

- [Join the Discord community](https://discord.gg/eUZpPbpxb4) – it is the easiest way to get help, all questions are usually answered in about 30 minutes.
- [Github Discussions](https://github.com/mantinedev/mantine/discussions) – ask anything about the project or give feedback.
- [GitHub Discussions](https://github.com/mantinedev/mantine/discussions) – ask anything about the project or give feedback.

## Using documentation

Expand Down
8 changes: 4 additions & 4 deletions docs/src/docs/pages/contributing.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ First of all, thank you for showing interest in contributing to Mantine, all you
## Ways to contribute

- **Improve documentation:** fix incomplete or missing docs, bad wording, examples or explanations
- **Give feedback:** we are constantly working on making Mantine better, please share how you use Mantine, what features are missing and what is done good via [Github Discussions](https://github.com/mantinedev/mantine/discussions/new) or [Discord](https://discord.gg/eUZpPbpxb4)
- **Give feedback:** we are constantly working on making Mantine better, please share how you use Mantine, what features are missing and what is done good via [GitHub Discussions](https://github.com/mantinedev/mantine/discussions/new) or [Discord](https://discord.gg/eUZpPbpxb4)
- **Share Mantine:** share link to Mantine docs with everyone who can be interested, [share Mantine on Twitter](https://twitter.com/intent/tweet?text=Mantine%20%E2%80%93%20new%20React%20library%20with%20100%2B%20components%20and%20hooks.%20It%20has%20native%20dark%20theme%20support%20and%20focuses%20on%20accessibility%20and%20usability.%0A%0Ahttp%3A%2F%2Fmantine.dev%0A%0A%23reactjs%20)
- **Contribute to codebase:** propose new feature via [Github Issues](https://github.com/mantinedev/mantine/issues/new) or find an [existing one](https://github.com/mantinedev/mantine/labels/help%20wanted) that you are interested in and work on it
- **Contribute to codebase:** propose new feature via [GitHub Issues](https://github.com/mantinedev/mantine/issues/new) or find an [existing one](https://github.com/mantinedev/mantine/labels/help%20wanted) that you are interested in and work on it
- **Give us a code review:** help us identify problems with [source code](https://github.com/mantinedev/mantine/tree/master/src) or make Mantine more performant

## Contributing workflow

- Decide what you want to contribute
- If you want to implement new feature discuss it with maintainer ([Github Discussions](https://github.com/mantinedev/mantine/discussions/new) or [Discord](https://discord.gg/eUZpPbpxb4)) before jumping into code
- If you want to implement new feature discuss it with maintainer ([GitHub Discussions](https://github.com/mantinedev/mantine/discussions/new) or [Discord](https://discord.gg/eUZpPbpxb4)) before jumping into code
- After finalizing issue details work on code, please follow commit convention
- Run tests with `npm test` and submit a PR if everything is fine
- Get a code review and fix all issues noticed by maintainer
Expand Down Expand Up @@ -84,4 +84,4 @@ individual packages do not have dedicated scripts.
- `docs:sizes` – generates bundle size information for all packages
- `docs:clean` – runs `gatsby clean`
- `docs:build` – runs all above docs scripts and build production docs bundle
- `docs:deploy` – runs all above docs scripts and deploys docs to Github Pages
- `docs:deploy` – runs all above docs scripts and deploys docs to GitHub Pages
4 changes: 2 additions & 2 deletions docs/src/pages/404.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export default function PageNotFound() {
</Li>
</Ul>
<P>
And since you are here, what about following Mantine on Twitter and a star on Github 😉?
And since you are here, what about following Mantine on Twitter and a star on GitHub 😉?
</P>

<Group>
Expand All @@ -55,7 +55,7 @@ export default function PageNotFound() {
color="gray"
variant="outline"
>
Star mantine on Github
Star mantine on GitHub
</Button>
<Button
component="a"
Expand Down
2 changes: 1 addition & 1 deletion gallery/src/gallery/HeroTitle/HeroTitle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export function HeroTitle() {
leftIcon={<GitHubLogoIcon style={{ width: 20, height: 20 }} />}
styles={{ leftIcon: { marginRight: 12 } }}
>
Github
GitHub
</Button>
</Group>
</Container>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const configurator: MantineDemo = {
{
name: 'children',
type: 'string',
initialValue: 'You are now obligated to give a star to Mantine project on Github',
initialValue: 'You are now obligated to give a star to Mantine project on GitHub',
},
],
};

0 comments on commit 940eb05

Please sign in to comment.