Styling of footer and sidemenu
This commit is contained in:
@@ -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>
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user