Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontend/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>React App</title>
<title>BITSandPSes</title>
</head>
<body class = "bg-pattern">
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
34 changes: 20 additions & 14 deletions frontend/src/containers/Home/Footer/footerComponent.js
Original file line number Diff line number Diff line change
@@ -1,24 +1,30 @@
import React, { Component } from 'react';
import "./footer.css";
import './footer.css';

class Footer extends Component {
render () {
return(
<div className = "footer-row row justify-content-center">
<h2 className = "footer-title col-12">
<span className = "green">BITS</span>
<span className = "dark-grey">and</span>
<span className = "blue">PS</span>
<span className = "dark-grey">es</span>
render() {
return (
<div className="footer-row row justify-content-center">
<h2 className="footer-title col-12">
<span className="green">BITS</span>
<span className="dark-grey">and</span>
<span className="blue">PS</span>
<span className="dark-grey">es</span>
</h2>
<h6 className = "footer-sub col-12">Against the admin, together, always</h6>
<div className = "footer-links">
<a><span className = "footer-link fa fa-lg fa-github mr-3"></span></a>
<a><span className = "footer-link fa fa-lg fa-envelope"></span></a>
<h6 className="footer-sub col-12">
Against the admin, together, always
</h6>
<div className="footer-links">
<a href="https://github.com/BITSandPSes">
<span className="footer-link fa fa-lg fa-github mr-3"></span>
</a>
<a>
<span className="footer-link fa fa-lg fa-envelope"></span>
</a>
</div>
</div>
);
}
}

export default Footer;
export default Footer;