diff --git a/website/src/components/HeaderNav.js b/website/src/components/HeaderNav.js index 993515f35..d02e7fa22 100644 --- a/website/src/components/HeaderNav.js +++ b/website/src/components/HeaderNav.js @@ -19,6 +19,7 @@ const HeaderNav = () => { return ( About + References Components Guides diff --git a/website/src/pages/references.js b/website/src/pages/references.js new file mode 100644 index 000000000..2fd11a19e --- /dev/null +++ b/website/src/pages/references.js @@ -0,0 +1,111 @@ +/* + * This file is part of the nivo project. + * + * (c) 2016 Raphaƫl Benitte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +import React from 'react' +import Layout from '../components/Layout' +import SEO from '../components/seo' +import PageContent from '../components/PageContent' +import { DescriptionBlock } from '../components/styled' +import GitHubIcon from 'react-icons/lib/fa/github' +import styled, { css } from 'styled-components' + +const References = () => { + return ( + + + +
+

References

+
+ +

+ + nivo + {' '} + was inspired by great projects who helped to imagine and develop all the + features. +

+

References

+ +
+
+
+ ) +} + +export default References + +const GitHubLink = styled.a` + text-decoration: none; + text-transform: uppercase; + border-bottom: none; + margin-left: 10px; + position: relative; + justify-content: space-between; + cursor: pointer; + + & svg { + font-size: 20px; + } +`