fix:added gihub link

This commit is contained in:
rutik wankhade 2020-08-17 11:12:16 +05:30
parent 260632fd91
commit f1bbb461ea
3 changed files with 9 additions and 4 deletions

BIN
src/assets/github.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB

View File

@ -13,7 +13,7 @@ footer{
height:40px;
text-align: center;
background-color:#ffffff;
margin-top:20px;
margin-top:40px;
padding:10px;
font-size: 14px;
}

View File

@ -1,12 +1,17 @@
import React from 'react';
import './App.css';
import logo from '../assets/favicon.png';
import githubIcon from '../assets/github.png';
const Navbar = () => {
return (
<nav className="navbar bg-dark">
<h4><img src={logo} alt="logo" className="logo"></img>CoverView</h4></nav>);
<nav className="navbar bg-dark">
<h4><img src={logo} alt="logo" className="logo"></img>CoverView</h4>
<a href="https://github.com/rutikwankhade/CoverView">
<img src={githubIcon} className="logo" alt="giticon"></img>
</a>
</nav>);