Skip to content

Commit a73a9e3

Browse files
committed
Fixed broken links
1 parent eaec1bd commit a73a9e3

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

.github/CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ providing the following information:
5252
part of Precise UI which the suggestion is related to. You can use
5353
[this tool](https://www.cockos.com/licecap/) to record GIFs on macOS and Windows, and
5454
[this tool](https://github.com/colinkeenan/silentcast) or
55-
[this tool](https://github.com/GNOME/byzanz) on Linux.
55+
[this tool](https://download.gnome.org/sources/byzanz/) on Linux.
5656

5757
## Branching Model
5858

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ You can see a list of all available components on our [website](https://precise-
5454

5555
## Contributing
5656

57-
Everyone is welcome to make any contribution on Precise UI. However, before you start, make sure you read our [Contribution](/.github/CONTRIBUTING.md) instructions.
57+
Everyone is welcome to make any contribution on Precise UI. However, before you start, make sure you read our [Contribution](.github/CONTRIBUTING.md) instructions.
5858

5959
If you feel uncertain whether you should contribute or not maybe our [code of conduct](CODE_OF_CONDUCT.md) can help you.
6060

@@ -85,6 +85,7 @@ Here is a quick example to get you started. All you need is to run:
8585
npm start
8686
```
8787

88+
<!-- markdown-link-check-disable-next-line -->
8889
As a result this will start the development server running the kitchen sink (our demo application), which runs locally and can be reached via [localhost:6060](http://localhost:6060). Note: this port can be changed. The available page contains all included components and some hopefully useful documentation for these.
8990

9091
#### Versioning

docs/introduction/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Precise UI gives you a UI component library fully based on **React**. This means
66

77
### Features
88

9-
- There are more than **75** components currently available in this library and even more are being implemented. Make sure you check the [Components](/components/accordion) section for a better overview.
9+
- There are more than **75** components currently available in this library and even more are being implemented. Make sure you check the [Components](#/Components/Accordion) section for a better overview.
1010
- It is written in **TypeScript**.
1111
- You can build fully responsive applications with it.
1212

docs/styleguide/pattern.md

+3
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,21 @@ Standard: `cubic-bezier(0.5, 0, 0.1, 1)`
1616

1717
This standard easing function is used for the majority of animations. Acceleration and deceleration appear asymmetrically to feel natural and light used, e.g., for opacity .
1818

19+
<!-- markdown-link-check-disable-next-line -->
1920
![Standard easing](ease-standard.png)
2021

2122
Ease-out: `cubic-bezier(0, 0, 0.25, 1)`
2223

2324
Mainly used for adding elements to the stage or changing on-screen states at a users' input, e.g., `Modal`, `DropdownField`, `Accordion`.
2425

26+
<!-- markdown-link-check-disable-next-line -->
2527
![Outfading ease](ease-out.png)
2628

2729
Ease-in: `cubic-bezier(0.25, 0, 1, 1)`
2830

2931
The ease-in cubic-bezier is used primarily for removing elements from the screen, e.g., toast `Notification` or mobile components.
3032

33+
<!-- markdown-link-check-disable-next-line -->
3134
![Introducing ease](ease-in.png)
3235

3336
### Timing

0 commit comments

Comments
 (0)