diff --git a/packages/docs-reanimated/blog/bottom-sheet.md b/packages/docs-reanimated/blog/bottom-sheet.md index aebc48c58f56..9788be666fcc 100644 --- a/packages/docs-reanimated/blog/bottom-sheet.md +++ b/packages/docs-reanimated/blog/bottom-sheet.md @@ -29,6 +29,6 @@ sources={{ -The `useAnimatedStyle` hook helps in creating [animated styles](https://docs.swmansion.com/react-native-reanimated/docs/core/useAnimatedStyle/) based on shared values. These styles are then applied to **BottomSheet** to make it visually dynamic by adding backdrop and translating bottom sheet to the top. +The `useAnimatedStyle` hook helps in creating [animated styles](/docs/core/useAnimatedStyle/) based on shared values. These styles are then applied to **BottomSheet** to make it visually dynamic by adding backdrop and translating bottom sheet to the top. diff --git a/packages/docs-reanimated/blog/section-list.md b/packages/docs-reanimated/blog/section-list.md index 2b7b10681e64..a1c861f1e62d 100644 --- a/packages/docs-reanimated/blog/section-list.md +++ b/packages/docs-reanimated/blog/section-list.md @@ -43,11 +43,11 @@ The `onScroll` in **SectionCards** calculates the offset as the user scrolls thr -We use the `useSharedValue` hook to create mutable shared values across different components. For instance, `selectedItem` and `visibleIndex` are [shared values](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#shared-value) used to manage the currently selected section and its visibility index. +We use the `useSharedValue` hook to create mutable shared values across different components. For instance, `selectedItem` and `visibleIndex` are [shared values](/docs/fundamentals/glossary#shared-value) used to manage the currently selected section and its visibility index. -Additionally, we use `useAnimatedStyle` hook to define [animated styles](https://docs.swmansion.com/react-native-reanimated/docs/core/useAnimatedStyle/) based on the shared values. Then, we apply these animated styles to components to create dynamic visual effects, such as changing font weights and adding bottom borders. +Additionally, we use `useAnimatedStyle` hook to define [animated styles](/docs/core/useAnimatedStyle/) based on the shared values. Then, we apply these animated styles to components to create dynamic visual effects, such as changing font weights and adding bottom borders. diff --git a/packages/docs-reanimated/blog/slider.md b/packages/docs-reanimated/blog/slider.md index b7fbc45238a8..f188d5a3e813 100644 --- a/packages/docs-reanimated/blog/slider.md +++ b/packages/docs-reanimated/blog/slider.md @@ -39,7 +39,7 @@ Leveraging animated props allows us to run them on the UI thread instead of the Additionally, we opted for **TextInput** instead of **Text** because **TextInput** has a `value` property that can be animated, whereas **Text** only has children. -This approach also enabled us to animate **TextInput** using [shared values](fundamentals/glossary#shared-value). +This approach also enabled us to animate **TextInput** using [shared values](/docs/fundamentals/glossary#shared-value). Slider