mirror of
https://github.com/DevEhChad/chadsreactproject.git
synced 2025-11-09 05:51:36 +00:00
ui updates
This commit is contained in:
@@ -19,14 +19,14 @@ function Navbar() {
|
||||
<NavLink to="/"> Home </NavLink>
|
||||
<NavLink to="/socials"> Socials </NavLink>
|
||||
<NavLink to="/about"> About </NavLink>
|
||||
<NavLink to="/contact"> Contact </NavLink>
|
||||
{/* <NavLink to="/contact"> Contact </NavLink> */}
|
||||
</div>
|
||||
</div>
|
||||
<div className='rightSide'>
|
||||
<NavLink to="/"> Home </NavLink>
|
||||
<NavLink to="/socials"> Socials </NavLink>
|
||||
<NavLink to="/about"> About </NavLink>
|
||||
<NavLink to="/contact"> Contact </NavLink>
|
||||
{/* <NavLink to="/contact"> Contact </NavLink> */}
|
||||
<button onClick={toggleNavbar}>
|
||||
<ReorderIcon />
|
||||
</button>
|
||||
|
||||
@@ -2,11 +2,13 @@ import React from "react";
|
||||
|
||||
function SocialItem({ image, name, link, hiddenLink }) {
|
||||
return (
|
||||
<div className="socialItem">
|
||||
<div style={{ backgroundImage: `url(${image})` }}> </div>
|
||||
<div className="socialItem">
|
||||
<div style={{ backgroundImage: `url(${image})` }}></div>
|
||||
<h1> {name} </h1>
|
||||
<p>{link}</p>
|
||||
</div>
|
||||
|
||||
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user