Skip to content

Commit

Permalink
fix(website): use https instead of http
Browse files Browse the repository at this point in the history
  • Loading branch information
Raphaël Benitte committed Nov 29, 2018
1 parent fbc78c0 commit 07b1bad
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion website/src/SiteMap.js
Expand Up @@ -598,7 +598,7 @@ const SITEMAP = [
},
{
className: 'storybook',
path: 'http://nivo.rocks/storybook/',
path: 'https://nivo.rocks/storybook/',
label: 'Storybook',
},
{
Expand Down
2 changes: 1 addition & 1 deletion website/src/components/Header.js
Expand Up @@ -50,7 +50,7 @@ export default class Header extends Component {
})}
<a
className="HeaderNav__Item HeaderNav__Item--storybook"
href="http://nivo.rocks/storybook/"
href="https://nivo.rocks/storybook/"
target="_blank"
rel="noopener noreferrer"
>
Expand Down
4 changes: 2 additions & 2 deletions website/src/components/pages/About.js
Expand Up @@ -124,12 +124,12 @@ const About = () => (
packages
</a>
,{' '}
<a href="http://nivo.rocks" target="_blank" rel="noopener noreferrer">
<a href="https://nivo.rocks" target="_blank" rel="noopener noreferrer">
website
</a>
,{' '}
<a
href="http://nivo.rocks/storybook/"
href="https://nivo.rocks/storybook/"
target="_blank"
rel="noopener noreferrer"
>
Expand Down
2 changes: 1 addition & 1 deletion website/src/config.js
Expand Up @@ -13,5 +13,5 @@ module.exports = {

// production
nivoApiUrl: 'https://nivo-api.herokuapp.com',
storybookUrl: 'http://nivo.rocks/storybook/',
storybookUrl: 'https://nivo.rocks/storybook/',
}

0 comments on commit 07b1bad

Please sign in to comment.