2017-04-17 13:29:51 -07:00
|
|
|
import React from 'react';
|
2017-05-15 21:53:50 +10:00
|
|
|
import { Link } from 'react-router';
|
2017-04-17 13:29:51 -07:00
|
|
|
import slackIcon from './images/slack-icon.png';
|
2017-05-15 16:32:47 +10:00
|
|
|
import githubIcon from './images/github-icon.png';
|
2017-04-17 13:29:51 -07:00
|
|
|
import './style.css';
|
|
|
|
|
2017-09-06 00:54:12 +02:00
|
|
|
const Footer = () => (
|
2017-04-17 13:29:51 -07:00
|
|
|
<div id="footer" className="row">
|
|
|
|
<div className="col-md-12">
|
|
|
|
<div className="row logos">
|
|
|
|
<div className="col-xs-12">
|
|
|
|
<center>
|
2017-07-08 22:57:21 +02:00
|
|
|
Maintained by the <Link to="/basics/community/">Storybook Community</Link>
|
2017-05-15 16:32:47 +10:00
|
|
|
.
|
|
|
|
</center>
|
|
|
|
<center>
|
2017-07-23 09:28:30 -07:00
|
|
|
<Link to="https://now-examples-slackin-nqnzoygycp.now.sh/" target="_blank">
|
2017-05-15 16:32:47 +10:00
|
|
|
<img src={slackIcon} alt="Storybook Slack" />
|
2017-05-15 21:53:50 +10:00
|
|
|
</Link>
|
|
|
|
<Link to="https://github.com/storybooks/storybook" target="_blank">
|
2017-05-15 16:32:47 +10:00
|
|
|
<img src={githubIcon} alt="Storybook GitHub" style={{ padding: '7px' }} />
|
2017-05-15 21:53:50 +10:00
|
|
|
</Link>
|
2017-04-17 13:29:51 -07:00
|
|
|
</center>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-09-06 00:54:12 +02:00
|
|
|
</div>
|
|
|
|
);
|
2017-04-17 13:29:51 -07:00
|
|
|
|
|
|
|
export default Footer;
|