Styling of footer and sidemenu

This commit is contained in:
Moris Zen
2018-07-05 17:28:49 +02:00
parent 053228bf81
commit 2c77028d61
3 changed files with 19 additions and 33 deletions

View File

@@ -1,4 +1,5 @@
import React, { Component } from 'react'
import Link from 'gatsby-link'
import './SideMenu.css'
class SideMenu extends Component {
@@ -24,7 +25,23 @@ class SideMenu extends Component {
render() {
return (
<div className="side-menu">
<h1 className="text-white text-center">Hello World</h1>
<ul className="m-0 p-0 mt-4 side-navigation">
<Link to="/services">
<li className="no-underline text-2xl uppercase p-4 text-center text-white">
What We Do
</li>
</Link>
<Link to="/about">
<li className="no-underline text-2xl uppercase p-4 text-center text-white">
Team
</li>
</Link>
<Link to="/blog">
<li className="no-underline text-2xl uppercase p-4 text-center text-white">
Blog
</li>
</Link>
</ul>
</div>
)
}