mirror of
https://github.com/Unleash/unleash.git
synced 2025-05-31 01:16:01 +02:00
Shorter nav names for tutorials while maintaining SEO titles (#6028)
<!-- Thanks for creating a PR! To make it easier for reviewers and everyone else to understand what your changes relate to, please add some relevant content to the headings below. Feel free to ignore or delete sections that you don't think are relevant. Thank you! ❤️ --> ## About the changes <!-- Describe the changes introduced. What are they and why are they being introduced? Feel free to also add screenshots or steps to view the changes if they're visual. --> Let's update our tutorial titles in the left navigation menu so it's shorter and simpler. This will _not_ change the metadata and doc titles when you click on them. Only the label in the nav. BEFORE  AFTER  <!-- Does it close an issue? Multiple? --> Closes # <!-- (For internal contributors): Does it relate to an issue on public roadmap? --> <!-- Relates to [roadmap](https://github.com/orgs/Unleash/projects/10) item: # --> ### Important files <!-- PRs can contain a lot of changes, but not all changes are equally important. Where should a reviewer start looking to get an overview of the changes? Are any files particularly important? --> ## Discussion points <!-- Anything about the PR you'd like to discuss before it gets merged? Got any questions or doubts? -->
This commit is contained in:
parent
17d826ddf4
commit
936fa44ec5
@ -3,8 +3,6 @@ title: React Feature Flag Examples
|
||||
slug: /feature-flag-tutorials/react/examples
|
||||
---
|
||||
|
||||
# React Feature Flag Examples
|
||||
|
||||
In our [React tutorial](/feature-flag-tutorials/react), we implemented a simple on/off feature flag that could be turned on and off. In the real world, many feature flag use cases have more nuance than this. This document will walk you through some common examples of using feature flags in React with some of those more advanced use cases in mind.
|
||||
|
||||
Applications evolve, and teams must manage all aspects of this evolution, including the flags used to control the application. We built multiple features into Unleash to address the complexities of releasing code and managing feature flags along the way:
|
||||
|
@ -94,26 +94,38 @@ module.exports = {
|
||||
items: [
|
||||
{
|
||||
type: 'category',
|
||||
label: 'How to Implement Feature Feature Flags in React',
|
||||
label: 'React',
|
||||
link: {
|
||||
type: 'doc',
|
||||
id: 'feature-flag-tutorials/react/implementing-feature-flags',
|
||||
},
|
||||
items: [
|
||||
'feature-flag-tutorials/react/examples',
|
||||
{
|
||||
type: 'doc',
|
||||
label: 'Examples',
|
||||
id: 'feature-flag-tutorials/react/examples',
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
type: 'category',
|
||||
label: 'How to Implement Feature Flags in Python',
|
||||
label: 'Python',
|
||||
link: {
|
||||
type: 'doc',
|
||||
id: 'feature-flag-tutorials/python/implementing-feature-flags',
|
||||
},
|
||||
items: [],
|
||||
},
|
||||
'feature-flag-tutorials/flutter/a-b-testing',
|
||||
'feature-flag-tutorials/nextjs/implementing-feature-flags',
|
||||
{
|
||||
type: 'doc',
|
||||
label: 'Flutter',
|
||||
id: 'feature-flag-tutorials/flutter/a-b-testing',
|
||||
},
|
||||
{
|
||||
type: 'doc',
|
||||
label: 'Next.js',
|
||||
id: 'feature-flag-tutorials/nextjs/implementing-feature-flags',
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user