Added background style options

This commit is contained in:
2018-05-17 08:14:20 +10:00
parent 162f3c68cb
commit 34d50c0664
8 changed files with 143 additions and 15 deletions

View File

@ -22,6 +22,13 @@
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
import React from 'react';
import { PageBoundary } from './../page/Page';
const FooterLink = function(props) {
return (
<a href="#" className="c-footer__link">Link</a>
);
}
class Footer extends React.Component {
constructor(props) {
@ -31,7 +38,20 @@ class Footer extends React.Component {
render() {
return (
<footer className="c-footer">
Footer
<PageBoundary>
<div className="c-footer__inner">
<div className="c-footer__copyright">
Footer
</div>
<div className="c-footer__links">
<FooterLink title="privacy" />
<FooterLink title="privacy" />
<FooterLink title="privacy" />
<FooterLink title="privacy" />
</div>
</div>
</PageBoundary>
</footer>
);
}