diff --git a/components/footer/index.js b/components/footer/index.js index 83620669b..73138f351 100644 --- a/components/footer/index.js +++ b/components/footer/index.js @@ -17,7 +17,7 @@ const Footer = () => (

© roadmap.sh ·   FAQ · -   Terms · +   Terms ·   Privacy

diff --git a/components/header/index.js b/components/header/index.js index c4a254d17..dc4376dd7 100644 --- a/components/header/index.js +++ b/components/header/index.js @@ -4,7 +4,7 @@ const Header = () => (
- +
diff --git a/components/header/style.scss b/components/header/style.scss index 8b98ed555..18cfb741a 100644 --- a/components/header/style.scss +++ b/components/header/style.scss @@ -8,7 +8,7 @@ } .brand img { - padding: 5px 10px; + padding: 5px 0; height: 50px; text-decoration: none; border-radius: 2px; diff --git a/pages/home/index.js b/pages/home/index.js index 1d012f4e1..087f54481 100644 --- a/pages/home/index.js +++ b/pages/home/index.js @@ -4,7 +4,7 @@ import './style.scss'; import HeroSection from '../../components/hero-section'; import Footer from '../../components/footer'; -export const Home = (props) => ( +const Home = (props) => (
diff --git a/pages/terms/index.js b/pages/terms/index.js new file mode 100644 index 000000000..7314de1b7 --- /dev/null +++ b/pages/terms/index.js @@ -0,0 +1,15 @@ +import Header from '../../components/header'; +import Footer from '../../components/footer'; +import './style.scss'; + +const Terms = () => ( +
+
+
+

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Doloribus, eveniet illum iure necessitatibus nisi perferendis quo quos reprehenderit totam! Architecto ex illum minus provident quaerat, reprehenderit soluta tempore voluptatem voluptates!

+
+
+); + +export default Terms; \ No newline at end of file diff --git a/pages/terms/style.scss b/pages/terms/style.scss new file mode 100644 index 000000000..e69de29bb