Skip to content
Snippets Groups Projects
Commit 9a59d065 authored by Thomas Bouquet's avatar Thomas Bouquet
Browse files

cheerup page

parent 8017a5e7
Branches
No related tags found
No related merge requests found
front/public/img/icon-CU.ico

21.8 KiB

...@@ -4,9 +4,9 @@ ...@@ -4,9 +4,9 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge"> <meta http-equiv="x-ua-compatible" content="ie=edge">
<title>ourse Cheer Up!</title> <title>Course Cheer Up!</title>
<!-- MDB icon --> <!-- MDB icon -->
<link rel="icon" href="img/icon.ico" type="image/x-icon"> <link rel="icon" href="img/icon-CU.ico" type="image/x-icon">
<!-- Font Awesome --> <!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.11.2/css/all.css"> <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.11.2/css/all.css">
<!-- Google Fonts Roboto --> <!-- Google Fonts Roboto -->
......
...@@ -2,30 +2,12 @@ import React, { Component } from "react"; ...@@ -2,30 +2,12 @@ import React, { Component } from "react";
import { MDBContainer, MDBRow, MDBCol, MDBTabPane, MDBTabContent, MDBNav, MDBNavItem, MDBNavLink, MDBIcon, MDBView , MDBCardImage} from "mdbreact"; import { MDBContainer, MDBRow, MDBCol, MDBTabPane, MDBTabContent, MDBNav, MDBNavItem, MDBNavLink, MDBIcon, MDBView , MDBCardImage} from "mdbreact";
import Logo from "../logo-cheer-up.png"; import Logo from "../logo-cheer-up.png";
class CheerUp extends Component { const CheerUp = () => {
state = {
items: {
default: "1",
}
};
togglePills = (type, tab) => e => {
e.preventDefault();
if (this.state.items[type] !== tab) {
let items = { ...this.state.items };
items[type] = tab;
this.setState({
items
});
}
};
render() {
return ( return (
<> <>
<MDBContainer className="mt-4"> <MDBContainer className="mt-4">
{/*<h2><MDBIcon icon="heart" className="mr-1" /> HumaCS</h2>*/}
<br/> <br/>
<MDBRow> <MDBRow>
<MDBCol md="4"> <MDBCol md="4">
...@@ -93,6 +75,5 @@ class CheerUp extends Component { ...@@ -93,6 +75,5 @@ class CheerUp extends Component {
</> </>
); );
} }
}
export default CheerUp; export default CheerUp;
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment