mirror of
https://github.com/DevEhChad/chadsreactproject.git
synced 2025-11-09 05:51:36 +00:00
push
This commit is contained in:
@@ -8,7 +8,7 @@ function Footer() {
|
||||
return (
|
||||
<div className="footer">
|
||||
<div className="socialMedia">
|
||||
<a href="https://www.youtube.com/channel/UC3H33ordT_-qpMjUvY95ILg" target="_blank" rel="noreferrer"><YouTubeIcon /> </a>
|
||||
<a href="https://youtube.com/@ehchadreal?si=NS8Fk9PWINFnBCF0" target="_blank" rel="noreferrer"><YouTubeIcon /> </a>
|
||||
<a href="https://twitter.com/EhChad_real" target="_blank" rel="noreferrer"><TwitterIcon /> </a>
|
||||
<a href='https://www.instagram.com/chad.doty/' target="_blank" rel="noreferrer"><InstagramIcon /> </a>
|
||||
</div>
|
||||
|
||||
13
src/components/SocialItem.js
Normal file
13
src/components/SocialItem.js
Normal file
@@ -0,0 +1,13 @@
|
||||
import React from "react";
|
||||
|
||||
function SocialItem({ image, name, link, hiddenLink }) {
|
||||
return (
|
||||
<div className="socialItem">
|
||||
<div style={{ backgroundImage: `url(${image})` }}> </div>
|
||||
<h1> {name} </h1>
|
||||
<p>{link}</p>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default SocialItem;
|
||||
Reference in New Issue
Block a user