diff --git a/public/stylesheets/style.css b/public/stylesheets/style.css index 5273550..854b605 100644 --- a/public/stylesheets/style.css +++ b/public/stylesheets/style.css @@ -60,6 +60,14 @@ header h1 a:hover, header h1 a:focus{ outline: 0 none; } +.faq ul { + padding: 0; +} + +.faq li { + list-style: none; +} + .share header h1, .share header h1 { text-align: left; font-size: 1.5em; diff --git a/views/faq.jsx b/views/faq.jsx new file mode 100644 index 0000000..3488156 --- /dev/null +++ b/views/faq.jsx @@ -0,0 +1,30 @@ +'use strict'; + +var React = require('react'); + +module.exports = React.createClass({ + + render: function() { + return ( +
+
+

Questions?

+ +
+
+ ); + } +}); diff --git a/views/home.jsx b/views/home.jsx index e39aaa8..45d137d 100644 --- a/views/home.jsx +++ b/views/home.jsx @@ -4,6 +4,7 @@ var React = require('react'); var request = require('superagent'); var Router = require('react-router'); var Link = require('react-router').Link; +var Faq = require('./faq.jsx'); var Foot = require('./foot.jsx'); var Recent = React.createClass({ @@ -141,6 +142,7 @@ module.exports = React.createClass({ +