Skip to content
This repository has been archived by the owner on Feb 17, 2019. It is now read-only.

Few needed changes #85

Merged
merged 1 commit into from Dec 15, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions .eslintrc.js
@@ -0,0 +1,3 @@
module.exports = {
"extends": "standard"
};
8 changes: 8 additions & 0 deletions package.json
Expand Up @@ -23,5 +23,13 @@
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"devDependencies": {
"eslint": "^5.10.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0"
}
}
2 changes: 1 addition & 1 deletion public/index.html
Expand Up @@ -19,7 +19,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>Cerebro 2018 - The Tech Fest</title>
<title>Cerebro 2019</title>
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Vidaloka" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="https://cdn.firebase.com/libs/firebaseui/2.6.1/firebaseui.css" />
Expand Down
21 changes: 17 additions & 4 deletions src/components/footer/index.js
Expand Up @@ -21,7 +21,7 @@ class Footer extends Component {
<div className="festnew-logo fest-mob">
<img src= './fest-logo.png' alt="IIIT Vadodara" className="img-responsive festpic" />
<img src="https://firebasestorage.googleapis.com/v0/b/cerebro-2018-f1052.appspot.com/o/website.png?alt=media&amp;token=5a13225c-3b8d-49a4-a8ac-7e6de9451857"
alt="IIIT Vadodara" className="img-responsive foot-int fest_int_pic" />
alt="IIIT Vadodara" className="img-responsive foot-int" />
</div>
<div className="uk-flex uk-flex-center footer">
<div className="uk-card uk-card-body fest-logo">
Expand Down Expand Up @@ -65,9 +65,22 @@ class Footer extends Component {
<div className="single-icon"><FaGithub/></div>
</a>
</div>
<div><span className="primary-color">Email:</span> cerebro.iiitv@gmail.com</div>
<div><span className="primary-color">Phone:</span> +91-8318741607 (Neelansh Sahai)</div>
<div><span className="primary-color">Address:</span> c/o Block No.9, Government Engineering College, Sector-28, Gandhinagar, Gujarat - 382028</div>
<div>
<span className="primary-color">Email: </span>
<a href="mailto:cerebro.iiitv@gmail.com" className="white-link">cerebro.iiitv@gmail.com</a>
</div>
<div>
<span className="primary-color">Phone: </span>
<a href="tel:+919370645038" className="white-link">+91-9370645038</a>
</div>
<div>
<span className="primary-color">WhatsApp: </span>
<a href="https://wa.me/917737253979" className="white-link">+91-7737253979</a>
</div>
<div>
<span className="primary-color">Address: </span>
<a href="https://goo.gl/maps/7g5D6XJpMAD2" className="white-link">c/o Block No.9, Government Engineering College, Sector-28, Gandhinagar, Gujarat-382028</a>
</div>
</div>


Expand Down
10 changes: 10 additions & 0 deletions src/components/footer/styles.css
Expand Up @@ -11,6 +11,16 @@
width: 25vw;
}

.white-link {
color: antiquewhite;
}

.white-link:hover {
border-bottom: 1px dashed #FF6E2C;
text-decoration: none;
color: white;
}

.footer {
display: flex;
justify-content: space-between;
Expand Down