1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-04-19 01:17:18 +02:00

feat: Add all official client SDKs to footer

This commit is contained in:
ivaosthu 2019-03-06 19:27:58 +01:00
parent fba362f66a
commit 0775ea402a
3 changed files with 15 additions and 3 deletions

View File

@ -7,8 +7,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
The latest version of this document is always available in The latest version of this document is always available in
[releases][releases-url]. [releases][releases-url].
## [next] ## [3.2.1]
- fix: Fixed bug in history view preventing toggle-view. - fix: Fixed bug in history view preventing toggle-view.
- feat: Add all official client SDKs to footer
## [3.2.0] ## [3.2.0]
- feat: Initial beta support for variants - feat: Initial beta support for variants

View File

@ -18,7 +18,9 @@ export const DrawerMenu = () => (
key={item.path} key={item.path}
to={item.path} to={item.path}
className={[styles.navigationLink, 'mdl-color-text--grey-600'].join(' ')} className={[styles.navigationLink, 'mdl-color-text--grey-600'].join(' ')}
activeClassName={[styles.navigationLink, 'mdl-color-text--black'].join(' ')} activeClassName={[styles.navigationLink, 'mdl-color-text--black', 'mdl-color--light-blue-50'].join(
' '
)}
> >
<Icon name={item.icon} className={styles.navigationIcon} /> {item.title} <Icon name={item.icon} className={styles.navigationIcon} /> {item.title}
</NavLink> </NavLink>
@ -26,10 +28,17 @@ export const DrawerMenu = () => (
</Navigation> </Navigation>
<hr /> <hr />
<Navigation className={styles.navigation}> <Navigation className={styles.navigation}>
<a
href="https://unleash.github.io"
target="_blank"
className={[styles.navigationLink, 'mdl-color-text--grey-600'].join(' ')}
>
<Icon name="library_books" className={styles.navigationIcon} /> User documentation
</a>
<a <a
href="https://github.com/Unleash" href="https://github.com/Unleash"
target="_blank" target="_blank"
className={[styles.navigationLink, 'mdl-color-text--grey-900'].join(' ')} className={[styles.navigationLink, 'mdl-color-text--grey-600'].join(' ')}
> >
<i className={['material-icons', styles.navigationIcon, styles.iconGitHub].join(' ')} />GitHub <i className={['material-icons', styles.navigationIcon, styles.iconGitHub].join(' ')} />GitHub
</a> </a>

View File

@ -20,6 +20,8 @@ export const FooterMenu = () => (
<a href="https://github.com/Unleash/unleash-client-node/">Node.js</a> <a href="https://github.com/Unleash/unleash-client-node/">Node.js</a>
<a href="https://github.com/Unleash/unleash-client-java/">Java</a> <a href="https://github.com/Unleash/unleash-client-java/">Java</a>
<a href="https://github.com/Unleash/unleash-client-go/">Go</a> <a href="https://github.com/Unleash/unleash-client-go/">Go</a>
<a href="https://github.com/unleash/unleash-client-ruby">Ruby</a>
<a href="https://github.com/Unleash/unleash-client-python">Python</a>
</FooterLinkList> </FooterLinkList>
</FooterDropDownSection> </FooterDropDownSection>
</FooterSection> </FooterSection>