Fix conflict

This commit is contained in:
supergrecko
2019-07-27 01:18:52 +02:00
committed by GitHub
parent 0d99c2b27a
commit 68576692f8
-25
View File
@@ -41,28 +41,3 @@ Navbar.defaultProps = {
}
export default Navbar;
=======
const Navbar = ({ siteTitle = "" }) => (
<NavbarWrapper>
<NavbarItems>
{/* <img src={icon} style={{ width: "70px" }} /> */}
<h1 style={{ margin: 0 }}>
<Link
to="/"
style={{
color: `white`,
textDecoration: `none`,
}}
>
{siteTitle}
</Link>
</h1>
</NavbarItems>
<NavbarItems>
<button>discord link here</button>
<button>reddit (maybe?) link here</button>
</NavbarItems>
</NavbarWrapper>
)
export default Navbar;