Skip to content

Commit

Permalink
Design FooterComponent
Browse files Browse the repository at this point in the history
References: #10
  • Loading branch information
Atif-Mahmud committed Nov 13, 2018
1 parent 0256438 commit cc56c74
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion src/containers/Platforms.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,20 @@ function PlatformSidebar(props) {
)
}

function PlatformFooter(props) {
return(
<div class="footer">
<div class="pure-menu pure-menu-horizontal">
<ul>
<li class="pure-menu-item"><a href="#" class="pure-menu-link">Home</a></li>
<li class="pure-menu-item"><a href="#" class="pure-menu-link">Twitter</a></li>
<li class="pure-menu-item"><a href="https://github.com/SESoc" class="pure-menu-link">GitHub</a></li>
</ul>
</div>
</div>
)
}

class Platforms extends Component {
render() {
return (
Expand All @@ -103,8 +117,9 @@ class Platforms extends Component {
<PlatformsList platforms={platformData}/>
</div>
</div>
</div>

<PlatformFooter/>
</div>
</div>
);
}
Expand Down

0 comments on commit cc56c74

Please sign in to comment.